Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Status: In Progress

Owner: Craig Appl

This scoping document defines the processes and URL endpoints for interacting with the OpenMRS API in order to Create Read and Update locations and teams in OpenMRS.

Workflows

We need to deliver the following workflows that require interactions with the OpenMRS API

  1. Create OpenMRS locations based on the locations in Reveal
  2. Create Teams in OpenMRS
  3. Update OpenMRS location team_id attribute when a team is assigned in the Reveal web UI planning module

OpenMRS API Basics

BaseUrl: https://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1

Credentials: (This needs to be a user with superuser permissions at this time)

Authentication: OpenMRS uses basic auth for to start a session.

  1. Start a session
    1. GET BaseUrl/session
      1. The response will include a response header labeled Set-Cookie. Add the contents of this to subsequent responses
      2. In Nifi, we add a property to the InvokeHttp processor named Cookie with value ${Set-Cookie}
  2. End a session
    1. DELETE BaseUrl/session (with the cookie)

API documentation is available in the OpenMRS Legacy Admin Menu at https://openmrs.reveal-stage.smartregister.org/openmrs/module/webservices/rest/apiDocs.htm (Note that it takes some time to load because it builds it in real time

The API supports different representations that are documented here. You can get a full representation and custom representation.

Location Interactions

We need to Create, Read and Update locations in OpenMRS based on the location hierarchy that was loaded in to Reveal.

These interactions include the following properties:

Property in UITypeDescriptionUUIDSample POST code
Parent Location
This is the parent uuid of the location in OpenMRS.N/A
"parentLocation": {
    "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27"
}
mspray_location_idattribute

3302b1cd-8e89-4d44-89ae-8a285f2c5583

{
  "attributeType": {
      "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc"
  },
  "value": "055059f5-bbc2-489b-a573-56558556b5e0",
  "voided": false,
  "resourceVersion": "1.9"
}
team_idattribute

802e4109-56d0-407f-adcb-ea3a082840fc

{
  "attributeType": {
	"uuid": "802e4109-56d0-407f-adcb-ea3a082840fc"
  },
  "value": "055059f5-bbc2-489b-a573-56558556b5e0",
  "voided": false,
  "resourceVersion": "1.9"
}
CountrytagThis is a location tag that shows this is the country level. (Thailand: ADM 0)bdae8d24-df16-47c1-b589-ff58038ba7ca
{
  "uuid": "bdae8d24-df16-47c1-b589-ff58038ba7ca"
}
ProvincetagThis is a location tag that shows this is the provincial level. (Thailand: ADM 1)563fba34-7bfa-40f7-a0e0-9dca3c24bfec
{
  "uuid": "563fba34-7bfa-40f7-a0e0-9dca3c24bfec"
}
DistricttagThis is a location tag that shows this is a district level. (Thailand: ADM 2)19592b42-5181-49e4-85ab-2c502e7193c1
{
  "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1"
}
Sub-districttag(Used in Botswana Only) This is a location tag that shows this is the sub-district level.7de14bdc-9e2a-4183-a6c9-3b506daac8e4
{
  "uuid": "7de14bdc-9e2a-4183-a6c9-3b506daac8e4"
}
VillagetagThis is a location tag that shows this is the village level (Thailand: ADM 3)55a54fc4-a6f2-4e14-9132-815687952804
{
  "uuid": "55a54fc4-a6f2-4e14-9132-815687952804"
}
Cantontag(Used in Thailand Only) This is a location tag that shows this is the canton level. (Thailand: ADM 4)de2ec1a0-1609-4071-af32-a91752956e95
{
  "uuid": "de2ec1a0-1609-4071-af32-a91752956e95"
}
Operational AreatagThis is a location tag that shows this is the operational area level. This is the lowest level in any hierarchy. (Thailand: ADM 5)22abf4d2-c138-463c-8c58-568343dd2b5f
{
  "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f"
}

GET BaseUrl/location

This returns a complete list of locations with just the minimal information

//GET BaseUrl/location?q=TwoTwoTwo_01

{
  "results": [
    {
      "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5",
      "display": "TwoTwoTwo_01",
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5"
        }
      ]
    }
  ]
}


GET BaseUrl/location/{UUID}

This returns the full location

//GET BaseUrl/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5

{
  "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5",
  "display": "TwoTwoTwo_01",
  "name": "TwoTwoTwo_01",
  "description": null,
  "address1": null,
  "address2": null,
  "cityVillage": null,
  "stateProvince": null,
  "country": null,
  "postalCode": null,
  "latitude": null,
  "longitude": null,
  "countyDistrict": null,
  "address3": null,
  "address4": null,
  "address5": null,
  "address6": null,
  "tags": [
    {
      "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
      "display": "Operational Area",
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
        }
      ]
    }
  ],
  "parentLocation": {
    "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
    "display": "Two Two Two Release Village",
    "links": [
      {
        "rel": "self",
        "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
      }
    ]
  },
  "childLocations": [],
  "retired": false,
  "attributes": [
    {
      "uuid": "5ecc27f8-5529-4958-8e3d-c08f4608af67",
      "display": "mspray_location_id: 14e2a7a7-fd08-4bed-8cf8-1eeaed303eda",
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/5ecc27f8-5529-4958-8e3d-c08f4608af67"
        }
      ]
    },
    {
      "uuid": "faba93d1-691e-45ce-8612-4a22e2a251dd",
      "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/faba93d1-691e-45ce-8612-4a22e2a251dd"
        }
      ]
    }
  ],
  "address7": null,
  "address8": null,
  "address9": null,
  "address10": null,
  "address11": null,
  "address12": null,
  "address13": null,
  "address14": null,
  "address15": null,
  "links": [
    {
      "rel": "self",
      "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5"
    },
    {
      "rel": "full",
      "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5?v=full"
    }
  ],
  "resourceVersion": "2.0"
}

POST BaseUrl/location Template

This is a sample Nifi template for generating the location that needs to be posted. Note that you can only generate a location at a time and you can't assign the UUID through the API, so you have to get a response for each location, query again and then update the parents.

Variables:

  • revealName - The name of the location in the properties.name attribute of the geojson
  • geographicLevelOpenmrsUuidMapper - We need to build a mapper to tag this location to the correct geographicLevel (ADM N) as defined above
  • openmrsParentUuid - We need to map the Reveal location id to the OpenMRS UUID so that we can correctly identify parents and put it in this field
  • revealLocationId - This is the location id of this location in Reveal
  • openmrsTeamId - This is the team ID that should be assigned to this location. We use this for operational areas when there is team assignment.
{
  "name": "${revealName}",
  "description": null,
  "address1": null,
  "address2": null,
  "cityVillage": null,
  "stateProvince": null,
  "country": null,
  "postalCode": null,
  "latitude": null,
  "longitude": null,
  "countyDistrict": null,
  "address3": null,
  "address4": null,
  "address5": null,
  "address6": null,
  "tags": [
    {
      "uuid": "${geographicLevelOpenmrsUuidMapper}"
    }
  ],
  "parentLocation": {
    "uuid": "${openmrsParentUuid}"
  },
  "childLocations": [],
  "retired": false,
  "attributes": [
    {
      "attributeType": {
        "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583"
      },
      "value": "${revealLocationId}",
      "voided": false,
      "resourceVersion": "1.9"
    },
{
  "attributeType": {
	"uuid": "802e4109-56d0-407f-adcb-ea3a082840fc"
  },
  "value": "${openmrsTeamId}",
  "voided": false,
  "resourceVersion": "1.9"
}
  ],
  "address7": null,
  "address8": null,
  "address9": null,
  "address10": null,
  "address11": null,
  "address12": null,
  "address13": null,
  "address14": null,
  "address15": null,
  "resourceVersion": "2.0"
}

POST BaseUrl/location/{UUID}

This endpoint allows you to update an existing location in the system and should be used for things like reassignment of teams. You only have to POST the updated fields that you wish to change

Team Management

OpenMRS has a team management endpoint where we Create and Read teams. We don't need to Update teams at this time.

GET BaseUrl/team/team?v=full

This endpoint returns a list of all teams in the system.

