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 3 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 truncated)
{
  "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"
    }
  ]
}





  • No labels