// https://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team?v=full
{
  "results": [
    {
      "display": "Miti",
      "uuid": "7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
      "teamName": "Miti",
      "teamIdentifier": "MTL",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
        "display": "ea Miti Rural Health Centre",
        "name": "ea Miti Rural Health Centre",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Eastern",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Chadiza",
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37",
          "display": "ea Chadiza District",
          "name": "ea Chadiza District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Eastern",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Chadiza",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f2072767-52e1-4169-80ef-a631c4a7bf75",
            "display": "ea Eastern Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2072767-52e1-4169-80ef-a631c4a7bf75"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
              "display": "ea Bwanunkha Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
                }
              ]
            },
            {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "d1dd2767-4640-4219-b907-88d86315e9ac",
              "display": "mspray_location_id: 2939",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37/attribute/d1dd2767-4640-4219-b907-88d86315e9ac"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "f6caabb8-8461-4f04-a0d1-dc57208009eb",
            "display": "MKB_5",
            "name": "MKB_5",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "e66369b2-3c79-47fd-a6fa-b18899b64e99",
                "display": "mspray_location_id: 3366",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/e66369b2-3c79-47fd-a6fa-b18899b64e99"
                  }
                ]
              },
              {
                "uuid": "c7fb8e3a-f958-48a2-809e-1011263da76d",
                "display": "team_id_test: test_attributes_3",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/c7fb8e3a-f958-48a2-809e-1011263da76d"
                  }
                ]
              },
              {
                "uuid": "22c4f5fe-3380-42ba-a4ac-fdf83ff0857b",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/22c4f5fe-3380-42ba-a4ac-fdf83ff0857b"
                  }
                ]
              },
              {
                "uuid": "fd2223d5-5f62-4830-b99c-be0adca3b1ec",
                "display": "team_id_test: 4456",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/fd2223d5-5f62-4830-b99c-be0adca3b1ec"
                  }
                ]
              },
              {
                "uuid": "fbd35eee-d49e-4c54-a3b2-3369a04614f1",
                "display": "team_id_test: test_attributes",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/fbd35eee-d49e-4c54-a3b2-3369a04614f1"
                  }
                ]
              },
              {
                "uuid": "bd4f4a16-d260-4e88-a7f2-acda63c65b6e",
                "display": "team_id: test_team_id",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/bd4f4a16-d260-4e88-a7f2-acda63c65b6e"
                  }
                ]
              },
              {
                "uuid": "6551d896-9fcd-4940-b91f-cc161856d526",
                "display": "team_id: test_team_id_also",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb/attribute/6551d896-9fcd-4940-b91f-cc161856d526"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "b4de8b63-d430-47eb-831b-8c291a828e04",
            "display": "MTI_13",
            "name": "MTI_13",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f1b80dc9-7fcf-4392-a03c-2293e9122e48",
                "display": "mspray_location_id: 3537",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/f1b80dc9-7fcf-4392-a03c-2293e9122e48"
                  }
                ]
              },
              {
                "uuid": "7d4379f0-d85b-4b44-9875-2d3717042d99",
                "display": "team_id_test: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/7d4379f0-d85b-4b44-9875-2d3717042d99"
                  }
                ]
              },
              {
                "uuid": "5ecd8ee1-427c-4e23-b4e3-b7c69da5d5e7",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/5ecd8ee1-427c-4e23-b4e3-b7c69da5d5e7"
                  }
                ]
              },
              {
                "uuid": "6e632781-be95-41ce-be70-56becf53ea3c",
                "display": "team_id_test: test_attributes",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/6e632781-be95-41ce-be70-56becf53ea3c"
                  }
                ]
              },
              {
                "uuid": "aae80614-b1d8-40ff-bac0-d7cc7014106c",
                "display": "team_id_test: 07681be4-fd12-428f-a4f2-5bf4e0a252d8",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/aae80614-b1d8-40ff-bac0-d7cc7014106c"
                  }
                ]
              },
              {
                "uuid": "59bd571f-5264-4270-a723-702416111d77",
                "display": "team_id_test: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4\"",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04/attribute/59bd571f-5264-4270-a723-702416111d77"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "91221652-f3b3-47fe-9997-543bac1f0a74",
            "display": "MTI_18",
            "name": "MTI_18",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "51575bf7-409e-4534-990b-0b500732c57a",
                "display": "mspray_location_id: 3421",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74/attribute/51575bf7-409e-4534-990b-0b500732c57a"
                  }
                ]
              },
              {
                "uuid": "7a31db1d-65b2-4520-8c8c-6d43be0861a1",
                "display": "team_id_test: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74/attribute/7a31db1d-65b2-4520-8c8c-6d43be0861a1"
                  }
                ]
              },
              {
                "uuid": "46e4e748-0f12-4e30-b7e8-d5febc487744",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74/attribute/46e4e748-0f12-4e30-b7e8-d5febc487744"
                  }
                ]
              },
              {
                "uuid": "9059c5e4-53c2-40b2-8833-2f21011d403b",
                "display": "team_id_test: test_attributes",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74/attribute/9059c5e4-53c2-40b2-8833-2f21011d403b"
                  }
                ]
              },
              {
                "uuid": "2e30ccd2-54e9-4106-8fc0-23a6db96dba0",
                "display": "team_id_test: 07681be4-fd12-428f-a4f2-5bf4e0a252d8",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74/attribute/2e30ccd2-54e9-4106-8fc0-23a6db96dba0"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "7322f6b4-5c23-4d08-85b2-8cad40a16374",
            "display": "MTI_24",
            "name": "MTI_24",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "097ae171-50f8-4181-b9f8-20a0cab9e772",
                "display": "mspray_location_id: 3536",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374/attribute/097ae171-50f8-4181-b9f8-20a0cab9e772"
                  }
                ]
              },
              {
                "uuid": "e3433632-6ad4-4ffc-8832-46b2f7ae1f69",
                "display": "team_id_test: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374/attribute/e3433632-6ad4-4ffc-8832-46b2f7ae1f69"
                  }
                ]
              },
              {
                "uuid": "ad67d886-779e-4506-bc1a-7e33aaff8567",
                "display": "team_id_test: 07681be4-fd12-428f-a4f2-5bf4e0a252d8",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374/attribute/ad67d886-779e-4506-bc1a-7e33aaff8567"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "f3dcba9e-4728-45d7-a549-07be9e9d4c73",
            "display": "MTI_47",
            "name": "MTI_47",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "15c8601a-1b7c-454d-a832-1bcf37ef22a5",
                "display": "mspray_location_id: 3367",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f3dcba9e-4728-45d7-a549-07be9e9d4c73/attribute/15c8601a-1b7c-454d-a832-1bcf37ef22a5"
                  }
                ]
              },
              {
                "uuid": "23220e97-d938-4d51-a3b6-d0bc5e0b17da",
                "display": "team_id_test: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f3dcba9e-4728-45d7-a549-07be9e9d4c73/attribute/23220e97-d938-4d51-a3b6-d0bc5e0b17da"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f3dcba9e-4728-45d7-a549-07be9e9d4c73"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f3dcba9e-4728-45d7-a549-07be9e9d4c73?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "37d307fb-895f-4b93-838f-0456e0fdaf05",
            "display": "MTI_48",
            "name": "MTI_48",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "950c8f8c-613c-4346-8ccd-0ab562d00c78",
                "display": "mspray_location_id: 3369",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/37d307fb-895f-4b93-838f-0456e0fdaf05/attribute/950c8f8c-613c-4346-8ccd-0ab562d00c78"
                  }
                ]
              },
              {
                "uuid": "01fb4e3b-39d5-4509-af08-38acb025a953",
                "display": "team_id_test: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/37d307fb-895f-4b93-838f-0456e0fdaf05/attribute/01fb4e3b-39d5-4509-af08-38acb025a953"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/37d307fb-895f-4b93-838f-0456e0fdaf05"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/37d307fb-895f-4b93-838f-0456e0fdaf05?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "fc93e7e1-3f48-49f6-8c2d-c995a748edca",
            "display": "MTI_49",
            "name": "MTI_49",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "eb98db4c-4300-4afb-a51c-5c0cec2fc4b2",
                "display": "mspray_location_id: 3365",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc93e7e1-3f48-49f6-8c2d-c995a748edca/attribute/eb98db4c-4300-4afb-a51c-5c0cec2fc4b2"
                  }
                ]
              },
              {
                "uuid": "9a266ae0-e1cd-418c-a399-2a7e4854a1f9",
                "display": "team_id: e5470c0b-2349-45ec-bdd1-e0ed5a120a87",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc93e7e1-3f48-49f6-8c2d-c995a748edca/attribute/9a266ae0-e1cd-418c-a399-2a7e4854a1f9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc93e7e1-3f48-49f6-8c2d-c995a748edca"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc93e7e1-3f48-49f6-8c2d-c995a748edca?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "be786c91-7883-42fa-8d26-d8fb9d5f7366",
            "display": "MTI_5",
            "name": "MTI_5",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "8288d77e-4789-48f0-be6e-804aaa591acd",
                "display": "mspray_location_id: 3512",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be786c91-7883-42fa-8d26-d8fb9d5f7366/attribute/8288d77e-4789-48f0-be6e-804aaa591acd"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be786c91-7883-42fa-8d26-d8fb9d5f7366"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be786c91-7883-42fa-8d26-d8fb9d5f7366?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "a1bf2902-4475-45ee-a348-d17fe5f1909d",
            "display": "MTI_52",
            "name": "MTI_52",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f5ea3e40-0ee0-4594-884b-6ee1fca90f8b",
                "display": "mspray_location_id: 3463",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a1bf2902-4475-45ee-a348-d17fe5f1909d/attribute/f5ea3e40-0ee0-4594-884b-6ee1fca90f8b"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a1bf2902-4475-45ee-a348-d17fe5f1909d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a1bf2902-4475-45ee-a348-d17fe5f1909d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "434780bd-924d-4bc3-8913-2d061e71a041",
            "display": "MTI_53",
            "name": "MTI_53",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "60f1a414-90a2-4b84-87d8-4fc0a8505ff5",
                "display": "mspray_location_id: 3420",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/434780bd-924d-4bc3-8913-2d061e71a041/attribute/60f1a414-90a2-4b84-87d8-4fc0a8505ff5"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/434780bd-924d-4bc3-8913-2d061e71a041"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/434780bd-924d-4bc3-8913-2d061e71a041?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "1fce4065-dae5-473f-9ed3-05e3b1e91738",
            "display": "MTI_55",
            "name": "MTI_55",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "934e0c92-4fc0-480c-b654-3df1ef3def43",
                "display": "mspray_location_id: 3455",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1fce4065-dae5-473f-9ed3-05e3b1e91738/attribute/934e0c92-4fc0-480c-b654-3df1ef3def43"
                  }
                ]
              },
              {
                "uuid": "236be4c4-f702-4e83-a63f-9fa5e8c92909",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1fce4065-dae5-473f-9ed3-05e3b1e91738/attribute/236be4c4-f702-4e83-a63f-9fa5e8c92909"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1fce4065-dae5-473f-9ed3-05e3b1e91738"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1fce4065-dae5-473f-9ed3-05e3b1e91738?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "418589ef-0de1-416e-b72a-b0c599fb3a0d",
            "display": "MTI_57",
            "name": "MTI_57",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "71eeacd5-e00b-4619-8da5-409ea93cc44d",
                "display": "mspray_location_id: 3461",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/418589ef-0de1-416e-b72a-b0c599fb3a0d/attribute/71eeacd5-e00b-4619-8da5-409ea93cc44d"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/418589ef-0de1-416e-b72a-b0c599fb3a0d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/418589ef-0de1-416e-b72a-b0c599fb3a0d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "c6c2f6ad-3692-4212-b87f-b73d5285b47c",
            "display": "MTI_58",
            "name": "MTI_58",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "984621ba-47be-4e81-8215-9a2edae0c103",
                "display": "mspray_location_id: 3479",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c6c2f6ad-3692-4212-b87f-b73d5285b47c/attribute/984621ba-47be-4e81-8215-9a2edae0c103"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c6c2f6ad-3692-4212-b87f-b73d5285b47c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c6c2f6ad-3692-4212-b87f-b73d5285b47c?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f",
            "display": "MTI_59",
            "name": "MTI_59",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "7c49d7c1-f274-41ca-a262-d43821642379",
                "display": "mspray_location_id: 3448",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f/attribute/7c49d7c1-f274-41ca-a262-d43821642379"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "5d9fc8bf-dbfd-440a-89c5-edbdfd93b374",
            "display": "MTI_60",
            "name": "MTI_60",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "27c1b3a8-890c-47c5-93b7-a6bd0913bd62",
                "display": "mspray_location_id: 3464",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5d9fc8bf-dbfd-440a-89c5-edbdfd93b374/attribute/27c1b3a8-890c-47c5-93b7-a6bd0913bd62"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5d9fc8bf-dbfd-440a-89c5-edbdfd93b374"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5d9fc8bf-dbfd-440a-89c5-edbdfd93b374?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "2cea88fe-4c11-4ee0-a02a-08cb04420da5",
            "display": "MTI_63",
            "name": "MTI_63",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "52d55430-5f15-4a7c-9107-c085452374c2",
                "display": "mspray_location_id: 3443",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2cea88fe-4c11-4ee0-a02a-08cb04420da5/attribute/52d55430-5f15-4a7c-9107-c085452374c2"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2cea88fe-4c11-4ee0-a02a-08cb04420da5"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2cea88fe-4c11-4ee0-a02a-08cb04420da5?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "178b0c0a-d9af-4796-b4e0-cdd4533328d7",
            "display": "MTI_64",
            "name": "MTI_64",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "14324c0e-15b6-44f6-8c5e-d2b6c7ac69fc",
                "display": "mspray_location_id: 3441",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/178b0c0a-d9af-4796-b4e0-cdd4533328d7/attribute/14324c0e-15b6-44f6-8c5e-d2b6c7ac69fc"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/178b0c0a-d9af-4796-b4e0-cdd4533328d7"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/178b0c0a-d9af-4796-b4e0-cdd4533328d7?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "ce26ec21-ea27-48f3-aa7b-e02c2b536af4",
            "display": "MTI_65",
            "name": "MTI_65",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "b744fe08-4d46-405b-856f-bbaa9c7a45a6",
                "display": "mspray_location_id: 3436",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce26ec21-ea27-48f3-aa7b-e02c2b536af4/attribute/b744fe08-4d46-405b-856f-bbaa9c7a45a6"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce26ec21-ea27-48f3-aa7b-e02c2b536af4"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce26ec21-ea27-48f3-aa7b-e02c2b536af4?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "79f156de-d543-48a4-bb3c-639fe151f567",
            "display": "MTI_66",
            "name": "MTI_66",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "eec92ab9-0425-40d3-8a72-2563a1c79475",
                "display": "mspray_location_id: 3482",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/79f156de-d543-48a4-bb3c-639fe151f567/attribute/eec92ab9-0425-40d3-8a72-2563a1c79475"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/79f156de-d543-48a4-bb3c-639fe151f567"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/79f156de-d543-48a4-bb3c-639fe151f567?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "8dca4838-12ad-4806-a3b0-4d4b443d3c99",
            "display": "MTI_68",
            "name": "MTI_68",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "436510ee-e0a7-4196-aea9-75fb66da19e7",
                "display": "mspray_location_id: 3466",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/8dca4838-12ad-4806-a3b0-4d4b443d3c99/attribute/436510ee-e0a7-4196-aea9-75fb66da19e7"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/8dca4838-12ad-4806-a3b0-4d4b443d3c99"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/8dca4838-12ad-4806-a3b0-4d4b443d3c99?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "621b8f4d-fb42-44eb-818f-5f1db74a4f5b",
            "display": "MTI_69",
            "name": "MTI_69",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "950145bc-24be-41ec-85cf-4eda0b19a631",
                "display": "mspray_location_id: 3439",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/621b8f4d-fb42-44eb-818f-5f1db74a4f5b/attribute/950145bc-24be-41ec-85cf-4eda0b19a631"
                  }
                ]
              },
              {
                "uuid": "46b6831e-1213-41f9-a2d2-d162dfbd570e",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/621b8f4d-fb42-44eb-818f-5f1db74a4f5b/attribute/46b6831e-1213-41f9-a2d2-d162dfbd570e"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/621b8f4d-fb42-44eb-818f-5f1db74a4f5b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/621b8f4d-fb42-44eb-818f-5f1db74a4f5b?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "063d7df2-b9f4-4e49-8f6e-b78b63933f5d",
            "display": "MTI_70",
            "name": "MTI_70",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "19f9cd55-634c-46da-bb55-165abbc91cd1",
                "display": "mspray_location_id: 3452",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/063d7df2-b9f4-4e49-8f6e-b78b63933f5d/attribute/19f9cd55-634c-46da-bb55-165abbc91cd1"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/063d7df2-b9f4-4e49-8f6e-b78b63933f5d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/063d7df2-b9f4-4e49-8f6e-b78b63933f5d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "df09d9a0-5314-49da-8633-6c15e7da7bff",
            "display": "MTI_71",
            "name": "MTI_71",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f2b19838-f47b-45a7-9819-38b12cfa288c",
                "display": "mspray_location_id: 3481",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/df09d9a0-5314-49da-8633-6c15e7da7bff/attribute/f2b19838-f47b-45a7-9819-38b12cfa288c"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/df09d9a0-5314-49da-8633-6c15e7da7bff"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/df09d9a0-5314-49da-8633-6c15e7da7bff?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "fe16e30a-f2b8-494a-892c-a01940f496d2",
            "display": "MTI_73",
            "name": "MTI_73",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "e81212e4-075e-4032-8cff-8bea9c925e64",
                "display": "mspray_location_id: 3457",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fe16e30a-f2b8-494a-892c-a01940f496d2/attribute/e81212e4-075e-4032-8cff-8bea9c925e64"
                  }
                ]
              },
              {
                "uuid": "916d39f3-f270-49b1-8803-b431d42083b3",
                "display": "team_id: e5470c0b-2349-45ec-bdd1-e0ed5a120a87",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fe16e30a-f2b8-494a-892c-a01940f496d2/attribute/916d39f3-f270-49b1-8803-b431d42083b3"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fe16e30a-f2b8-494a-892c-a01940f496d2"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fe16e30a-f2b8-494a-892c-a01940f496d2?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "9c98917e-1fb4-46b1-88ab-093a838e449b",
            "display": "MTI_74",
            "name": "MTI_74",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "dcdcec62-1a6a-4283-95df-1ed71621b8dd",
                "display": "mspray_location_id: 3473",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9c98917e-1fb4-46b1-88ab-093a838e449b/attribute/dcdcec62-1a6a-4283-95df-1ed71621b8dd"
                  }
                ]
              },
              {
                "uuid": "795f7282-c3cc-42e0-ad76-24e7d7649892",
                "display": "team_id_test: test_attributes",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9c98917e-1fb4-46b1-88ab-093a838e449b/attribute/795f7282-c3cc-42e0-ad76-24e7d7649892"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9c98917e-1fb4-46b1-88ab-093a838e449b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9c98917e-1fb4-46b1-88ab-093a838e449b?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "d8a81789-24b9-42f4-a0ec-50e363f28595",
            "display": "MTI_75",
            "name": "MTI_75",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "0f34a0d0-57f0-4f7b-b584-89303c18516b",
                "display": "mspray_location_id: 3515",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d8a81789-24b9-42f4-a0ec-50e363f28595/attribute/0f34a0d0-57f0-4f7b-b584-89303c18516b"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d8a81789-24b9-42f4-a0ec-50e363f28595"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d8a81789-24b9-42f4-a0ec-50e363f28595?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "cd5d55f6-dad0-4d5c-b49e-c3885118866b",
            "display": "MTI_79",
            "name": "MTI_79",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "bee814a8-c512-486b-ae7a-2a28e6343a85",
                "display": "mspray_location_id: 3514",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cd5d55f6-dad0-4d5c-b49e-c3885118866b/attribute/bee814a8-c512-486b-ae7a-2a28e6343a85"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cd5d55f6-dad0-4d5c-b49e-c3885118866b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cd5d55f6-dad0-4d5c-b49e-c3885118866b?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "efed725f-d6ff-4f30-b78e-c3fa6a9aec54",
            "display": "MTI_80",
            "name": "MTI_80",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "cd4d84fa-35e0-47b0-b4eb-b41d8ef49a54",
                "display": "mspray_location_id: 3513",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/efed725f-d6ff-4f30-b78e-c3fa6a9aec54/attribute/cd4d84fa-35e0-47b0-b4eb-b41d8ef49a54"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/efed725f-d6ff-4f30-b78e-c3fa6a9aec54"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/efed725f-d6ff-4f30-b78e-c3fa6a9aec54?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "27ebabc7-c94e-4815-8754-e69248ca4c7a",
            "display": "MTI_83",
            "name": "MTI_83",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "865b830d-47a2-4ac2-8164-860d1d8fca37",
                "display": "mspray_location_id: 3459",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27ebabc7-c94e-4815-8754-e69248ca4c7a/attribute/865b830d-47a2-4ac2-8164-860d1d8fca37"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27ebabc7-c94e-4815-8754-e69248ca4c7a"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27ebabc7-c94e-4815-8754-e69248ca4c7a?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "c46813a0-545a-4dad-8eb6-f8ecc2c70ef3",
            "display": "MTI_84",
            "name": "MTI_84",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "0b57eb03-aea7-41cc-859d-5e0f49310cd4",
                "display": "mspray_location_id: 3429",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c46813a0-545a-4dad-8eb6-f8ecc2c70ef3/attribute/0b57eb03-aea7-41cc-859d-5e0f49310cd4"
                  }
                ]
              },
              {
                "uuid": "492dce93-e3a8-4d9f-91d1-55f1a9fd4178",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c46813a0-545a-4dad-8eb6-f8ecc2c70ef3/attribute/492dce93-e3a8-4d9f-91d1-55f1a9fd4178"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c46813a0-545a-4dad-8eb6-f8ecc2c70ef3"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c46813a0-545a-4dad-8eb6-f8ecc2c70ef3?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "f2e83797-6511-4a35-8864-26d6ea362300",
            "display": "MTI_85",
            "name": "MTI_85",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "d0e00f97-c46f-45e8-83d2-a181abd76434",
                "display": "mspray_location_id: 3474",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2e83797-6511-4a35-8864-26d6ea362300/attribute/d0e00f97-c46f-45e8-83d2-a181abd76434"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2e83797-6511-4a35-8864-26d6ea362300"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2e83797-6511-4a35-8864-26d6ea362300?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f",
            "display": "MTI_87",
            "name": "MTI_87",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "e3128b20-88c2-4e4a-acd0-1f3a61c70fec",
                "display": "mspray_location_id: 3454",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f/attribute/e3128b20-88c2-4e4a-acd0-1f3a61c70fec"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "9d682f61-c27b-41c4-abed-e079bd07cf1b",
            "display": "MTI_INV",
            "name": "MTI_INV",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "ca661755-5257-4859-9bc2-b6760f363795",
                "display": "team_id: 7e104eee-ec8a-4733-bcf7-c02c51cf43f4",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9d682f61-c27b-41c4-abed-e079bd07cf1b/attribute/ca661755-5257-4859-9bc2-b6760f363795"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9d682f61-c27b-41c4-abed-e079bd07cf1b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9d682f61-c27b-41c4-abed-e079bd07cf1b?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2018-11-13T03:28:28.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 2953",
            "uuid": "cd11c2ed-ae25-4bc1-8b9d-4f0d1f2635bb",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "2953",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/cd11c2ed-ae25-4bc1-8b9d-4f0d1f2635bb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/cd11c2ed-ae25-4bc1-8b9d-4f0d1f2635bb?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: IRS_2019_S1",
            "uuid": "62e5e9cc-da30-49c5-90cf-7fae48b68334",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_S1",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/62e5e9cc-da30-49c5-90cf-7fae48b68334"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/62e5e9cc-da30-49c5-90cf-7fae48b68334?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_001",
            "uuid": "d8548400-c006-45ac-bc54-e7c45dba1d00",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_001",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/d8548400-c006-45ac-bc54-e7c45dba1d00"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/d8548400-c006-45ac-bc54-e7c45dba1d00?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 3,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2018-11-13T04:01:53.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/7e104eee-ec8a-4733-bcf7-c02c51cf43f4"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Tafelansoni",
      "uuid": "fd8274ad-2acb-439d-adad-7a0185af0120",
      "teamName": "Tafelansoni",
      "teamIdentifier": "TFL",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
        "display": "ea Tafelansoni Rural Health Centre",
        "name": "ea Tafelansoni Rural Health Centre",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Eastern",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Chadiza",
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37",
          "display": "ea Chadiza District",
          "name": "ea Chadiza District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Eastern",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Chadiza",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f2072767-52e1-4169-80ef-a631c4a7bf75",
            "display": "ea Eastern Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2072767-52e1-4169-80ef-a631c4a7bf75"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
              "display": "ea Bwanunkha Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
                }
              ]
            },
            {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "d1dd2767-4640-4219-b907-88d86315e9ac",
              "display": "mspray_location_id: 2939",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37/attribute/d1dd2767-4640-4219-b907-88d86315e9ac"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "bdc20d37-c9a6-4a62-87d2-a5e3df3058c3",
            "display": "TFL_250",
            "name": "TFL_250",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "e0a6acc4-aa8c-450f-ad40-24ba662a8e0b",
                "display": "mspray_location_id: 3370",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3/attribute/e0a6acc4-aa8c-450f-ad40-24ba662a8e0b"
                  }
                ]
              },
              {
                "uuid": "2bf94699-8a19-487a-8a8b-ba247705252f",
                "display": "team_id_test: MTL",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3/attribute/2bf94699-8a19-487a-8a8b-ba247705252f"
                  }
                ]
              },
              {
                "uuid": "9034b557-19ad-4748-9bd4-48e796712882",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3/attribute/9034b557-19ad-4748-9bd4-48e796712882"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "ea21d62e-8108-429d-a093-e97e6bdafd6b",
            "display": "TFL_251",
            "name": "TFL_251",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "7b644944-fc8e-4981-bfb7-404ffd0465fb",
                "display": "mspray_location_id: 3444",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ea21d62e-8108-429d-a093-e97e6bdafd6b/attribute/7b644944-fc8e-4981-bfb7-404ffd0465fb"
                  }
                ]
              },
              {
                "uuid": "a1c8c08e-4eb0-4c13-a991-d725414a0936",
                "display": "team_id_test: MTL",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ea21d62e-8108-429d-a093-e97e6bdafd6b/attribute/a1c8c08e-4eb0-4c13-a991-d725414a0936"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ea21d62e-8108-429d-a093-e97e6bdafd6b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ea21d62e-8108-429d-a093-e97e6bdafd6b?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f",
            "display": "TFL_252",
            "name": "TFL_252",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "7f560446-fd4a-4441-bb3e-0313665e13f5",
                "display": "mspray_location_id: 3392",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f/attribute/7f560446-fd4a-4441-bb3e-0313665e13f5"
                  }
                ]
              },
              {
                "uuid": "a9bd0b19-7ef3-4353-a574-61a34b44e7af",
                "display": "team_id: fdfdsfdfds",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f/attribute/a9bd0b19-7ef3-4353-a574-61a34b44e7af"
                  }
                ]
              },
              {
                "uuid": "3cc7e8dd-b3c7-4231-b6b7-1cb8d1c04892",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f/attribute/3cc7e8dd-b3c7-4231-b6b7-1cb8d1c04892"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0942021c-b966-4a90-b5cc-0afc9a8b888a",
            "display": "TFL_253",
            "name": "TFL_253",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "74f33b17-b4bf-470a-90f4-df6c1a9a62e0",
                "display": "mspray_location_id: 3432",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0942021c-b966-4a90-b5cc-0afc9a8b888a/attribute/74f33b17-b4bf-470a-90f4-df6c1a9a62e0"
                  }
                ]
              },
              {
                "uuid": "5eb2b992-b24b-46ec-9aad-27db5c9fa478",
                "display": "team_id_test: MTL",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0942021c-b966-4a90-b5cc-0afc9a8b888a/attribute/5eb2b992-b24b-46ec-9aad-27db5c9fa478"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0942021c-b966-4a90-b5cc-0afc9a8b888a"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0942021c-b966-4a90-b5cc-0afc9a8b888a?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "3d0184ff-8bb6-42da-89e2-2bb2c06b0e37",
            "display": "TFL_259a",
            "name": "TFL_259a",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "1331e7de-8a50-40d6-ac40-0c071f62684e",
                "display": "mspray_location_id: 3472",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3d0184ff-8bb6-42da-89e2-2bb2c06b0e37/attribute/1331e7de-8a50-40d6-ac40-0c071f62684e"
                  }
                ]
              },
              {
                "uuid": "63e88126-cf88-495b-9488-b2e1047fc310",
                "display": "team_id_test: MTL",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3d0184ff-8bb6-42da-89e2-2bb2c06b0e37/attribute/63e88126-cf88-495b-9488-b2e1047fc310"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3d0184ff-8bb6-42da-89e2-2bb2c06b0e37"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3d0184ff-8bb6-42da-89e2-2bb2c06b0e37?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6",
            "display": "TFL_259b",
            "name": "TFL_259b",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "04468dd1-6df4-45f7-9c75-722220514bb6",
                "display": "mspray_location_id: 3592",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6/attribute/04468dd1-6df4-45f7-9c75-722220514bb6"
                  }
                ]
              },
              {
                "uuid": "26df879f-8a07-4bac-aaeb-08f1761fe38d",
                "display": "team_id_test: MTL",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6/attribute/26df879f-8a07-4bac-aaeb-08f1761fe38d"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "d31d74d1-7b7c-4665-ae4a-7f7b35d82216",
            "display": "TFL_259c",
            "name": "TFL_259c",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "55d88cfe-5a12-43e1-915c-e5bd1a4985c0",
                "display": "mspray_location_id: 3587",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31d74d1-7b7c-4665-ae4a-7f7b35d82216/attribute/55d88cfe-5a12-43e1-915c-e5bd1a4985c0"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31d74d1-7b7c-4665-ae4a-7f7b35d82216"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31d74d1-7b7c-4665-ae4a-7f7b35d82216?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2018-11-13T03:49:37.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 2948",
            "uuid": "d9030af1-fe68-4116-8fe3-de5ee2b6d3a8",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "2948",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/d9030af1-fe68-4116-8fe3-de5ee2b6d3a8"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/d9030af1-fe68-4116-8fe3-de5ee2b6d3a8?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_002,campaign_005",
            "uuid": "2964d4fe-644a-427b-9187-c670e3bb69e9",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_002,campaign_005",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/2964d4fe-644a-427b-9187-c670e3bb69e9"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/2964d4fe-644a-427b-9187-c670e3bb69e9?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_002",
            "uuid": "3c24bc3e-9a75-4869-aef2-72fd9fee9b25",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_002",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/3c24bc3e-9a75-4869-aef2-72fd9fee9b25"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/3c24bc3e-9a75-4869-aef2-72fd9fee9b25?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_005",
            "uuid": "e65cd564-7203-4f75-96b4-e81a74b8f99c",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_005",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/e65cd564-7203-4f75-96b4-e81a74b8f99c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/e65cd564-7203-4f75-96b4-e81a74b8f99c?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2018-11-13T04:02:08.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/fd8274ad-2acb-439d-adad-7a0185af0120"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Reveal",
      "uuid": "0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf",
      "teamName": "Reveal",
      "teamIdentifier": "reveal",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
        "display": "Happy Kids Clinic",
        "name": "Happy Kids Clinic",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "3356941e-a729-4297-a652-cfe3596cbd0f",
          "display": "Fort Jameson",
          "name": "Fort Jameson",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": null,
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": null,
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "74f8c340-8ec4-4f10-ae32-17cbd2482980",
            "display": "Northern Highlands",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/74f8c340-8ec4-4f10-ae32-17cbd2482980"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "c785d83c-7cfe-4b81-8b56-6bc1d71a513c",
              "display": "mspray_location_id: 4535435",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f/attribute/c785d83c-7cfe-4b81-8b56-6bc1d71a513c"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6",
            "display": "Chimwemwe",
            "name": "Chimwemwe",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "95848785-468c-4b6c-b944-60ce00c811b9",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6/attribute/95848785-468c-4b6c-b944-60ce00c811b9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "9912bdeb-0346-4f46-8c58-3eef23cacfcb",
            "display": "TFL_259d",
            "name": "TFL_259d",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "d8375e34-502f-4b87-a53d-8b11dc836b20",
                "display": "mspray_location_id: 3591",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/d8375e34-502f-4b87-a53d-8b11dc836b20"
                  }
                ]
              },
              {
                "uuid": "0b1d137a-37db-43a3-85c0-3aabf85143ad",
                "display": "team_id: d01878e9-174f-430a-ad76-4b93ef4bf57c",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/0b1d137a-37db-43a3-85c0-3aabf85143ad"
                  }
                ]
              },
              {
                "uuid": "96c458c6-2493-493e-a065-2e0a36811cf5",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/96c458c6-2493-493e-a065-2e0a36811cf5"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0162ca98-e25e-4fb5-989e-3c8390b55534",
            "display": "Tuyandane",
            "name": "Tuyandane",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "39e84f3e-bf30-4dd1-9abb-eb63787039d8",
                "display": "team_id: 0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534/attribute/39e84f3e-bf30-4dd1-9abb-eb63787039d8"
                  }
                ]
              },
              {
                "uuid": "4b9bb5e0-2a41-428d-b8cf-e92944871af7",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534/attribute/4b9bb5e0-2a41-428d-b8cf-e92944871af7"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "7ff665d8-77a2-4eae-8eae-47193c547de5",
            "display": "Twatasha",
            "name": "Twatasha",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "aa844ea9-d135-4987-baaa-38fe5de4480c",
                "display": "team_id: 0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5/attribute/aa844ea9-d135-4987-baaa-38fe5de4480c"
                  }
                ]
              },
              {
                "uuid": "c7347a08-4533-4e97-90e0-85f86cfabbe9",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5/attribute/c7347a08-4533-4e97-90e0-85f86cfabbe9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2018-12-06T09:34:00.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "campaign_id: 2019_Namibia_IRS_Field_Testing",
            "uuid": "90b133c4-7a38-4253-b284-93e02a3f0990",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Namibia_IRS_Field_Testing",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_id",
            "uuid": "08eb42fd-02c1-4c6b-8fcd-f875d60e6e77",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_id",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2018-12-06T12:29:21.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Test Team",
      "uuid": "dd090dac-6049-476a-8312-936139a34d60",
      "teamName": "Test Team",
      "teamIdentifier": "test_team",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "0407b76c-03a9-4532-95b2-ef6d4460924e",
        "display": "Test RHC",
        "name": "Test RHC",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": "Test",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Test",
        "address3": null,
        "address4": "Test",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "43a55e5e-f902-4ecf-93d9-a8c2b9e38381",
          "display": "Test District",
          "name": "Test District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": "Test",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Test",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "11758384-128e-4294-b1bb-e51ef1f01814",
            "display": "Test Country",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/11758384-128e-4294-b1bb-e51ef1f01814"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "0407b76c-03a9-4532-95b2-ef6d4460924e",
              "display": "Test RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a55e5e-f902-4ecf-93d9-a8c2b9e38381"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a55e5e-f902-4ecf-93d9-a8c2b9e38381?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2018-12-19T02:30:23.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "campaign_id: IRS_2019_S1",
            "uuid": "c112ac8e-f2e5-4e7a-a9cc-6b058db83646",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_S1",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e/attribute/c112ac8e-f2e5-4e7a-a9cc-6b058db83646"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e/attribute/c112ac8e-f2e5-4e7a-a9cc-6b058db83646?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2018-12-19T02:31:26.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/dd090dac-6049-476a-8312-936139a34d60"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Bwanunkha RHC",
      "uuid": "62159d2f-b167-488a-98e3-3bccc87128cf",
      "teamName": "Bwanunkha RHC",
      "teamIdentifier": "BNK_RHC",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
        "display": "ea Bwanunkha Rural Health Centre",
        "name": "ea Bwanunkha Rural Health Centre",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Eastern",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Chadiza",
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37",
          "display": "ea Chadiza District",
          "name": "ea Chadiza District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Eastern",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Chadiza",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f2072767-52e1-4169-80ef-a631c4a7bf75",
            "display": "ea Eastern Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2072767-52e1-4169-80ef-a631c4a7bf75"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
              "display": "ea Bwanunkha Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
                }
              ]
            },
            {
              "uuid": "18e9f800-55c7-4261-907a-d804d6081f93",
              "display": "ea Miti Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93"
                }
              ]
            },
            {
              "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983",
              "display": "ea Tafelansoni Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "d1dd2767-4640-4219-b907-88d86315e9ac",
              "display": "mspray_location_id: 2939",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37/attribute/d1dd2767-4640-4219-b907-88d86315e9ac"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "ee70bc5e-a53e-44cc-9bb6-6a3505b61576",
            "display": "BNK_10",
            "name": "BNK_10",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Eastern",
            "country": "Zambia",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Chadiza",
            "address3": null,
            "address4": "Bwanunkha",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
              "display": "ea Bwanunkha Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "be84910c-e58d-4afa-9750-3e671f13fc65",
                "display": "mspray_location_id: 3777",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576/attribute/be84910c-e58d-4afa-9750-3e671f13fc65"
                  }
                ]
              },
              {
                "uuid": "5934eb1d-79c1-49c4-81a7-f4b8e55750f7",
                "display": "campaign_id: IRS_2019_S1",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576/attribute/5934eb1d-79c1-49c4-81a7-f4b8e55750f7"
                  }
                ]
              },
              {
                "uuid": "22d4206d-0861-4e78-a688-6cee936dc1cb",
                "display": "team_id: 62159d2f-b167-488a-98e3-3bccc87128cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576/attribute/22d4206d-0861-4e78-a688-6cee936dc1cb"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2",
            "display": "BNK_11",
            "name": "BNK_11",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Eastern",
            "country": "Zambia",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Chadiza",
            "address3": null,
            "address4": "Bwanunkha",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b",
              "display": "ea Bwanunkha Rural Health Centre",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "a8f7b32b-01d5-4e16-89dc-7bb79621add7",
                "display": "mspray_location_id: 3778",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2/attribute/a8f7b32b-01d5-4e16-89dc-7bb79621add7"
                  }
                ]
              },
              {
                "uuid": "386c6577-ea39-49a6-9689-2dd16581f791",
                "display": "campaign_id: IRS_2019_S1",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2/attribute/386c6577-ea39-49a6-9689-2dd16581f791"
                  }
                ]
              },
              {
                "uuid": "f5fc2346-930a-48ca-b921-b40a4045b693",
                "display": "team_id: 62159d2f-b167-488a-98e3-3bccc87128cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2/attribute/f5fc2346-930a-48ca-b921-b40a4045b693"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-01-25T01:17:59.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-01-25T01:23:07.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: 2952",
            "uuid": "40dc5ce0-be3f-4238-b4ec-0845269694fc",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "2952",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/40dc5ce0-be3f-4238-b4ec-0845269694fc"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/40dc5ce0-be3f-4238-b4ec-0845269694fc?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: IRS_2019_S1",
            "uuid": "26c58e38-40b4-4c3b-a582-0342bd753a2a",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_S1",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/26c58e38-40b4-4c3b-a582-0342bd753a2a"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/26c58e38-40b4-4c3b-a582-0342bd753a2a?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-01-25T01:28:14.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/62159d2f-b167-488a-98e3-3bccc87128cf"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Kariba",
      "uuid": "2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
      "teamName": "Kariba",
      "teamIdentifier": "kariba",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
        "display": "so Kariba RHC",
        "name": "so Kariba RHC",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Southern Province",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Siavonga",
        "address3": null,
        "address4": "Kariba",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "ecdfe1ab-f0f4-4510-9384-33b3b7391c7d",
          "display": "so Siavonga District",
          "name": "so Siavonga District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Southern Province",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Siavonga",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f414bcbb-63f0-46e5-abb6-dea8d5c70f00",
            "display": "so Southern Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f414bcbb-63f0-46e5-abb6-dea8d5c70f00"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "2b4a0711-360d-4446-9cbc-68a8f6e18bdb",
              "display": "mspray_location_id: 3953",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d/attribute/2b4a0711-360d-4446-9cbc-68a8f6e18bdb"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "52264e64-3183-4f56-9e2a-1eae89d218a4",
            "display": "karr_171",
            "name": "karr_171",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "d41886a1-4d2a-40e1-aef9-7c3d5e5932e3",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4/attribute/d41886a1-4d2a-40e1-aef9-7c3d5e5932e3"
                  }
                ]
              },
              {
                "uuid": "06cb1a2c-a69a-4d5c-ae7d-5fc345473b9f",
                "display": "mspray_location_id: 4116",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4/attribute/06cb1a2c-a69a-4d5c-ae7d-5fc345473b9f"
                  }
                ]
              },
              {
                "uuid": "59892a27-3428-4129-9915-e0e233cce251",
                "display": "mspray_location_id: 3965",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4/attribute/59892a27-3428-4129-9915-e0e233cce251"
                  }
                ]
              },
              {
                "uuid": "a79e31ab-8a86-4dcb-a6c3-0eb72504713d",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4/attribute/a79e31ab-8a86-4dcb-a6c3-0eb72504713d"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "2c832e37-24d1-4b10-ad25-a3510c47106d",
            "display": "karr_177",
            "name": "karr_177",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "53aeef9f-642d-457a-bfe0-8a19fe77c6a5",
                "display": "mspray_location_id: 3974",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d/attribute/53aeef9f-642d-457a-bfe0-8a19fe77c6a5"
                  }
                ]
              },
              {
                "uuid": "c9dfa751-3c16-463f-9cd4-1d523f36b0e5",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d/attribute/c9dfa751-3c16-463f-9cd4-1d523f36b0e5"
                  }
                ]
              },
              {
                "uuid": "7235316a-75be-425b-959f-b5b82f259899",
                "display": "campaign_id: 4366",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d/attribute/7235316a-75be-425b-959f-b5b82f259899"
                  }
                ]
              },
              {
                "uuid": "2a32fcbc-4e4a-41a1-a7a8-f1998e3b7007",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d/attribute/2a32fcbc-4e4a-41a1-a7a8-f1998e3b7007"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "89a4b8be-67c9-4fd3-9bc9-2142cfd069fa",
            "display": "karr_2",
            "name": "karr_2",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "2badac24-f74e-4356-aaab-54db95510f12",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa/attribute/2badac24-f74e-4356-aaab-54db95510f12"
                  }
                ]
              },
              {
                "uuid": "ec9f4ada-c100-4865-92f1-8df0cd981ccc",
                "display": "mspray_location_id: 4370",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa/attribute/ec9f4ada-c100-4865-92f1-8df0cd981ccc"
                  }
                ]
              },
              {
                "uuid": "59c2e59f-42b7-46b4-8adc-e6db6d399d67",
                "display": "mspray_location_id: 3978",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa/attribute/59c2e59f-42b7-46b4-8adc-e6db6d399d67"
                  }
                ]
              },
              {
                "uuid": "3ff46095-d292-4d56-9ff4-3c22e3e90404",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa/attribute/3ff46095-d292-4d56-9ff4-3c22e3e90404"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "cf17f636-aba6-4799-adb7-79d3e9f9ac92",
            "display": "karr_313",
            "name": "karr_313",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f9519d59-8507-401a-a2e0-4bcbb2ce0ec2",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92/attribute/f9519d59-8507-401a-a2e0-4bcbb2ce0ec2"
                  }
                ]
              },
              {
                "uuid": "a097a5f1-38d1-4b6b-94bd-5ff78edefd85",
                "display": "mspray_location_id: 4115",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92/attribute/a097a5f1-38d1-4b6b-94bd-5ff78edefd85"
                  }
                ]
              },
              {
                "uuid": "3146ac92-f4ec-4c71-9eb4-97058137fc59",
                "display": "mspray_location_id: 3964",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92/attribute/3146ac92-f4ec-4c71-9eb4-97058137fc59"
                  }
                ]
              },
              {
                "uuid": "eb8a0112-5b77-4a0f-9fed-9d74635be96c",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92/attribute/eb8a0112-5b77-4a0f-9fed-9d74635be96c"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f",
            "display": "karr_34",
            "name": "karr_34",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "0df69047-4bc0-4175-afc6-7580af251387",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f/attribute/0df69047-4bc0-4175-afc6-7580af251387"
                  }
                ]
              },
              {
                "uuid": "84226e74-df28-4173-91cf-608eec6d69d0",
                "display": "mspray_location_id: 4388",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f/attribute/84226e74-df28-4173-91cf-608eec6d69d0"
                  }
                ]
              },
              {
                "uuid": "c4dee967-e0ae-47cd-9d8b-4b720fb03fe6",
                "display": "mspray_location_id: 3980",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f/attribute/c4dee967-e0ae-47cd-9d8b-4b720fb03fe6"
                  }
                ]
              },
              {
                "uuid": "3531da7e-b2ee-4ee4-b053-3147ada785fb",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f/attribute/3531da7e-b2ee-4ee4-b053-3147ada785fb"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "99c494be-5b52-4af8-8a35-f473ce64c881",
            "display": "karr_421",
            "name": "karr_421",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "790135ca-55b4-4552-aa28-c925fe5704f5",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881/attribute/790135ca-55b4-4552-aa28-c925fe5704f5"
                  }
                ]
              },
              {
                "uuid": "259c4eba-d05c-4eff-96c6-b6c367a92ca0",
                "display": "mspray_location_id: 4049",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881/attribute/259c4eba-d05c-4eff-96c6-b6c367a92ca0"
                  }
                ]
              },
              {
                "uuid": "ca9844dd-b6d6-4730-a9d7-ca3444af92a1",
                "display": "mspray_location_id: 3957",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881/attribute/ca9844dd-b6d6-4730-a9d7-ca3444af92a1"
                  }
                ]
              },
              {
                "uuid": "8a147900-dc02-460f-9f7a-5d7f68e58102",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881/attribute/8a147900-dc02-460f-9f7a-5d7f68e58102"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "d142ea57-7678-4aba-aedd-bbb7b56b5c8d",
            "display": "karr_433",
            "name": "karr_433",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "dafb0771-4543-4530-af77-d4a7be649cf4",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d/attribute/dafb0771-4543-4530-af77-d4a7be649cf4"
                  }
                ]
              },
              {
                "uuid": "c77a3fd3-a022-4f8a-a623-026ec4652ebe",
                "display": "mspray_location_id: 4123",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d/attribute/c77a3fd3-a022-4f8a-a623-026ec4652ebe"
                  }
                ]
              },
              {
                "uuid": "f1be6d93-2757-4517-92a7-0933a1b7bdd0",
                "display": "mspray_location_id: 3966",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d/attribute/f1be6d93-2757-4517-92a7-0933a1b7bdd0"
                  }
                ]
              },
              {
                "uuid": "da1e964e-a0bd-4cc9-8aa6-b4a49ec0f019",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d/attribute/da1e964e-a0bd-4cc9-8aa6-b4a49ec0f019"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "660e3dce-78c5-4f58-b796-252afc14ea8f",
            "display": "karr_44",
            "name": "karr_44",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "fc99f6d6-5153-402d-a3cb-16d8608f3a7b",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f/attribute/fc99f6d6-5153-402d-a3cb-16d8608f3a7b"
                  }
                ]
              },
              {
                "uuid": "5d99eb01-1516-4069-9329-6c0f38e195ee",
                "display": "mspray_location_id: 4368",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f/attribute/5d99eb01-1516-4069-9329-6c0f38e195ee"
                  }
                ]
              },
              {
                "uuid": "4746dad8-e1f5-4db4-9000-159c80736648",
                "display": "mspray_location_id: 3976",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f/attribute/4746dad8-e1f5-4db4-9000-159c80736648"
                  }
                ]
              },
              {
                "uuid": "ddbbe6f4-dfcf-4f0f-840a-a7dba759ab93",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f/attribute/ddbbe6f4-dfcf-4f0f-840a-a7dba759ab93"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "afd0d5c2-a927-49d6-a6aa-338f760ec9a7",
            "display": "karr_5",
            "name": "karr_5",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f46fd60d-bee7-4f9a-9cf8-887526a27630",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7/attribute/f46fd60d-bee7-4f9a-9cf8-887526a27630"
                  }
                ]
              },
              {
                "uuid": "38601539-de67-44aa-b3e1-544e75296a25",
                "display": "mspray_location_id: 4098",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7/attribute/38601539-de67-44aa-b3e1-544e75296a25"
                  }
                ]
              },
              {
                "uuid": "981e1c6a-1fa3-47b3-94b4-e0d371919f2f",
                "display": "mspray_location_id: 3962",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7/attribute/981e1c6a-1fa3-47b3-94b4-e0d371919f2f"
                  }
                ]
              },
              {
                "uuid": "9888df79-4ab4-447b-8f4b-d36fb6c0ae6a",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7/attribute/9888df79-4ab4-447b-8f4b-d36fb6c0ae6a"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "d31b8916-993f-411b-95b5-a87d58f1b466",
            "display": "karr_50",
            "name": "karr_50",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "ff4f0e71-48a3-4e15-b7e9-e031c0f8112c",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466/attribute/ff4f0e71-48a3-4e15-b7e9-e031c0f8112c"
                  }
                ]
              },
              {
                "uuid": "e6744573-35e0-4d88-94d1-27d8331c68d3",
                "display": "mspray_location_id: 4054",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466/attribute/e6744573-35e0-4d88-94d1-27d8331c68d3"
                  }
                ]
              },
              {
                "uuid": "e27b9627-e020-48c9-aad1-3b73029a823c",
                "display": "mspray_location_id: 3959",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466/attribute/e27b9627-e020-48c9-aad1-3b73029a823c"
                  }
                ]
              },
              {
                "uuid": "308670aa-d8c7-47da-bfb1-c3830e6cf2d8",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466/attribute/308670aa-d8c7-47da-bfb1-c3830e6cf2d8"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "af143250-9569-473d-9272-79b33e00b9c4",
            "display": "karr_56",
            "name": "karr_56",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "95358183-7cb3-4452-80ad-7995108f6443",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4/attribute/95358183-7cb3-4452-80ad-7995108f6443"
                  }
                ]
              },
              {
                "uuid": "96904eb8-46b5-4d38-84bd-c137a8081ac5",
                "display": "mspray_location_id: 4367",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4/attribute/96904eb8-46b5-4d38-84bd-c137a8081ac5"
                  }
                ]
              },
              {
                "uuid": "e38f986f-24eb-4510-8d50-9982850702f5",
                "display": "mspray_location_id: 3975",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4/attribute/e38f986f-24eb-4510-8d50-9982850702f5"
                  }
                ]
              },
              {
                "uuid": "5fa62ae0-e27c-49d6-baff-634a41f44198",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4/attribute/5fa62ae0-e27c-49d6-baff-634a41f44198"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "f6dd1649-4686-4bde-b9f1-b60fe034999d",
            "display": "karr_65",
            "name": "karr_65",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "5ddfd86b-d80c-461f-9a1c-4e06210a005c",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d/attribute/5ddfd86b-d80c-461f-9a1c-4e06210a005c"
                  }
                ]
              },
              {
                "uuid": "79bc6e0c-b578-46da-8fc6-f437da3ccaa7",
                "display": "mspray_location_id: 4369",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d/attribute/79bc6e0c-b578-46da-8fc6-f437da3ccaa7"
                  }
                ]
              },
              {
                "uuid": "2864f17a-312a-4fb3-beb1-437065965ffe",
                "display": "mspray_location_id: 3977",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d/attribute/2864f17a-312a-4fb3-beb1-437065965ffe"
                  }
                ]
              },
              {
                "uuid": "c2c83a61-8224-46d4-809d-2c24d491d1e3",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d/attribute/c2c83a61-8224-46d4-809d-2c24d491d1e3"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e",
            "display": "karr_7",
            "name": "karr_7",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f7643489-c81a-4738-bb7e-fa9d291f6250",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e/attribute/f7643489-c81a-4738-bb7e-fa9d291f6250"
                  }
                ]
              },
              {
                "uuid": "0d0da756-c63f-4861-9d3d-211771e08ff8",
                "display": "mspray_location_id: 4389",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e/attribute/0d0da756-c63f-4861-9d3d-211771e08ff8"
                  }
                ]
              },
              {
                "uuid": "fa4920d6-75f0-4938-9504-7f36f4615a01",
                "display": "mspray_location_id: 3981",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e/attribute/fa4920d6-75f0-4938-9504-7f36f4615a01"
                  }
                ]
              },
              {
                "uuid": "605279f1-559e-424e-aede-2a93665eb2cb",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e/attribute/605279f1-559e-424e-aede-2a93665eb2cb"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "be2800cf-bd0a-48f6-9a01-69e704890177",
            "display": "karr_8",
            "name": "karr_8",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "62cbe032-72ef-48b5-bfb3-7e007cd10e18",
                "display": "team_id: 2f47d3a8-4e80-4584-bd12-070ab1a6df3d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177/attribute/62cbe032-72ef-48b5-bfb3-7e007cd10e18"
                  }
                ]
              },
              {
                "uuid": "5e357fad-3190-4e09-9518-9406df1dff84",
                "display": "mspray_location_id: 4365",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177/attribute/5e357fad-3190-4e09-9518-9406df1dff84"
                  }
                ]
              },
              {
                "uuid": "0eb9873d-1149-4b00-b906-15e9313e3ccb",
                "display": "mspray_location_id: 3973",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177/attribute/0eb9873d-1149-4b00-b906-15e9313e3ccb"
                  }
                ]
              },
              {
                "uuid": "5a54a2b6-1bb6-4d6a-ad5e-7be9efc7212a",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177/attribute/5a54a2b6-1bb6-4d6a-ad5e-7be9efc7212a"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-02-04T02:47:46.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 3959",
            "uuid": "f8cadfb5-e7dd-4b30-a222-59c7cdd8a8cc",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3959",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/f8cadfb5-e7dd-4b30-a222-59c7cdd8a8cc"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/f8cadfb5-e7dd-4b30-a222-59c7cdd8a8cc?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
            "uuid": "be06a019-3317-441a-abc1-804f32e15966",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Akros_IRS_Field_Testing",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/be06a019-3317-441a-abc1-804f32e15966"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/be06a019-3317-441a-abc1-804f32e15966?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "mspray_location_id: 3955",
            "uuid": "a77db7ed-33d3-4a8c-b793-85429e568e16",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3955",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/a77db7ed-33d3-4a8c-b793-85429e568e16"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/a77db7ed-33d3-4a8c-b793-85429e568e16?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 3,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-02-04T04:27:35.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/2f47d3a8-4e80-4584-bd12-070ab1a6df3d"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Kariba HAHC",
      "uuid": "6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
      "teamName": "Kariba HAHC",
      "teamIdentifier": "karibaHAHC",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
        "display": "so Kariba HAHC",
        "name": "so Kariba HAHC",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Southern Province",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Siavonga",
        "address3": null,
        "address4": "Kariba HAHC",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "ecdfe1ab-f0f4-4510-9384-33b3b7391c7d",
          "display": "so Siavonga District",
          "name": "so Siavonga District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Southern Province",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Siavonga",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f414bcbb-63f0-46e5-abb6-dea8d5c70f00",
            "display": "so Southern Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f414bcbb-63f0-46e5-abb6-dea8d5c70f00"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            {
              "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415",
              "display": "so Kariba RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "2b4a0711-360d-4446-9cbc-68a8f6e18bdb",
              "display": "mspray_location_id: 3953",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d/attribute/2b4a0711-360d-4446-9cbc-68a8f6e18bdb"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "ac4bda3b-e0b3-45ef-b2ca-9f6baac82917",
            "display": "karh_127",
            "name": "karh_127",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "40511581-b65c-4d26-8ec0-ada79a17d3cc",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917/attribute/40511581-b65c-4d26-8ec0-ada79a17d3cc"
                  }
                ]
              },
              {
                "uuid": "0d84cafa-2988-4b2b-8662-872627692d50",
                "display": "mspray_location_id: 4070",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917/attribute/0d84cafa-2988-4b2b-8662-872627692d50"
                  }
                ]
              },
              {
                "uuid": "7ad118e3-7b96-4926-8a89-dff1f4d82065",
                "display": "mspray_location_id: 3960",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917/attribute/7ad118e3-7b96-4926-8a89-dff1f4d82065"
                  }
                ]
              },
              {
                "uuid": "0284188b-8583-4223-a2f1-af19e429825e",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917/attribute/0284188b-8583-4223-a2f1-af19e429825e"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "e040fc37-0d57-4c75-9ab9-2ffa98275fa6",
            "display": "karh_136",
            "name": "karh_136",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "7bc441b8-f04a-4288-b49d-ebfeeb171b13",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6/attribute/7bc441b8-f04a-4288-b49d-ebfeeb171b13"
                  }
                ]
              },
              {
                "uuid": "278ec991-91ff-4be4-b21b-4d8202d06368",
                "display": "mspray_location_id: 4109",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6/attribute/278ec991-91ff-4be4-b21b-4d8202d06368"
                  }
                ]
              },
              {
                "uuid": "f448dad4-bd40-49c0-b46c-b18f93a2d6b9",
                "display": "mspray_location_id: 3963",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6/attribute/f448dad4-bd40-49c0-b46c-b18f93a2d6b9"
                  }
                ]
              },
              {
                "uuid": "7ca3c2d1-e1c4-4a2f-a70d-cc254a3a5821",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6/attribute/7ca3c2d1-e1c4-4a2f-a70d-cc254a3a5821"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "e7474bea-5b43-4c5b-b2cc-b27c0b502ac0",
            "display": "karh_150",
            "name": "karh_150",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "322a98a3-dfea-4a87-9b13-0c6fb45095c4",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0/attribute/322a98a3-dfea-4a87-9b13-0c6fb45095c4"
                  }
                ]
              },
              {
                "uuid": "9be43a67-88fc-4d47-bcdd-fd746a1567ab",
                "display": "mspray_location_id: 4191",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0/attribute/9be43a67-88fc-4d47-bcdd-fd746a1567ab"
                  }
                ]
              },
              {
                "uuid": "dd418c61-e774-43b4-90f7-d724d765f7dc",
                "display": "mspray_location_id: 3970",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0/attribute/dd418c61-e774-43b4-90f7-d724d765f7dc"
                  }
                ]
              },
              {
                "uuid": "a3eebfcd-0c01-406c-acd5-680a9eef17ee",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0/attribute/a3eebfcd-0c01-406c-acd5-680a9eef17ee"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "921fcec6-2b79-4fa3-9e41-9f8af25582ea",
            "display": "karh_163",
            "name": "karh_163",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "6e075785-3769-45a0-b6e3-4bbfc455dcae",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea/attribute/6e075785-3769-45a0-b6e3-4bbfc455dcae"
                  }
                ]
              },
              {
                "uuid": "a94a091e-f495-4b54-b830-cc3c65012fb0",
                "display": "mspray_location_id: 4050",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea/attribute/a94a091e-f495-4b54-b830-cc3c65012fb0"
                  }
                ]
              },
              {
                "uuid": "9e95b1b0-a8f8-4b14-a236-feb14416db92",
                "display": "mspray_location_id: 3958",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea/attribute/9e95b1b0-a8f8-4b14-a236-feb14416db92"
                  }
                ]
              },
              {
                "uuid": "0a692603-556a-4a43-9273-cc2bca55cea4",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea/attribute/0a692603-556a-4a43-9273-cc2bca55cea4"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "e10a11a5-30e9-438f-88ac-cece20fbf95c",
            "display": "karh_170",
            "name": "karh_170",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "f48b2074-0f70-49c2-a74a-bf280b71edab",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c/attribute/f48b2074-0f70-49c2-a74a-bf280b71edab"
                  }
                ]
              },
              {
                "uuid": "08a5ef46-9f6e-456b-9f10-4c210a96c74d",
                "display": "mspray_location_id: 4041",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c/attribute/08a5ef46-9f6e-456b-9f10-4c210a96c74d"
                  }
                ]
              },
              {
                "uuid": "b258676e-9da7-4fe3-aa92-8c5eda13c58d",
                "display": "mspray_location_id: 3956",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c/attribute/b258676e-9da7-4fe3-aa92-8c5eda13c58d"
                  }
                ]
              },
              {
                "uuid": "c3d5ed68-4a44-4a87-b686-106d5e96a7a0",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c/attribute/c3d5ed68-4a44-4a87-b686-106d5e96a7a0"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "5f935ed5-e0bb-4cb3-92c9-0959217bb1fb",
            "display": "karh_18",
            "name": "karh_18",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "02bc8595-74ff-43ca-8737-a0aec31655fc",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb/attribute/02bc8595-74ff-43ca-8737-a0aec31655fc"
                  }
                ]
              },
              {
                "uuid": "aa482651-a4dd-44a7-9e6c-240581727e06",
                "display": "mspray_location_id: 4090",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb/attribute/aa482651-a4dd-44a7-9e6c-240581727e06"
                  }
                ]
              },
              {
                "uuid": "199430f7-2dce-4e9b-89b3-c91894243e1b",
                "display": "mspray_location_id: 3961",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb/attribute/199430f7-2dce-4e9b-89b3-c91894243e1b"
                  }
                ]
              },
              {
                "uuid": "cc34d880-c9f5-4fe2-ac99-f4ad4e2a3186",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb/attribute/cc34d880-c9f5-4fe2-ac99-f4ad4e2a3186"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "426c37f2-fbf4-43e8-9dc6-afcc46f50d80",
            "display": "karh_252",
            "name": "karh_252",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "2ad4ce76-7401-4d2d-8790-d4aef7722694",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80/attribute/2ad4ce76-7401-4d2d-8790-d4aef7722694"
                  }
                ]
              },
              {
                "uuid": "030d1430-e95b-431d-8691-0fc9e8f3403e",
                "display": "mspray_location_id: 4167",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80/attribute/030d1430-e95b-431d-8691-0fc9e8f3403e"
                  }
                ]
              },
              {
                "uuid": "b19f5486-2e97-449d-a621-56df9fc1bb29",
                "display": "mspray_location_id: 3967",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80/attribute/b19f5486-2e97-449d-a621-56df9fc1bb29"
                  }
                ]
              },
              {
                "uuid": "618f3f92-f091-4697-a534-af915fa4b737",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80/attribute/618f3f92-f091-4697-a534-af915fa4b737"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "1cc11ec8-f909-4494-9b49-645249d5610d",
            "display": "karh_280",
            "name": "karh_280",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "a910c37a-dde3-497c-8492-4a06e47d27bb",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d/attribute/a910c37a-dde3-497c-8492-4a06e47d27bb"
                  }
                ]
              },
              {
                "uuid": "f8868a61-3a16-452a-89cf-1146d1cf689c",
                "display": "mspray_location_id: 4183",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d/attribute/f8868a61-3a16-452a-89cf-1146d1cf689c"
                  }
                ]
              },
              {
                "uuid": "1dbe5e12-e81d-44a3-8186-715dd7d5c39a",
                "display": "mspray_location_id: 3969",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d/attribute/1dbe5e12-e81d-44a3-8186-715dd7d5c39a"
                  }
                ]
              },
              {
                "uuid": "1297c678-956b-4502-8de4-09ec0e908bbe",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d/attribute/1297c678-956b-4502-8de4-09ec0e908bbe"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "a0fb0b6b-cf57-4397-88be-07c3c703aab0",
            "display": "karh_387",
            "name": "karh_387",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "75c96310-4d8d-40bb-8311-2477ebd0a101",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0/attribute/75c96310-4d8d-40bb-8311-2477ebd0a101"
                  }
                ]
              },
              {
                "uuid": "f427560c-b0c2-4a76-bc7f-c71ecaf66294",
                "display": "mspray_location_id: 4239",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0/attribute/f427560c-b0c2-4a76-bc7f-c71ecaf66294"
                  }
                ]
              },
              {
                "uuid": "99e37073-a775-4fe5-b462-8bee995bdfaa",
                "display": "mspray_location_id: 3972",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0/attribute/99e37073-a775-4fe5-b462-8bee995bdfaa"
                  }
                ]
              },
              {
                "uuid": "baaf04d3-ccfe-4eac-92f8-b026c180f1b2",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0/attribute/baaf04d3-ccfe-4eac-92f8-b026c180f1b2"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "fc1a2a2f-94ac-4f54-a740-ae14b40ee7be",
            "display": "karh_444",
            "name": "karh_444",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "59890438-3700-4379-995e-0ca911c63c77",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be/attribute/59890438-3700-4379-995e-0ca911c63c77"
                  }
                ]
              },
              {
                "uuid": "1f83c8a2-fe44-4c8b-bb97-5e0b952bae65",
                "display": "mspray_location_id: 4171",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be/attribute/1f83c8a2-fe44-4c8b-bb97-5e0b952bae65"
                  }
                ]
              },
              {
                "uuid": "0148120f-bac4-4f95-9be4-ec34c61217ca",
                "display": "mspray_location_id: 3968",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be/attribute/0148120f-bac4-4f95-9be4-ec34c61217ca"
                  }
                ]
              },
              {
                "uuid": "2cea78a3-b6bd-4e10-b918-7cb6fffb7b77",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be/attribute/2cea78a3-b6bd-4e10-b918-7cb6fffb7b77"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0e971fdf-5169-42b9-a7f0-5dcba02dd34e",
            "display": "karh_462",
            "name": "karh_462",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "11aeddce-78cd-4ed0-943f-0cf6cc2d3638",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e/attribute/11aeddce-78cd-4ed0-943f-0cf6cc2d3638"
                  }
                ]
              },
              {
                "uuid": "c9680204-fe94-42be-9bc4-1bcace449c3f",
                "display": "mspray_location_id: 4233",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e/attribute/c9680204-fe94-42be-9bc4-1bcace449c3f"
                  }
                ]
              },
              {
                "uuid": "11cb326b-9c00-47f9-91a2-489c92e45134",
                "display": "mspray_location_id: 3971",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e/attribute/11cb326b-9c00-47f9-91a2-489c92e45134"
                  }
                ]
              },
              {
                "uuid": "1f715d72-9363-4b89-a039-6887fc5c2d4f",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e/attribute/1f715d72-9363-4b89-a039-6887fc5c2d4f"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "1263ed1f-b665-43f5-89bf-c61c70623258",
            "display": "karh_47",
            "name": "karh_47",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "815a999f-2d43-4bca-b32d-efb07990c065",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258/attribute/815a999f-2d43-4bca-b32d-efb07990c065"
                  }
                ]
              },
              {
                "uuid": "77cf280a-bf26-4c5c-b351-c985c088ed05",
                "display": "mspray_location_id: 4391",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258/attribute/77cf280a-bf26-4c5c-b351-c985c088ed05"
                  }
                ]
              },
              {
                "uuid": "597bdea9-c43d-4810-a0eb-4baa7ad09320",
                "display": "mspray_location_id: 3982",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258/attribute/597bdea9-c43d-4810-a0eb-4baa7ad09320"
                  }
                ]
              },
              {
                "uuid": "1c1bfafb-ddf7-49a8-9a5c-35269afdabb2",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258/attribute/1c1bfafb-ddf7-49a8-9a5c-35269afdabb2"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "e78502b4-9fe2-4f3d-bff4-e70d81a28cfb",
            "display": "karh_58",
            "name": "karh_58",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823",
              "display": "so Kariba HAHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "fed0f70e-b8ba-4868-b6d4-db940f79b3ce",
                "display": "team_id: 6effbdd9-6258-47af-b6a5-cd8a9c40aefd",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb/attribute/fed0f70e-b8ba-4868-b6d4-db940f79b3ce"
                  }
                ]
              },
              {
                "uuid": "ae109958-e4b1-4fc1-8c9b-f81d2f92daed",
                "display": "mspray_location_id: 4382",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb/attribute/ae109958-e4b1-4fc1-8c9b-f81d2f92daed"
                  }
                ]
              },
              {
                "uuid": "187373b3-73f5-4da9-81dd-5d7644e054b2",
                "display": "mspray_location_id: 3979",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb/attribute/187373b3-73f5-4da9-81dd-5d7644e054b2"
                  }
                ]
              },
              {
                "uuid": "7213b9b2-db25-4e56-bc83-a35854475343",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb/attribute/7213b9b2-db25-4e56-bc83-a35854475343"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-02-04T02:48:34.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 3958",
            "uuid": "d7383579-b2df-4582-9241-4352ea841eff",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3958",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/d7383579-b2df-4582-9241-4352ea841eff"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/d7383579-b2df-4582-9241-4352ea841eff?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
            "uuid": "e8e0c74d-a77f-447c-9991-9b19103f8c44",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Akros_IRS_Field_Testing",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/e8e0c74d-a77f-447c-9991-9b19103f8c44"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/e8e0c74d-a77f-447c-9991-9b19103f8c44?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "mspray_location_id: 3954",
            "uuid": "9206ed6f-7f89-4b05-8b07-811854105a3e",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3954",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/9206ed6f-7f89-4b05-8b07-811854105a3e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/9206ed6f-7f89-4b05-8b07-811854105a3e?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 2,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-02-04T04:27:51.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/6effbdd9-6258-47af-b6a5-cd8a9c40aefd"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Mtendere",
      "uuid": "bd2efe2b-7dcf-4d48-b2ac-27fced048713",
      "teamName": "Mtendere",
      "teamIdentifier": "Mtendere",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "63123ed0-d893-412c-9f2e-d1194c5394bd",
        "display": "Mtendere RHC",
        "name": "Mtendere RHC",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Lusaka",
        "country": "Zambia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Lusaka",
        "address3": null,
        "address4": "Mtendere",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7",
          "display": "ls Lusaka District",
          "name": "ls Lusaka District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Lusaka",
          "country": "Zambia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Lusaka",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "969e29a8-b28f-4d10-80ab-b69e0f761983",
            "display": "ls Lusaka Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/969e29a8-b28f-4d10-80ab-b69e0f761983"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "63123ed0-d893-412c-9f2e-d1194c5394bd",
              "display": "Mtendere RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "cac98aed-8173-48e6-a929-9c98b664d593",
              "display": "mspray_location_id: 2942",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7/attribute/cac98aed-8173-48e6-a929-9c98b664d593"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "f2b5eec1-5cba-4dbe-a019-d6436ee2fa12",
            "display": "Akros_1",
            "name": "Akros_1",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "63123ed0-d893-412c-9f2e-d1194c5394bd",
              "display": "Mtendere RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "2ebea406-5ece-44bb-b72e-09e2d330d402",
                "display": "mspray_location_id: 3951",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12/attribute/2ebea406-5ece-44bb-b72e-09e2d330d402"
                  }
                ]
              },
              {
                "uuid": "6438e239-d997-4bdb-a9b5-36215b2f66aa",
                "display": "team_id: bd2efe2b-7dcf-4d48-b2ac-27fced048713",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12/attribute/6438e239-d997-4bdb-a9b5-36215b2f66aa"
                  }
                ]
              },
              {
                "uuid": "e55fc5a8-296d-4104-b42d-b91759993af9",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12/attribute/e55fc5a8-296d-4104-b42d-b91759993af9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "617e2a06-8235-4e8a-a43b-1c44f1565af8",
            "display": "Akros_2",
            "name": "Akros_2",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "63123ed0-d893-412c-9f2e-d1194c5394bd",
              "display": "Mtendere RHC",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "374225f2-c386-4576-bea8-af02dd749ebf",
                "display": "mspray_location_id: 3952",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8/attribute/374225f2-c386-4576-bea8-af02dd749ebf"
                  }
                ]
              },
              {
                "uuid": "4842bf49-b7f8-4d95-875b-53166d42160e",
                "display": "team_id: bd2efe2b-7dcf-4d48-b2ac-27fced048713",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8/attribute/4842bf49-b7f8-4d95-875b-53166d42160e"
                  }
                ]
              },
              {
                "uuid": "c144208c-eebc-4252-88a9-caa446a896be",
                "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8/attribute/c144208c-eebc-4252-88a9-caa446a896be"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-02-05T04:59:39.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 2942",
            "uuid": "aff8a25d-1932-4250-98ec-3556b1d443e1",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "2942",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/aff8a25d-1932-4250-98ec-3556b1d443e1"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/aff8a25d-1932-4250-98ec-3556b1d443e1?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: 2019_Akros_IRS_Field_Testing",
            "uuid": "1cdaaeef-df2f-4955-bb4e-ce900d623a7b",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Akros_IRS_Field_Testing",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/1cdaaeef-df2f-4955-bb4e-ce900d623a7b"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/1cdaaeef-df2f-4955-bb4e-ce900d623a7b?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: bd2efe2b-7dcf-4d48-b2ac-27fced048713",
            "uuid": "6e375b3a-0643-459b-91a5-f6bf9fd9b946",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "bd2efe2b-7dcf-4d48-b2ac-27fced048713",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/6e375b3a-0643-459b-91a5-f6bf9fd9b946"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/6e375b3a-0643-459b-91a5-f6bf9fd9b946?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-02-05T05:01:42.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/bd2efe2b-7dcf-4d48-b2ac-27fced048713"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Namibia",
      "uuid": "d01878e9-174f-430a-ad76-4b93ef4bf57c",
      "teamName": "Namibia",
      "teamIdentifier": "Nam",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
        "display": "Happy Kids Clinic",
        "name": "Happy Kids Clinic",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "3356941e-a729-4297-a652-cfe3596cbd0f",
          "display": "Fort Jameson",
          "name": "Fort Jameson",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": null,
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": null,
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "74f8c340-8ec4-4f10-ae32-17cbd2482980",
            "display": "Northern Highlands",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/74f8c340-8ec4-4f10-ae32-17cbd2482980"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "c785d83c-7cfe-4b81-8b56-6bc1d71a513c",
              "display": "mspray_location_id: 4535435",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f/attribute/c785d83c-7cfe-4b81-8b56-6bc1d71a513c"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6",
            "display": "Chimwemwe",
            "name": "Chimwemwe",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "95848785-468c-4b6c-b944-60ce00c811b9",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6/attribute/95848785-468c-4b6c-b944-60ce00c811b9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "9912bdeb-0346-4f46-8c58-3eef23cacfcb",
            "display": "TFL_259d",
            "name": "TFL_259d",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "d8375e34-502f-4b87-a53d-8b11dc836b20",
                "display": "mspray_location_id: 3591",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/d8375e34-502f-4b87-a53d-8b11dc836b20"
                  }
                ]
              },
              {
                "uuid": "0b1d137a-37db-43a3-85c0-3aabf85143ad",
                "display": "team_id: d01878e9-174f-430a-ad76-4b93ef4bf57c",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/0b1d137a-37db-43a3-85c0-3aabf85143ad"
                  }
                ]
              },
              {
                "uuid": "96c458c6-2493-493e-a065-2e0a36811cf5",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb/attribute/96c458c6-2493-493e-a065-2e0a36811cf5"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "0162ca98-e25e-4fb5-989e-3c8390b55534",
            "display": "Tuyandane",
            "name": "Tuyandane",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "39e84f3e-bf30-4dd1-9abb-eb63787039d8",
                "display": "team_id: 0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534/attribute/39e84f3e-bf30-4dd1-9abb-eb63787039d8"
                  }
                ]
              },
              {
                "uuid": "4b9bb5e0-2a41-428d-b8cf-e92944871af7",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534/attribute/4b9bb5e0-2a41-428d-b8cf-e92944871af7"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "7ff665d8-77a2-4eae-8eae-47193c547de5",
            "display": "Twatasha",
            "name": "Twatasha",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4",
              "display": "Happy Kids Clinic",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "aa844ea9-d135-4987-baaa-38fe5de4480c",
                "display": "team_id: 0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5/attribute/aa844ea9-d135-4987-baaa-38fe5de4480c"
                  }
                ]
              },
              {
                "uuid": "c7347a08-4533-4e97-90e0-85f86cfabbe9",
                "display": "team_id: 5aa1aab5-8062-41ae-b216-ccb9402f41ac",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5/attribute/c7347a08-4533-4e97-90e0-85f86cfabbe9"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2018-12-06T09:34:00.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "campaign_id: 2019_Namibia_IRS_Field_Testing",
            "uuid": "90b133c4-7a38-4253-b284-93e02a3f0990",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Namibia_IRS_Field_Testing",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: campaign_id",
            "uuid": "08eb42fd-02c1-4c6b-8fcd-f875d60e6e77",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "campaign_id",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-03-05T11:03:57.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/d01878e9-174f-430a-ad76-4b93ef4bf57c"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Botswana",
      "uuid": "e5470c0b-2349-45ec-bdd1-e0ed5a120a87",
      "teamName": "Botswana",
      "teamIdentifier": "Bot",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "7478a0a0-0aac-4886-999b-0911dfd4ec8c",
        "display": "Ngwaketse North",
        "name": "Ngwaketse North",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "7de14bdc-9e2a-4183-a6c9-3b506daac8e4",
            "display": "Sub-district",
            "name": "Sub-district",
            "description": "This is specific to Botswana and is a level below district but above village",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/7de14bdc-9e2a-4183-a6c9-3b506daac8e4"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/7de14bdc-9e2a-4183-a6c9-3b506daac8e4?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "cbfe24e8-0433-49c7-927f-a04c06f35bfa",
          "display": "Southern District",
          "name": "Southern District",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": null,
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": null,
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "d41abf13-f5e6-4467-a12a-f5ccd1d7cc2c",
            "display": "Botswana",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d41abf13-f5e6-4467-a12a-f5ccd1d7cc2c"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "7478a0a0-0aac-4886-999b-0911dfd4ec8c",
              "display": "Ngwaketse North",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "09159f62-d3f7-4640-935e-08a8aa8e604e",
              "display": "mspray_location_id: 58fb4f54-63c7-419f-a536-95f3c2469101",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cbfe24e8-0433-49c7-927f-a04c06f35bfa/attribute/09159f62-d3f7-4640-935e-08a8aa8e604e"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cbfe24e8-0433-49c7-927f-a04c06f35bfa"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cbfe24e8-0433-49c7-927f-a04c06f35bfa?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "1c964c3b-d638-464f-b3f0-cca3e0f655a1",
            "display": "Sekoma City",
            "name": "Sekoma City",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
                "display": "Village",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "7478a0a0-0aac-4886-999b-0911dfd4ec8c",
              "display": "Ngwaketse North",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c"
                }
              ]
            },
            "childLocations": [
              {
                "uuid": "83b069c5-41ee-4cb3-997a-54c49991c373",
                "display": "Sekoma City OA",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/83b069c5-41ee-4cb3-997a-54c49991c373"
                  }
                ]
              }
            ],
            "retired": false,
            "attributes": [
              {
                "uuid": "987aabe3-ab5b-4df0-b4ae-ddc77d0f1ccb",
                "display": "mspray_location_id: 4b576af2-6cf7-45a6-8727-729af41df091",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1c964c3b-d638-464f-b3f0-cca3e0f655a1/attribute/987aabe3-ab5b-4df0-b4ae-ddc77d0f1ccb"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1c964c3b-d638-464f-b3f0-cca3e0f655a1"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1c964c3b-d638-464f-b3f0-cca3e0f655a1?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-07-20T01:56:56.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 88f02ede-2c39-4b15-b664-1d005853dce3",
            "uuid": "f1a74deb-6437-46c3-a210-ba95ddcacc36",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "88f02ede-2c39-4b15-b664-1d005853dce3",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c/attribute/f1a74deb-6437-46c3-a210-ba95ddcacc36"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c/attribute/f1a74deb-6437-46c3-a210-ba95ddcacc36?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-03-07T17:17:20.000+0200",
        "changedBy": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateChanged": "2019-07-20T02:00:18.000+0200"
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/e5470c0b-2349-45ec-bdd1-e0ed5a120a87"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Chaom Chau",
      "uuid": "fdc01b66-ee93-4ac2-8df1-b526ccbf0914",
      "teamName": "Chaom Chau",
      "teamIdentifier": "ChaomChau",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "5156c5bc-410a-40f6-bb61-ae4b851ff2f7",
        "display": "Ou Smach",
        "name": "Ou Smach",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Oddar Meanchey Province",
        "country": "Cambodia",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Samraong",
        "address3": null,
        "address4": "Ou Smach",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e",
            "display": "Rural Health Centre",
            "name": "Rural Health Centre",
            "description": "This is a Rural Health Centre Catchment area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea",
          "display": "Samraong",
          "name": "Samraong",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Oddar Meanchey Province",
          "country": "Cambodia",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Samraong",
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1",
              "display": "District",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/19592b42-5181-49e4-85ab-2c502e7193c1"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "f1c8be13-5f9a-4f26-85d7-9384e6bd0004",
            "display": "Oddar Meanchey Province",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f1c8be13-5f9a-4f26-85d7-9384e6bd0004"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "5156c5bc-410a-40f6-bb61-ae4b851ff2f7",
              "display": "Ou Smach",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "37882ca8-6404-41cd-ba9f-3e97e8b47933",
              "display": "mspray_location_id: 998a531-f317-4d53-a306-105da97c0ca3",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea/attribute/37882ca8-6404-41cd-ba9f-3e97e8b47933"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "452632c7-c1ac-411f-953a-eb4fa1b1516f",
            "display": "OuSM_01",
            "name": "OuSM_01",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Oddar Meanchey Province",
            "country": "Cambodia",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Samraong",
            "address3": null,
            "address4": "Ou Smach",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5156c5bc-410a-40f6-bb61-ae4b851ff2f7",
              "display": "Ou Smach",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "2c61ff86-00c6-4842-9ce3-0b5f156f32b9",
                "display": "team_id: fdc01b66-ee93-4ac2-8df1-b526ccbf0914",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/452632c7-c1ac-411f-953a-eb4fa1b1516f/attribute/2c61ff86-00c6-4842-9ce3-0b5f156f32b9"
                  }
                ]
              },
              {
                "uuid": "919ea048-7e82-4e3d-9c10-3de95d4f9658",
                "display": "mspray_location_id: f31f8088-5b99-4be4-adb7-6ea7ac212a3c",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/452632c7-c1ac-411f-953a-eb4fa1b1516f/attribute/919ea048-7e82-4e3d-9c10-3de95d4f9658"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/452632c7-c1ac-411f-953a-eb4fa1b1516f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/452632c7-c1ac-411f-953a-eb4fa1b1516f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "de183656-e2da-4499-b4cf-2a2a71cee213",
            "display": "OuSM_02",
            "name": "OuSM_02",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Oddar Meanchey Province",
            "country": "Cambodia",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Samraong",
            "address3": null,
            "address4": "Ou Smach",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "5156c5bc-410a-40f6-bb61-ae4b851ff2f7",
              "display": "Ou Smach",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "ec993c99-3914-4555-80af-5ac14dce9cff",
                "display": "team_id: fdc01b66-ee93-4ac2-8df1-b526ccbf0914",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de183656-e2da-4499-b4cf-2a2a71cee213/attribute/ec993c99-3914-4555-80af-5ac14dce9cff"
                  }
                ]
              },
              {
                "uuid": "e061c57d-61ed-4827-8b28-3d11377d6748",
                "display": "mspray_location_id: cde87266-c3ce-4a6a-9e1c-982a840ceb65",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de183656-e2da-4499-b4cf-2a2a71cee213/attribute/e061c57d-61ed-4827-8b28-3d11377d6748"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de183656-e2da-4499-b4cf-2a2a71cee213"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de183656-e2da-4499-b4cf-2a2a71cee213?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-03-27T15:36:21.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-03-29T23:07:39.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: efd628d1-cfbf-4f51-bc40-21bc85d43648",
            "uuid": "f2783b47-fdc0-4cc8-9787-491bd292c6cd",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "efd628d1-cfbf-4f51-bc40-21bc85d43648",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/f2783b47-fdc0-4cc8-9787-491bd292c6cd"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/f2783b47-fdc0-4cc8-9787-491bd292c6cd?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: 2019_Cambodia_IRS",
            "uuid": "37515818-4d60-4411-99c6-770145c643e7",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "2019_Cambodia_IRS",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/37515818-4d60-4411-99c6-770145c643e7"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/37515818-4d60-4411-99c6-770145c643e7?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 2,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-03-27T15:37:05.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/fdc01b66-ee93-4ac2-8df1-b526ccbf0914"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "ThanLuangVillage1",
      "uuid": "09962f7c-8dab-4dee-96e2-354382aec76a",
      "teamName": "ThanLuangVillage1",
      "teamIdentifier": "TLv1",
      "supervisor": "ThaLuang Village1",
      "supervisorUuid": "9167acfa-878c-4869-8df6-14743484a235",
      "supervisorTeam": "ThanLuangVillage1",
      "supervisorTeamUuid": "09962f7c-8dab-4dee-96e2-354382aec76a",
      "supervisorIdentifier": "tlv1",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
        "display": "Tha Luang Village 1",
        "name": "Tha Luang Village 1",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": "Tha Luang Village 1",
        "address4": "Tha Luang",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646",
          "display": "Tha Luang Canton",
          "name": "Tha Luang Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Lop Buri",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Tha Luang",
          "address3": null,
          "address4": "Tha Luang",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "52f44774-79ad-496d-9b78-1c596db84774",
            "display": "Tha Luang District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52f44774-79ad-496d-9b78-1c596db84774"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
              "display": "Tha Luang Village 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
                }
              ]
            },
            {
              "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
              "display": "Tha Luang Village 2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
                }
              ]
            },
            {
              "uuid": "53abb5fe-2295-4de6-9a6c-4713813ad7d5",
              "display": "Two Two One Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5"
                }
              ]
            },
            {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "acb36caa-3199-4ea6-a7cf-484ee0429a32",
              "display": "mspray_location_id: 872cc59e-0bce-427a-bd1f-6ef674dba8e2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646/attribute/acb36caa-3199-4ea6-a7cf-484ee0429a32"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "32eec6c4-d325-483a-b874-fa496f9c221c",
            "display": "TLv1_01",
            "name": "TLv1_01",
            "description": null,
            "address1": null,
            "address2": "TLv1_01",
            "cityVillage": null,
            "stateProvince": "Lop Buri",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Tha Luang",
            "address3": "Tha Luang Village 1",
            "address4": "Tha Luang",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
              "display": "Tha Luang Village 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "38fa20aa-150c-4b79-87de-a10512f5398e",
                "display": "mspray_location_id: 450fc15b-5bd2-468a-927a-49cb10d3bcac",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c/attribute/38fa20aa-150c-4b79-87de-a10512f5398e"
                  }
                ]
              },
              {
                "uuid": "e4af12d3-5603-41b7-ab16-278e7e4d959e",
                "display": "team_id: 09962f7c-8dab-4dee-96e2-354382aec76a",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c/attribute/e4af12d3-5603-41b7-ab16-278e7e4d959e"
                  }
                ]
              },
              {
                "uuid": "a51ce280-ee7d-4d12-b283-f4ee2ca4c6df",
                "display": "campaign_id: FI_A1_TLv1_01",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c/attribute/a51ce280-ee7d-4d12-b283-f4ee2ca4c6df"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "de28c78d-3111-4266-957b-c731a3330c1d",
            "display": "TLv1_02",
            "name": "TLv1_02",
            "description": null,
            "address1": null,
            "address2": "TLv1_02",
            "cityVillage": null,
            "stateProvince": "Lop Buri",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Tha Luang",
            "address3": "Tha Luang Village 1",
            "address4": "Tha Luang",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
              "display": "Tha Luang Village 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "408c62f8-8984-47fe-9f2d-bfc159fdc736",
                "display": "mspray_location_id: 304cbcd4-0850-404a-a8b1-486b02f7b84d",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d/attribute/408c62f8-8984-47fe-9f2d-bfc159fdc736"
                  }
                ]
              },
              {
                "uuid": "1a24a2e6-7b06-45de-bc96-f528c26c5ecf",
                "display": "team_id: 09962f7c-8dab-4dee-96e2-354382aec76a",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d/attribute/1a24a2e6-7b06-45de-bc96-f528c26c5ecf"
                  }
                ]
              },
              {
                "uuid": "b4ea360b-6bfc-4144-8e53-4bf98473c6bd",
                "display": "campaign_id: FI_A1_TLv1_02",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d/attribute/b4ea360b-6bfc-4144-8e53-4bf98473c6bd"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-04-10T04:21:57.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "campaign_id: 10f9e9fa-ce34-4b27-a961-72fab5206ab6",
            "uuid": "7703cb1b-78f6-4cf1-9e2d-f9a78554996c",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "10f9e9fa-ce34-4b27-a961-72fab5206ab6",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/7703cb1b-78f6-4cf1-9e2d-f9a78554996c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/7703cb1b-78f6-4cf1-9e2d-f9a78554996c?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "mspray_location_id: dad42fa6-b9b8-4658-bf25-bfa7ab5b16ae",
            "uuid": "e4ed2565-bd57-4ade-9207-226128c6f90a",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "dad42fa6-b9b8-4658-bf25-bfa7ab5b16ae",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e4ed2565-bd57-4ade-9207-226128c6f90a"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e4ed2565-bd57-4ade-9207-226128c6f90a?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: IRS_2019_Tha_Luang_Canton",
            "uuid": "e03b3fd1-b879-40aa-9330-780472feec57",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_Tha_Luang_Canton",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e03b3fd1-b879-40aa-9330-780472feec57"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e03b3fd1-b879-40aa-9330-780472feec57?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: IRS_2019_Tha_Luang_Canton,FI_A1_TLv1_01,FI_A1_TLv1_02",
            "uuid": "233a4a26-14f9-4e02-951e-16e01cb45fbe",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_Tha_Luang_Canton,FI_A1_TLv1_01,FI_A1_TLv1_02",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/233a4a26-14f9-4e02-951e-16e01cb45fbe"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/233a4a26-14f9-4e02-951e-16e01cb45fbe?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-04-10T04:42:33.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/09962f7c-8dab-4dee-96e2-354382aec76a"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "ThanLuangVillage2",
      "uuid": "ff9b3f2f-528f-44d7-8985-2e64f554e7ed",
      "teamName": "ThanLuangVillage2",
      "teamIdentifier": "TLv2",
      "supervisor": "ThaLuang Village2",
      "supervisorUuid": "ec4fbc2f-e4dd-4b32-946b-35984ba6ae45",
      "supervisorTeam": "ThanLuangVillage2",
      "supervisorTeamUuid": "ff9b3f2f-528f-44d7-8985-2e64f554e7ed",
      "supervisorIdentifier": "tlv2",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
        "display": "Tha Luang Village 2",
        "name": "Tha Luang Village 2",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Lop Buri",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Tha Luang",
        "address3": "Tha Luang Village 2",
        "address4": "Tha Luang",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646",
          "display": "Tha Luang Canton",
          "name": "Tha Luang Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Lop Buri",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Tha Luang",
          "address3": null,
          "address4": "Tha Luang",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "52f44774-79ad-496d-9b78-1c596db84774",
            "display": "Tha Luang District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52f44774-79ad-496d-9b78-1c596db84774"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
              "display": "Tha Luang Village 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
                }
              ]
            },
            {
              "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
              "display": "Tha Luang Village 2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
                }
              ]
            },
            {
              "uuid": "53abb5fe-2295-4de6-9a6c-4713813ad7d5",
              "display": "Two Two One Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5"
                }
              ]
            },
            {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "acb36caa-3199-4ea6-a7cf-484ee0429a32",
              "display": "mspray_location_id: 872cc59e-0bce-427a-bd1f-6ef674dba8e2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646/attribute/acb36caa-3199-4ea6-a7cf-484ee0429a32"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "518e6079-e086-4fea-96b7-1db12a11c630",
            "display": "TLv2_01",
            "name": "TLv2_01",
            "description": null,
            "address1": null,
            "address2": "TLv2_01",
            "cityVillage": null,
            "stateProvince": "Lop Buri",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Tha Luang",
            "address3": "Tha Luang Village 2",
            "address4": "Tha Luang",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
              "display": "Tha Luang Village 2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "d107821c-a81c-46a7-83f4-597749486120",
                "display": "mspray_location_id: d6396aeb-436d-4b78-91bd-7387ec2e8d5c",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630/attribute/d107821c-a81c-46a7-83f4-597749486120"
                  }
                ]
              },
              {
                "uuid": "2f9a45cd-80d1-4b55-84b6-371df9c5ab4d",
                "display": "campaign_id: FI_A1_TLv2_01",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630/attribute/2f9a45cd-80d1-4b55-84b6-371df9c5ab4d"
                  }
                ]
              },
              {
                "uuid": "f7121627-2139-44eb-ab49-f373eb6633ee",
                "display": "team_id: ff-1b3f2f-528f-44d7-8985-2e64f554e7ed",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630/attribute/f7121627-2139-44eb-ab49-f373eb6633ee"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "bfdd6f41-4c8f-45ef-971a-d7517444eb7e",
            "display": "TLv2_02",
            "name": "TLv2_02",
            "description": null,
            "address1": null,
            "address2": "TLv2_02",
            "cityVillage": null,
            "stateProvince": "Lop Buri",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Tha Luang",
            "address3": "Tha Luang Village 2",
            "address4": "Tha Luang",
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
              "display": "Tha Luang Village 2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "081cfb98-c30a-4926-a5d3-0061686c1265",
                "display": "mspray_location_id: b7c77855-d929-4d25-ad87-ddce827dc210",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e/attribute/081cfb98-c30a-4926-a5d3-0061686c1265"
                  }
                ]
              },
              {
                "uuid": "d5b689d3-38ec-4689-a1fd-316823240a44",
                "display": "campaign_id: FI_A1_TLv2_02",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e/attribute/d5b689d3-38ec-4689-a1fd-316823240a44"
                  }
                ]
              },
              {
                "uuid": "d2219b5e-fa76-495a-a71d-8bda0031188d",
                "display": "team_id: ff-1b3f2f-528f-44d7-8985-2e64f554e7ed",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e/attribute/d2219b5e-fa76-495a-a71d-8bda0031188d"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-04-10T04:22:48.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: d56a4344-a7d0-4285-9fe4-c64fd7fc27d4",
            "uuid": "f2ab111d-dbad-4440-b930-2c95e145fc42",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "d56a4344-a7d0-4285-9fe4-c64fd7fc27d4",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/f2ab111d-dbad-4440-b930-2c95e145fc42"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/f2ab111d-dbad-4440-b930-2c95e145fc42?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "campaign_id: IRS_2019_Tha_Luang_Canton",
            "uuid": "739715f7-53ac-4319-a073-147371d17428",
            "attributeType": {
              "uuid": "9b6220e5-e87a-4192-a659-b1e70fb6a22a",
              "display": "campaign_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/9b6220e5-e87a-4192-a659-b1e70fb6a22a"
                }
              ]
            },
            "value": "IRS_2019_Tha_Luang_Canton",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/739715f7-53ac-4319-a073-147371d17428"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/739715f7-53ac-4319-a073-147371d17428?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-04-10T04:42:51.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/ff9b3f2f-528f-44d7-8985-2e64f554e7ed"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "KoKutFocus1",
      "uuid": "d43168fc-4b80-4883-8595-5958022dcef0",
      "teamName": "KoKutFocus1",
      "teamIdentifier": "kkf1",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "f00282d8-b55b-4005-b113-a0a9265f4684",
        "display": "KLONG NAM SAI - Ko Kut Focus 1",
        "name": "KLONG NAM SAI - Ko Kut Focus 1",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Trat",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Ko Kut",
        "address3": null,
        "address4": "Ko Kut 1",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
            "display": "Operational Area",
            "name": "Operational Area",
            "description": "This is an operational area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123",
          "display": "Ko Kut Village",
          "name": "Ko Kut Village",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Trat",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Ko Kut District",
          "address3": null,
          "address4": "Ko Kut Village",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
              "display": "Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "022daf4c-edb3-4251-8485-51c432676378",
            "display": "Ko Kut Canton",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/022daf4c-edb3-4251-8485-51c432676378"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "68febcd4-94f4-4a06-a199-7a747a19de41",
              "display": "AO-SALAD-PHA-Ko-Kut-Focus-2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41"
                }
              ]
            },
            {
              "uuid": "f00282d8-b55b-4005-b113-a0a9265f4684",
              "display": "KLONG NAM SAI - Ko Kut Focus 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "6332c5dc-f992-4a51-b88e-56ac5b8572e8",
              "display": "mspray_location_id: de35a53a-d266-45a5-901a-8bd47c2caa3d",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123/attribute/6332c5dc-f992-4a51-b88e-56ac5b8572e8"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-05-21T23:15:07.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-06-03T13:54:33.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: 5f47b1b1-9910-4877-a4d4-63d3af864616",
            "uuid": "d8821b67-7d70-4fa1-8cb9-74a9d9a6a718",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "5f47b1b1-9910-4877-a4d4-63d3af864616",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/d8821b67-7d70-4fa1-8cb9-74a9d9a6a718"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/d8821b67-7d70-4fa1-8cb9-74a9d9a6a718?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: d43168fc-4b80-4883-8595-5958022dcef0",
            "uuid": "a657037a-90b9-4341-9647-20d6386319ad",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "d43168fc-4b80-4883-8595-5958022dcef0",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/a657037a-90b9-4341-9647-20d6386319ad"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/a657037a-90b9-4341-9647-20d6386319ad?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-05-22T00:54:50.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/d43168fc-4b80-4883-8595-5958022dcef0"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "KoKutFocus2",
      "uuid": "7421173d-4863-4409-8759-0db3135dda80",
      "teamName": "KoKutFocus2",
      "teamIdentifier": "kkf2",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "68febcd4-94f4-4a06-a199-7a747a19de41",
        "display": "AO-SALAD-PHA-Ko-Kut-Focus-2",
        "name": "AO-SALAD-PHA-Ko-Kut-Focus-2",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Trat",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Ko Kut",
        "address3": null,
        "address4": "AO SALAD PHA Focus 2",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
            "display": "Operational Area",
            "name": "Operational Area",
            "description": "This is an operational area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123",
          "display": "Ko Kut Village",
          "name": "Ko Kut Village",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Trat",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Ko Kut District",
          "address3": null,
          "address4": "Ko Kut Village",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
              "display": "Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "022daf4c-edb3-4251-8485-51c432676378",
            "display": "Ko Kut Canton",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/022daf4c-edb3-4251-8485-51c432676378"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "68febcd4-94f4-4a06-a199-7a747a19de41",
              "display": "AO-SALAD-PHA-Ko-Kut-Focus-2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41"
                }
              ]
            },
            {
              "uuid": "f00282d8-b55b-4005-b113-a0a9265f4684",
              "display": "KLONG NAM SAI - Ko Kut Focus 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "6332c5dc-f992-4a51-b88e-56ac5b8572e8",
              "display": "mspray_location_id: de35a53a-d266-45a5-901a-8bd47c2caa3d",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123/attribute/6332c5dc-f992-4a51-b88e-56ac5b8572e8"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-05-21T23:15:35.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-05-28T11:01:50.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: d63c5209-fb63-4ac9-a845-fe0c80c286d4",
            "uuid": "93fc07d0-2251-4de9-b3d0-d31023970d29",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "d63c5209-fb63-4ac9-a845-fe0c80c286d4",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/93fc07d0-2251-4de9-b3d0-d31023970d29"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/93fc07d0-2251-4de9-b3d0-d31023970d29?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: 7421173d-4863-4409-8759-0db3135dda80",
            "uuid": "83f93e27-f9ad-4a9e-ae17-a330ac3a15a3",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "7421173d-4863-4409-8759-0db3135dda80",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/83f93e27-f9ad-4a9e-ae17-a330ac3a15a3"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/83f93e27-f9ad-4a9e-ae17-a330ac3a15a3?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-05-22T00:55:04.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/7421173d-4863-4409-8759-0db3135dda80"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Takang Village",
      "uuid": "925cfd01-218c-467f-8e64-494a34c51654",
      "teamName": "Takang Village",
      "teamIdentifier": "takangVillage",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "34c0ec49-f8c7-404e-8c0e-e390d9081d28",
        "display": "Ban Taeng Village",
        "name": "Ban Taeng Village",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Trat",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Mueng Trat District",
        "address3": null,
        "address4": "Takang Canton",
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "375f1ffe-26ef-4fde-964f-2d555c26c03f",
          "display": "Takang Canton",
          "name": "Takang Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Trat",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Mueng Trat District",
          "address3": null,
          "address4": "Takang Canton",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "c79b973a-42e5-4d6b-879a-c158709c6876",
            "display": "Mueng Trat District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c79b973a-42e5-4d6b-879a-c158709c6876"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "34c0ec49-f8c7-404e-8c0e-e390d9081d28",
              "display": "Ban Taeng Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "3d5c7047-7cfe-4a1d-a4c7-8ea8d8cf016c",
              "display": "mspray_location_id: f8e0ed89-ce9c-4739-85f2-01cea2ffc37f",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/375f1ffe-26ef-4fde-964f-2d555c26c03f/attribute/3d5c7047-7cfe-4a1d-a4c7-8ea8d8cf016c"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/375f1ffe-26ef-4fde-964f-2d555c26c03f"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/375f1ffe-26ef-4fde-964f-2d555c26c03f?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "08c59ca6-c39a-4575-9cfe-30ae54d6d154",
            "display": "Ban Chamrak Mu",
            "name": "Ban Chamrak Mu",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Trat",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Mueng Trat District",
            "address3": null,
            "address4": "Takang Canton",
            "address5": "Ban Taeng Village",
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "34c0ec49-f8c7-404e-8c0e-e390d9081d28",
              "display": "Ban Taeng Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "4631145f-20d2-42e2-a29a-110748e8711c",
                "display": "mspray_location_id: 674b66eb-b2aa-49b0-8635-2df5b0490aa8",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/08c59ca6-c39a-4575-9cfe-30ae54d6d154/attribute/4631145f-20d2-42e2-a29a-110748e8711c"
                  }
                ]
              },
              {
                "uuid": "8b3dabda-b0ad-4327-9d3c-cd56fd75adec",
                "display": "team_id: 925cfd01-218c-467f-8e64-494a34c51654",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/08c59ca6-c39a-4575-9cfe-30ae54d6d154/attribute/8b3dabda-b0ad-4327-9d3c-cd56fd75adec"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/08c59ca6-c39a-4575-9cfe-30ae54d6d154"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/08c59ca6-c39a-4575-9cfe-30ae54d6d154?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-06-16T23:43:33.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 3a48eba7-f5d4-47fe-a905-abd84391d9d1",
            "uuid": "47c4ed35-f0de-4f96-a3e5-a8018d1e8593",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3a48eba7-f5d4-47fe-a905-abd84391d9d1",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28/attribute/47c4ed35-f0de-4f96-a3e5-a8018d1e8593"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28/attribute/47c4ed35-f0de-4f96-a3e5-a8018d1e8593?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-06-17T05:49:47.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/925cfd01-218c-467f-8e64-494a34c51654"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Laem Klat Village",
      "uuid": "5ed2cb8d-8400-4061-a037-511d29557e99",
      "teamName": "Laem Klat Village",
      "teamIdentifier": "LaemKlatVillage",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "d2dcfcfd-d2f6-4d82-b098-bc37f3f23470",
        "display": "Laem Klat Village",
        "name": "Laem Klat Village",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Trat",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Mueng Trat District",
        "address3": null,
        "address4": "Laem Klat Canton",
        "address5": "Laem Klat Village",
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "55b3fe53-d0ee-40ff-b6a9-fc77847c9382",
          "display": "Laem Klat Canton",
          "name": "Laem Klat Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Trat",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Mueng Trat District",
          "address3": null,
          "address4": "Laem Klat Canton",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "c79b973a-42e5-4d6b-879a-c158709c6876",
            "display": "Mueng Trat District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c79b973a-42e5-4d6b-879a-c158709c6876"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "d2dcfcfd-d2f6-4d82-b098-bc37f3f23470",
              "display": "Laem Klat Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470"
                }
              ]
            },
            {
              "uuid": "f2d06e85-2414-4272-93c7-ea24ef45a0af",
              "display": "แหลมกลัด",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "4f2f9fcf-c0de-4780-b80a-a1e17da736c2",
              "display": "mspray_location_id: 6737a27a-7704-4747-99cf-b2a1d3e61bcb",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382/attribute/4f2f9fcf-c0de-4780-b80a-a1e17da736c2"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "6f209f8e-f3dd-415d-9212-b09b2ea91e8c",
            "display": "Ban Tha Sen Mu 8",
            "name": "Ban Tha Sen Mu 8",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Trat",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Mueng Trat District",
            "address3": "Man Tha Sen Mu 8",
            "address4": "Laem Klat Canton",
            "address5": "Laem Klat Village",
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "d2dcfcfd-d2f6-4d82-b098-bc37f3f23470",
              "display": "Laem Klat Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "3d0ead55-dc59-4b3e-baa9-bec79628dfb4",
                "display": "mspray_location_id: 0d521fed-0fc0-432d-ac5d-6b6c2f5669d6",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6f209f8e-f3dd-415d-9212-b09b2ea91e8c/attribute/3d0ead55-dc59-4b3e-baa9-bec79628dfb4"
                  }
                ]
              },
              {
                "uuid": "c7c3b15d-7327-40ef-a972-622940512b4a",
                "display": "team_id: 5ed2cb8d-8400-4061-a037-511d29557e99",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6f209f8e-f3dd-415d-9212-b09b2ea91e8c/attribute/c7c3b15d-7327-40ef-a972-622940512b4a"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6f209f8e-f3dd-415d-9212-b09b2ea91e8c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6f209f8e-f3dd-415d-9212-b09b2ea91e8c?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-06-16T23:48:23.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 3eaf2485-7c21-4d76-b153-79b9071f0e61",
            "uuid": "64f51b27-c912-4fa1-9fb3-0ef3b8f8491f",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "3eaf2485-7c21-4d76-b153-79b9071f0e61",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470/attribute/64f51b27-c912-4fa1-9fb3-0ef3b8f8491f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470/attribute/64f51b27-c912-4fa1-9fb3-0ef3b8f8491f?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-06-17T05:50:17.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/5ed2cb8d-8400-4061-a037-511d29557e99"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Ubon Na Chaluai",
      "uuid": "fd8db45f-f73b-483c-a0c8-80926a27f1b6",
      "teamName": "Ubon Na Chaluai",
      "teamIdentifier": "chaluai",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "fa69544e-da48-428c-ac73-123a4525f1b3",
        "display": "Ban Khok Yai Mu 5 Village",
        "name": "Ban Khok Yai Mu 5 Village",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Ubon Ratchathani",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Na Chaluai District",
        "address3": null,
        "address4": "Na Chaluai Canton",
        "address5": "Ban Khok Yai Mu 5 Village",
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "7c624a18-1aa2-4171-8878-868bd750ac1e",
          "display": "Na Chaluai Canton",
          "name": "Na Chaluai Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Ubon Ratchathani",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Na Chaluai District",
          "address3": null,
          "address4": "Na Chaluai Canton",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "886f9ff5-b2b3-48eb-9a38-e1061e054589",
            "display": "Na Chaluai District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/886f9ff5-b2b3-48eb-9a38-e1061e054589"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "fa69544e-da48-428c-ac73-123a4525f1b3",
              "display": "Ban Khok Yai Mu 5 Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "505825fb-bf3d-4ad7-97cc-1e22fbcfc720",
              "display": "mspray_location_id: 6537c754-4aaf-499a-8f7c-7b99c0f2aa39",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7c624a18-1aa2-4171-8878-868bd750ac1e/attribute/505825fb-bf3d-4ad7-97cc-1e22fbcfc720"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7c624a18-1aa2-4171-8878-868bd750ac1e"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7c624a18-1aa2-4171-8878-868bd750ac1e?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "de53fdf1-8193-4029-9d95-1753cdeaa0e7",
            "display": "Ban Khok Yai Mu 5 Focus 1",
            "name": "Ban Khok Yai Mu 5 Focus 1",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": "Ubon Ratchathani",
            "country": "Thailand",
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": "Na Chaluai District",
            "address3": null,
            "address4": "Na Chaluai Canton",
            "address5": "Ban Khok Yai Mu 5 Focus 1",
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "fa69544e-da48-428c-ac73-123a4525f1b3",
              "display": "Ban Khok Yai Mu 5 Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "acb88716-0f7a-40df-8486-1030cf51a7fd",
                "display": "mspray_location_id: fa531b26-3518-46ff-a220-cbafee181d13",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de53fdf1-8193-4029-9d95-1753cdeaa0e7/attribute/acb88716-0f7a-40df-8486-1030cf51a7fd"
                  }
                ]
              },
              {
                "uuid": "8f750948-1cc1-45ec-9a70-6bda422129b6",
                "display": "team_id: fd8db45f-f73b-483c-a0c8-80926a27f1b6",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de53fdf1-8193-4029-9d95-1753cdeaa0e7/attribute/8f750948-1cc1-45ec-9a70-6bda422129b6"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de53fdf1-8193-4029-9d95-1753cdeaa0e7"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de53fdf1-8193-4029-9d95-1753cdeaa0e7?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-06-23T21:05:33.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-06-25T00:35:07.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: 89040cb4-c01c-46ce-a3a5-88efa9f7f036",
            "uuid": "47d722d5-2a5b-40de-b290-3c510d027efe",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "89040cb4-c01c-46ce-a3a5-88efa9f7f036",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/47d722d5-2a5b-40de-b290-3c510d027efe"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/47d722d5-2a5b-40de-b290-3c510d027efe?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: fd8db45f-f73b-483c-a0c8-80926a27f1b6",
            "uuid": "1f291c69-f11f-43e3-b0fe-7c5ddb6b62aa",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "fd8db45f-f73b-483c-a0c8-80926a27f1b6",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/1f291c69-f11f-43e3-b0fe-7c5ddb6b62aa"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/1f291c69-f11f-43e3-b0fe-7c5ddb6b62aa?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-06-23T22:36:50.000+0200",
        "changedBy": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateChanged": "2019-06-25T00:50:39.000+0200"
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/fd8db45f-f73b-483c-a0c8-80926a27f1b6"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Kham Bak",
      "uuid": "427dce82-8db2-4cc8-9d3d-28d5fc4df927",
      "teamName": "Kham Bak",
      "teamIdentifier": "khambak",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "b8115047-e267-46ee-b0a7-5e92a99838d0",
        "display": "Ban Kham bak Focus 1",
        "name": "Ban Kham bak Focus 1",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": "Ubon Ratchathani",
        "country": "Thailand",
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": "Buntharik District",
        "address3": "Ban Kham bak Focus 1",
        "address4": "Huai Kha",
        "address5": "Khambak Village",
        "address6": null,
        "tags": [
          {
            "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
            "display": "Operational Area",
            "name": "Operational Area",
            "description": "This is an operational area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "1047b147-8e88-4772-bc7d-be2ef96a58ea",
          "display": "Ban Kham bak Village",
          "name": "Ban Kham bak Village",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Ubon Ratchathani",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Buntharik District",
          "address3": null,
          "address4": "Huai Kha",
          "address5": "Ban Kham bak Village",
          "address6": null,
          "tags": [
            {
              "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
              "display": "Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "9d11ad88-e9e7-43eb-910d-9a17b510cf99",
            "display": "Huai Kha",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9d11ad88-e9e7-43eb-910d-9a17b510cf99"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "b8115047-e267-46ee-b0a7-5e92a99838d0",
              "display": "Ban Kham bak Focus 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "5eee4cdd-6399-492d-87ed-fe00a6d6f20f",
              "display": "mspray_location_id: 62b2f313-da19-4cf2-a73e-b338615f357d",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1047b147-8e88-4772-bc7d-be2ef96a58ea/attribute/5eee4cdd-6399-492d-87ed-fe00a6d6f20f"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1047b147-8e88-4772-bc7d-be2ef96a58ea"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1047b147-8e88-4772-bc7d-be2ef96a58ea?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-06-24T20:33:49.000+0200",
          "changedBy": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateChanged": "2019-06-25T00:30:54.000+0200"
        },
        "attributes": [
          {
            "display": "mspray_location_id: d4b0c760-0711-40bc-b417-9c810184131c",
            "uuid": "3ea586af-7977-4a3f-b21e-043fbd62d7b8",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "d4b0c760-0711-40bc-b417-9c810184131c",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/3ea586af-7977-4a3f-b21e-043fbd62d7b8"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/3ea586af-7977-4a3f-b21e-043fbd62d7b8?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: 427dce82-8db2-4cc8-9d3d-28d5fc4df927",
            "uuid": "0f34570d-9d25-447a-9b96-916d1c730487",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "427dce82-8db2-4cc8-9d3d-28d5fc4df927",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/0f34570d-9d25-447a-9b96-916d1c730487"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/0f34570d-9d25-447a-9b96-916d1c730487?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: fd8db45f-f73b-483c-a0c8-80926a27f1b6",
            "uuid": "851d1fff-cac7-4e95-b67d-36d91f25cfdc",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "fd8db45f-f73b-483c-a0c8-80926a27f1b6",
            "voided": true,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/851d1fff-cac7-4e95-b67d-36d91f25cfdc"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/851d1fff-cac7-4e95-b67d-36d91f25cfdc?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-06-25T00:53:23.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/427dce82-8db2-4cc8-9d3d-28d5fc4df927"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "DupLaemKlatVillage",
      "uuid": "abacad2b-b3ed-490c-a2b6-541923cd0c71",
      "teamName": "DupLaemKlatVillage",
      "teamIdentifier": "DupLaemKlatVillage",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "f2d06e85-2414-4272-93c7-ea24ef45a0af",
        "display": "แหลมกลัด",
        "name": "แหลมกลัด",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "55b3fe53-d0ee-40ff-b6a9-fc77847c9382",
          "display": "Laem Klat Canton",
          "name": "Laem Klat Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Trat",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Mueng Trat District",
          "address3": null,
          "address4": "Laem Klat Canton",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "c79b973a-42e5-4d6b-879a-c158709c6876",
            "display": "Mueng Trat District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c79b973a-42e5-4d6b-879a-c158709c6876"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "d2dcfcfd-d2f6-4d82-b098-bc37f3f23470",
              "display": "Laem Klat Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470"
                }
              ]
            },
            {
              "uuid": "f2d06e85-2414-4272-93c7-ea24ef45a0af",
              "display": "แหลมกลัด",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "4f2f9fcf-c0de-4780-b80a-a1e17da736c2",
              "display": "mspray_location_id: 6737a27a-7704-4747-99cf-b2a1d3e61bcb",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382/attribute/4f2f9fcf-c0de-4780-b80a-a1e17da736c2"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "6616ce9d-5b87-4ffe-a453-0768615ec91d",
            "display": "หมุ่ที่ 8",
            "name": "หมุ่ที่ 8",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "f2d06e85-2414-4272-93c7-ea24ef45a0af",
              "display": "แหลมกลัด",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "16acd824-7d8b-4249-b50d-056fb6eb8dfa",
                "display": "mspray_location_id: 786564f9-51f1-49b3-8090-a753846d494a",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6616ce9d-5b87-4ffe-a453-0768615ec91d/attribute/16acd824-7d8b-4249-b50d-056fb6eb8dfa"
                  }
                ]
              },
              {
                "uuid": "c69b8051-a3a5-46b8-9b41-3b1295bcef77",
                "display": "team_id: abacad2b-b3ed-490c-a2b6-541923cd0c71",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6616ce9d-5b87-4ffe-a453-0768615ec91d/attribute/c69b8051-a3a5-46b8-9b41-3b1295bcef77"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6616ce9d-5b87-4ffe-a453-0768615ec91d"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6616ce9d-5b87-4ffe-a453-0768615ec91d?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-07-02T21:51:34.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: caefbbf0-64cd-4427-a3b1-00835477ba8d",
            "uuid": "e3aa8dcd-6ce4-48a6-ae45-ef5b90ac9409",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "caefbbf0-64cd-4427-a3b1-00835477ba8d",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af/attribute/e3aa8dcd-6ce4-48a6-ae45-ef5b90ac9409"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af/attribute/e3aa8dcd-6ce4-48a6-ae45-ef5b90ac9409?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-07-02T21:57:35.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/abacad2b-b3ed-490c-a2b6-541923cd0c71"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "LiamKlat2",
      "uuid": "080c995e-5e5a-46c8-b9cb-497a82722803",
      "teamName": "LiamKlat2",
      "teamIdentifier": "LiamKlat2",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "2b6924ee-4dfd-464b-9002-25df18dd7e6c",
        "display": "Laem Klat Moo 8",
        "name": "Laem Klat Moo 8",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "ce6e7a56-0e30-44a2-a97e-c08d4acf7289",
          "display": "Laem Klat Canton 2",
          "name": "Laem Klat Canton 2",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": null,
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": null,
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "ecdc4bbc-4d35-4e54-8a8a-6b8f8559dbdd",
            "display": "Mueng Trat District 2",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdc4bbc-4d35-4e54-8a8a-6b8f8559dbdd"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "2b6924ee-4dfd-464b-9002-25df18dd7e6c",
              "display": "Laem Klat Moo 8",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "b7c06945-6661-40c1-99c0-ae2a025d841d",
              "display": "mspray_location_id: 735a94f9-6ed2-4bcd-b242-8c2b5f714bee",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce6e7a56-0e30-44a2-a97e-c08d4acf7289/attribute/b7c06945-6661-40c1-99c0-ae2a025d841d"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce6e7a56-0e30-44a2-a97e-c08d4acf7289"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce6e7a56-0e30-44a2-a97e-c08d4acf7289?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "9e96ec17-3337-4b25-a9a4-0d4b804ade89",
            "display": "Tha Sen 8",
            "name": "Tha Sen 8",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "2b6924ee-4dfd-464b-9002-25df18dd7e6c",
              "display": "Laem Klat Moo 8",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "315c026f-d8d4-40f3-a1af-d22c145ccc2b",
                "display": "mspray_location_id: 4550a8ab-b310-4881-8c76-1b6a817ea63a",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9e96ec17-3337-4b25-a9a4-0d4b804ade89/attribute/315c026f-d8d4-40f3-a1af-d22c145ccc2b"
                  }
                ]
              },
              {
                "uuid": "bcfa8808-d89b-4d0f-abe6-58600b097b36",
                "display": "team_id: 080c995e-5e5a-46c8-b9cb-497a82722803",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9e96ec17-3337-4b25-a9a4-0d4b804ade89/attribute/bcfa8808-d89b-4d0f-abe6-58600b097b36"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9e96ec17-3337-4b25-a9a4-0d4b804ade89"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9e96ec17-3337-4b25-a9a4-0d4b804ade89?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-07-03T04:00:00.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: a14c6253-2d3d-4bcc-8c49-35f9e44c66e1",
            "uuid": "d9b6e6f3-e71e-4d2d-bd85-8f15284d8e18",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "a14c6253-2d3d-4bcc-8c49-35f9e44c66e1",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c/attribute/d9b6e6f3-e71e-4d2d-bd85-8f15284d8e18"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c/attribute/d9b6e6f3-e71e-4d2d-bd85-8f15284d8e18?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-07-03T04:06:15.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/080c995e-5e5a-46c8-b9cb-497a82722803"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "TwoDotTwoDotOne",
      "uuid": "7496604b-b4b9-4b0c-a68c-9a47fc25ad4e",
      "teamName": "TwoDotTwoDotOne",
      "teamIdentifier": "TwoDotTwoDotOne",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "4a4f4bc5-6e5c-493d-81f3-baf6943f605d",
        "display": "TwoTwoOne_01",
        "name": "TwoTwoOne_01",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
            "display": "Operational Area",
            "name": "Operational Area",
            "description": "This is an operational area",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "53abb5fe-2295-4de6-9a6c-4713813ad7d5",
          "display": "Two Two One Release Village",
          "name": "Two Two One Release Village",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": null,
          "country": null,
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": null,
          "address3": null,
          "address4": null,
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
              "display": "Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646",
            "display": "Tha Luang Canton",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "4a4f4bc5-6e5c-493d-81f3-baf6943f605d",
              "display": "TwoTwoOne_01",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "a868f055-0fdc-43c0-b4a9-5309656bc03f",
              "display": "mspray_location_id: cacd641d-11b4-4038-89f8-8e3a5918fa39",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5/attribute/a868f055-0fdc-43c0-b4a9-5309656bc03f"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-07-10T23:01:47.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 35968df5-f335-44ae-8ae5-25804caa2d86",
            "uuid": "4b451622-beb5-48cd-a009-d3bb98e324be",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "35968df5-f335-44ae-8ae5-25804caa2d86",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/4b451622-beb5-48cd-a009-d3bb98e324be"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/4b451622-beb5-48cd-a009-d3bb98e324be?v=full"
              }
            ],
            "resourceVersion": "1.9"
          },
          {
            "display": "team_id: 7496604b-b4b9-4b0c-a68c-9a47fc25ad4e",
            "uuid": "3c4986dc-1243-45e6-af9d-2c562b8c4f71",
            "attributeType": {
              "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc",
              "display": "team_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/802e4109-56d0-407f-adcb-ea3a082840fc"
                }
              ]
            },
            "value": "7496604b-b4b9-4b0c-a68c-9a47fc25ad4e",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/3c4986dc-1243-45e6-af9d-2c562b8c4f71"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/3c4986dc-1243-45e6-af9d-2c562b8c4f71?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-07-10T23:23:45.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/7496604b-b4b9-4b0c-a68c-9a47fc25ad4e"
        }
      ],
      "resourceVersion": "1.8"
    },
    {
      "display": "Two Two Two Release",
      "uuid": "055059f5-bbc2-489b-a573-56558556b5e0",
      "teamName": "Two Two Two Release",
      "teamIdentifier": "TwoTwoTwo",
      "supervisor": "",
      "supervisorUuid": "",
      "supervisorTeam": "",
      "supervisorTeamUuid": "",
      "supervisorIdentifier": "",
      "voided": false,
      "voidReason": null,
      "location": {
        "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
        "display": "Two Two Two Release Village",
        "name": "Two Two Two Release Village",
        "description": null,
        "address1": null,
        "address2": null,
        "cityVillage": null,
        "stateProvince": null,
        "country": null,
        "postalCode": null,
        "latitude": null,
        "longitude": null,
        "countyDistrict": null,
        "address3": null,
        "address4": null,
        "address5": null,
        "address6": null,
        "tags": [
          {
            "uuid": "55a54fc4-a6f2-4e14-9132-815687952804",
            "display": "Village",
            "name": "Village",
            "description": "This is geographic level 5 in Thailand",
            "retired": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804?v=full"
              }
            ],
            "resourceVersion": "1.8"
          }
        ],
        "parentLocation": {
          "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646",
          "display": "Tha Luang Canton",
          "name": "Tha Luang Canton",
          "description": null,
          "address1": null,
          "address2": null,
          "cityVillage": null,
          "stateProvince": "Lop Buri",
          "country": "Thailand",
          "postalCode": null,
          "latitude": null,
          "longitude": null,
          "countyDistrict": "Tha Luang",
          "address3": null,
          "address4": "Tha Luang",
          "address5": null,
          "address6": null,
          "tags": [
            {
              "uuid": "de2ec1a0-1609-4071-af32-a91752956e95",
              "display": "Canton",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/de2ec1a0-1609-4071-af32-a91752956e95"
                }
              ]
            }
          ],
          "parentLocation": {
            "uuid": "52f44774-79ad-496d-9b78-1c596db84774",
            "display": "Tha Luang District",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52f44774-79ad-496d-9b78-1c596db84774"
              }
            ]
          },
          "childLocations": [
            {
              "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6",
              "display": "Tha Luang Village 1",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6"
                }
              ]
            },
            {
              "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76",
              "display": "Tha Luang Village 2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76"
                }
              ]
            },
            {
              "uuid": "53abb5fe-2295-4de6-9a6c-4713813ad7d5",
              "display": "Two Two One Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5"
                }
              ]
            },
            {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            }
          ],
          "retired": false,
          "attributes": [
            {
              "uuid": "acb36caa-3199-4ea6-a7cf-484ee0429a32",
              "display": "mspray_location_id: 872cc59e-0bce-427a-bd1f-6ef674dba8e2",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646/attribute/acb36caa-3199-4ea6-a7cf-484ee0429a32"
                }
              ]
            }
          ],
          "address7": null,
          "address8": null,
          "address9": null,
          "address10": null,
          "address11": null,
          "address12": null,
          "address13": null,
          "address14": null,
          "address15": null,
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646"
            },
            {
              "rel": "full",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646?v=full"
            }
          ],
          "resourceVersion": "2.0"
        },
        "childLocations": [
          {
            "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5",
            "display": "TwoTwoTwo_01",
            "name": "TwoTwoTwo_01",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "5ecc27f8-5529-4958-8e3d-c08f4608af67",
                "display": "mspray_location_id: 14e2a7a7-fd08-4bed-8cf8-1eeaed303eda",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/5ecc27f8-5529-4958-8e3d-c08f4608af67"
                  }
                ]
              },
              {
                "uuid": "faba93d1-691e-45ce-8612-4a22e2a251dd",
                "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/faba93d1-691e-45ce-8612-4a22e2a251dd"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "6a537560-fa62-44a7-aaca-5fc1b5c77c54",
            "display": "TwoTwoTwo_02",
            "name": "TwoTwoTwo_02",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "ca26335f-c8a9-481c-bd72-57a6f1e36579",
                "display": "mspray_location_id: 1bb3c217-af1c-4749-b3df-4f6108582e3c",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a537560-fa62-44a7-aaca-5fc1b5c77c54/attribute/ca26335f-c8a9-481c-bd72-57a6f1e36579"
                  }
                ]
              },
              {
                "uuid": "9369538e-c5e3-44bc-bf93-984b9ce63b34",
                "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a537560-fa62-44a7-aaca-5fc1b5c77c54/attribute/9369538e-c5e3-44bc-bf93-984b9ce63b34"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a537560-fa62-44a7-aaca-5fc1b5c77c54"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a537560-fa62-44a7-aaca-5fc1b5c77c54?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5",
            "display": "TwoTwoTwo_03",
            "name": "TwoTwoTwo_03",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "939e9cb8-20a0-4c4e-998d-ebdf711ecbeb",
                "display": "mspray_location_id: ac7ba751-35e8-4b46-9e53-3cbaad193697",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5/attribute/939e9cb8-20a0-4c4e-998d-ebdf711ecbeb"
                  }
                ]
              },
              {
                "uuid": "3ec7fc5d-ae22-4de3-a5ce-c1cdfa2cf788",
                "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5/attribute/3ec7fc5d-ae22-4de3-a5ce-c1cdfa2cf788"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "125fe4d9-a1ef-41f9-9580-d170e49647a2",
            "display": "TwoTwoTwo_04",
            "name": "TwoTwoTwo_04",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "e99d3c9f-8a04-47bd-beab-31ca9cf47416",
                "display": "mspray_location_id: 99471234-90f4-4bf5-9f6c-35721092ae16",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/125fe4d9-a1ef-41f9-9580-d170e49647a2/attribute/e99d3c9f-8a04-47bd-beab-31ca9cf47416"
                  }
                ]
              },
              {
                "uuid": "0e8c8970-0bd2-4920-8819-f42b5c3d6ff7",
                "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/125fe4d9-a1ef-41f9-9580-d170e49647a2/attribute/0e8c8970-0bd2-4920-8819-f42b5c3d6ff7"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/125fe4d9-a1ef-41f9-9580-d170e49647a2"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/125fe4d9-a1ef-41f9-9580-d170e49647a2?v=full"
              }
            ],
            "resourceVersion": "2.0"
          },
          {
            "uuid": "b636880d-8710-43aa-b821-4af9e6b9e17f",
            "display": "TwoTwoTwo_90",
            "name": "TwoTwoTwo_90",
            "description": null,
            "address1": null,
            "address2": null,
            "cityVillage": null,
            "stateProvince": null,
            "country": null,
            "postalCode": null,
            "latitude": null,
            "longitude": null,
            "countyDistrict": null,
            "address3": null,
            "address4": null,
            "address5": null,
            "address6": null,
            "tags": [
              {
                "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f",
                "display": "Operational Area",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f"
                  }
                ]
              }
            ],
            "parentLocation": {
              "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27",
              "display": "Two Two Two Release Village",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
                }
              ]
            },
            "childLocations": [],
            "retired": false,
            "attributes": [
              {
                "uuid": "41db9e49-aac8-434a-ac99-987ec9a0d227",
                "display": "mspray_location_id: 14e2a7a7-fd08-4bed-8cf8-1eeaed303eda",
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b636880d-8710-43aa-b821-4af9e6b9e17f/attribute/41db9e49-aac8-434a-ac99-987ec9a0d227"
                  }
                ]
              },
              {
                "uuid": "66c0824c-3175-4e99-a28e-23358cee2271",
                "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0",
                "voided": true,
                "links": [
                  {
                    "rel": "self",
                    "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b636880d-8710-43aa-b821-4af9e6b9e17f/attribute/66c0824c-3175-4e99-a28e-23358cee2271"
                  }
                ]
              }
            ],
            "address7": null,
            "address8": null,
            "address9": null,
            "address10": null,
            "address11": null,
            "address12": null,
            "address13": null,
            "address14": null,
            "address15": null,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b636880d-8710-43aa-b821-4af9e6b9e17f"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b636880d-8710-43aa-b821-4af9e6b9e17f?v=full"
              }
            ],
            "resourceVersion": "2.0"
          }
        ],
        "retired": false,
        "auditInfo": {
          "creator": {
            "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
            "display": "admin",
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
              }
            ]
          },
          "dateCreated": "2019-07-19T00:45:16.000+0200",
          "changedBy": null,
          "dateChanged": null
        },
        "attributes": [
          {
            "display": "mspray_location_id: 07b09ec1-0589-4a98-9480-4c403ac24d59",
            "uuid": "312c3a70-fcf1-46cf-8cb0-0081c054c11c",
            "attributeType": {
              "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583",
              "display": "mspray_location_id",
              "links": [
                {
                  "rel": "self",
                  "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationattributetype/3302b1cd-8e89-4d44-89ae-8a285f2c5583"
                }
              ]
            },
            "value": "07b09ec1-0589-4a98-9480-4c403ac24d59",
            "voided": false,
            "links": [
              {
                "rel": "self",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27/attribute/312c3a70-fcf1-46cf-8cb0-0081c054c11c"
              },
              {
                "rel": "full",
                "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27/attribute/312c3a70-fcf1-46cf-8cb0-0081c054c11c?v=full"
              }
            ],
            "resourceVersion": "1.9"
          }
        ],
        "address7": null,
        "address8": null,
        "address9": null,
        "address10": null,
        "address11": null,
        "address12": null,
        "address13": null,
        "address14": null,
        "address15": null,
        "links": [
          {
            "rel": "self",
            "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27"
          }
        ],
        "resourceVersion": "2.0"
      },
      "members": 1,
      "auditInfo": {
        "creator": {
          "uuid": "0e1a36a3-e42b-11e8-b47e-38deaddb8a49",
          "display": "admin",
          "links": [
            {
              "rel": "self",
              "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/user/0e1a36a3-e42b-11e8-b47e-38deaddb8a49"
            }
          ]
        },
        "dateCreated": "2019-07-19T00:51:51.000+0200",
        "changedBy": null,
        "dateChanged": null
      },
      "links": [
        {
          "rel": "self",
          "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team/055059f5-bbc2-489b-a573-56558556b5e0"
        }
      ],
      "resourceVersion": "1.8"
    }
  ]
}





  • No labels