For AI agents: the documentation index is at /docs/aidbox/llms.txt. A Markdown version of this page is available at /docs/aidbox/notebooks.md or by requesting it with the Accept: text/markdown header.
Aidbox Docs
All notebooks

Getting Started: Search

Aidbox search API overview

29 cells · updated Jul 17, 2023

This is a read-only view. Responses shown were saved when the notebook was published — open it in your own Aidbox to run the cells against live data.

This notebook contains examples of Aidbox Search API.

Search parameter types covered:

  • string
  • token
  • date
  • reference

List of search parameters used in the examples:

Dot expressions

Upload synthesized Patient resources to Aidbox

In the next cell we upload 100 generated Patient resources.

These resources were generated using Synthea

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
POST /fhir/Patient/$load
Accept: text/yaml
Content-Type: text/yaml

source: 'https://storage.googleapis.com/aidbox-public/synthea/100/Patient.ndjson.gz'
Response: Body
Status: 200
{total: 124}

Search patient by name using SearchParameter Patient.name

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?name=Calvi
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "0"
  },
  "total": 0,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?name=Calvi&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?name=Calvi&page=1"
    }
  ],
  "entry": []
}

Get specific Patient resources by IDs (_id)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_id=e455762c-5a62-4c01-bf33-b549e4274dbc,e2544f67-b379-4038-b5af-73ddf5c718af
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "941"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "573 Gerhold Brook"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.45039150582085
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.2563077072725
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1998-01-10T12:29:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Elvira561"
            ],
            "family": "Leuschke194",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Dina200 Hane680"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Millbury",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.3518166464309899
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 81.64818335356901
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e455762c-5a62-4c01-bf33-b549e4274dbc",
        "identifier": [
          {
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-33-1559",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99983118",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X4604448X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-850-4495",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3029429208563298492  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc"
        }
      ]
    }
  ],
  "total": 1,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_id=e455762c-5a62-4c01-bf33-b549e4274dbc&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_id=e455762c-5a62-4c01-bf33-b549e4274dbc&page=1"
    }
  ]
}

Get Patient resources by lastUpdated attribute (_lastUpdated)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_lastUpdated=2021-08-26
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "946"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "497 Emmerich Arcade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.531556260164436
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.21250769634847
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Calvin845"
            ],
            "family": "DuBuque211"
          }
        ],
        "birthDate": "2012-10-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Marquitta546 Runolfsson901"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Attleboro",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.005735004927900484
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.9942649950721
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "identifier": [
          {
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-94-5813",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-3253",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6657422227777146042  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "West Newbury",
            "line": [
              "1067 Hahn Gate Apt 7"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.80487240403281
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.91959805102348
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Esperanza675"
            ],
            "family": "Hernandes724",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Esperanza675"
            ],
            "family": "Chacón810",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1962-06-22",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Gabriela205 Salinas3"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Caguas",
              "state": "Puerto Rico",
              "country": "PR"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 56
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "08b9a2bf-7492-4d15-b97f-00b54a3b35ee",
        "identifier": [
          {
            "value": "c22826ec-28b3-4b9b-bd4a-aec194ae6687",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "c22826ec-28b3-4b9b-bd4a-aec194ae6687",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-20-3208",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99942011",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X32311699X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-410-1061",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1073572465474769681  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/08b9a2bf-7492-4d15-b97f-00b54a3b35ee",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/08b9a2bf-7492-4d15-b97f-00b54a3b35ee"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "399 Dach View"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.36515234575324
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.0096904057159
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2015-10-24T13:44:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Kaye394"
            ],
            "family": "Wilkinson796",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Kaye394"
            ],
            "family": "McDermott739",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1988-02-27",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Milagros256 Nikolaus26"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Brookline",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 3.4579776819129924
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 22.542022318087007
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "0be40874-5ae1-46e0-b549-1b5e17c58518",
        "identifier": [
          {
            "value": "593a5743-a3cc-4c62-86e8-9a507b6a7143",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "593a5743-a3cc-4c62-86e8-9a507b6a7143",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-37-9960",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99914262",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X21320541X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-660-5417",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -209384056827805053  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/0be40874-5ae1-46e0-b549-1b5e17c58518",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0be40874-5ae1-46e0-b549-1b5e17c58518"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lunenburg",
            "line": [
              "1056 Harvey Forge"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.59491951923324
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.6972067268713
                  }
                ]
              }
            ],
            "postalCode": "01462"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "John539"
            ],
            "family": "Windler79",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1956-09-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lita714 Lueilwitz711"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Stow",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.067114639967142
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 59.932885360032856
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "0e57e58d-8721-44ab-834d-b09cefd6a76b",
        "identifier": [
          {
            "value": "dace9dd8-efa5-4b41-9958-7691dbc3f216",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "dace9dd8-efa5-4b41-9958-7691dbc3f216",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-11-6992",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99964359",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X50759754X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-990-6737",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5256988749368456953  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/0e57e58d-8721-44ab-834d-b09cefd6a76b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0e57e58d-8721-44ab-834d-b09cefd6a76b"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "West Brookfield",
            "line": [
              "577 Konopelski Vista Apt 37"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.31956290745263
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -72.0820460882462
                  }
                ]
              }
            ],
            "postalCode": "01585"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Somer38"
            ],
            "family": "Nicolas769",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1936-10-27",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Hildred696 Hammes673"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "West Springfield",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 5.230453710862487
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 76.76954628913751
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "0ec5c51b-56d4-433e-a320-297faf061237",
        "identifier": [
          {
            "value": "f3ec0977-9621-4309-ad89-422844c91ebe",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "f3ec0977-9621-4309-ad89-422844c91ebe",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-24-8659",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99980984",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X72668578X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-201-9799",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7325881483017664554  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/0ec5c51b-56d4-433e-a320-297faf061237",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0ec5c51b-56d4-433e-a320-297faf061237"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Norwood",
            "line": [
              "288 Lebsack Extension"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.27939576498273
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.10918600429395
                  }
                ]
              }
            ],
            "postalCode": "02062"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Hollis7"
            ],
            "family": "Ortiz186",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1944-01-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Leontine92 Keebler762"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Norfolk",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.8227877470111148
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 73.17721225298888
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "102e001e-df1b-4fa8-adfe-6e2acb69aae8",
        "identifier": [
          {
            "value": "33300b85-8309-404d-8376-f49367c2eb16",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "33300b85-8309-404d-8376-f49367c2eb16",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-56-2680",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99913299",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X23419928X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-536-1395",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6168135794081265688  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/102e001e-df1b-4fa8-adfe-6e2acb69aae8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/102e001e-df1b-4fa8-adfe-6e2acb69aae8"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Marlborough",
            "line": [
              "476 Hammes Tunnel Suite 84"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.44449290411101
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.45117961952732
                  }
                ]
              }
            ],
            "postalCode": "01752"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kassandra256"
            ],
            "family": "Morar593",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1995-12-16",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Ruth999 Witting912"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Weymouth",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.14912267427404877
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 22.85087732572595
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "14025d1b-3e46-4cbb-9ef2-f913cb6be139",
        "identifier": [
          {
            "value": "0e1e3ea5-9391-4c40-99ca-03af89736f32",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "0e1e3ea5-9391-4c40-99ca-03af89736f32",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-72-3703",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99921157",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X5966901X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-634-8060",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -2067117271689139844  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/14025d1b-3e46-4cbb-9ef2-f913cb6be139",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/14025d1b-3e46-4cbb-9ef2-f913cb6be139"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "648 Ondricka Quay Suite 77"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.41588783510004
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.99101904347025
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Josefine519"
            ],
            "family": "Sanford861"
          }
        ],
        "birthDate": "2006-05-16",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Dian810 Dickens475"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Somerville",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 12
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "16dc22c0-96c4-42f0-b42a-afa5f3f28f53",
        "identifier": [
          {
            "value": "3d681f1a-6c63-4082-8c9a-3202ff371c18",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3d681f1a-6c63-4082-8c9a-3202ff371c18",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-85-1512",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-932-2398",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 9165845208994696185  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/16dc22c0-96c4-42f0-b42a-afa5f3f28f53",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/16dc22c0-96c4-42f0-b42a-afa5f3f28f53"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "157 Kuvalis Common Unit 76"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.35046488848163
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9875381334071
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kristina583"
            ],
            "family": "Tromp100"
          }
        ],
        "birthDate": "2011-12-12",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Vennie613 Quigley282"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Bellingham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 7
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "179adc51-6875-4191-ad16-160339ed45cc",
        "identifier": [
          {
            "value": "27b77bde-193d-4294-8614-b889177af13e",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "27b77bde-193d-4294-8614-b889177af13e",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-96-1646",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-824-8277",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3769653936055537217  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/179adc51-6875-4191-ad16-160339ed45cc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/179adc51-6875-4191-ad16-160339ed45cc"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Fall River",
            "line": [
              "332 Rice Trace"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.793975128264144
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.07953643013187
                  }
                ]
              }
            ],
            "postalCode": "02720"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Johanna547"
            ],
            "family": "Lebsack687",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Johanna547"
            ],
            "family": "Heaney114",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1974-12-25",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Alexis664 Terry864"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Belmont",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.016678834176912623
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 43.983321165823085
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "19317bbf-767a-449a-a725-10957c03f9ec",
        "identifier": [
          {
            "value": "9b12a294-939b-4f47-bea2-e9cd6a0a1a14",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "9b12a294-939b-4f47-bea2-e9cd6a0a1a14",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-51-9952",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99969827",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X38010660X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-818-5460",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3793432803923643841  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/19317bbf-767a-449a-a725-10957c03f9ec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/19317bbf-767a-449a-a725-10957c03f9ec"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Haverhill",
            "line": [
              "381 Marquardt Heights Suite 97"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.79609573592979
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9986439552011
                  }
                ]
              }
            ],
            "postalCode": "01830"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Joey457"
            ],
            "family": "Connelly992",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1965-08-24",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Deeann517 Rosenbaum794"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Acton",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.165683826759748
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 50.83431617324025
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "1ce27aca-63d3-4224-898a-0d2821700641",
        "identifier": [
          {
            "value": "61352b56-0ae0-4ccf-8fb5-59be3b40d596",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "61352b56-0ae0-4ccf-8fb5-59be3b40d596",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-44-9408",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99980384",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X85419399X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-734-2315",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1577752226060915973  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/1ce27aca-63d3-4224-898a-0d2821700641",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/1ce27aca-63d3-4224-898a-0d2821700641"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Gloucester",
            "line": [
              "415 Gusikowski Estate"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.654245720199704
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.66027168298803
                  }
                ]
              }
            ],
            "postalCode": "01930"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Oliver401"
            ],
            "family": "Cummings51"
          }
        ],
        "birthDate": "2013-06-26",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Kara173 Haley279"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Wayland",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.021911047093292207
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 4.978088952906708
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "210d8d28-d601-43f9-a02b-d70c99b904b0",
        "identifier": [
          {
            "value": "17b28acd-fc5d-4578-a7a1-9186a73c89f6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "17b28acd-fc5d-4578-a7a1-9186a73c89f6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-39-1799",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-228-2126",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -166977890193766925  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/210d8d28-d601-43f9-a02b-d70c99b904b0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/210d8d28-d601-43f9-a02b-d70c99b904b0"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Mattapoisett",
            "line": [
              "388 Gulgowski Wynd"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.74950778876715
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.71307058179573
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Cheryl605"
            ],
            "family": "Heller342",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Cheryl605"
            ],
            "family": "Champlin946",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1940-08-25",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Shizue554 Halvorson124"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Mendon",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.6846246037822101
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 76.31537539621779
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "23781071-a79a-4d2f-89d2-d84c003cfcb4",
        "identifier": [
          {
            "value": "8e7aa442-d460-4845-8df1-f838686df34b",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "8e7aa442-d460-4845-8df1-f838686df34b",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-80-7766",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99984044",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X9627346X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-956-7751",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3207574761639972304  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/23781071-a79a-4d2f-89d2-d84c003cfcb4",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/23781071-a79a-4d2f-89d2-d84c003cfcb4"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Westford",
            "line": [
              "138 Mayert Highlands Suite 78"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.626217988825005
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.3530680139512
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Teodoro374"
            ],
            "family": "Christiansen251",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1996-03-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Garnett735 Mertz280"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Great Barrington",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 22
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "2420476f-4a8d-455f-9991-a19f09d2c9a6",
        "identifier": [
          {
            "value": "a5925aca-df59-4b67-963a-36059df0c839",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "a5925aca-df59-4b67-963a-36059df0c839",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-57-9014",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99948042",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X42480549X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-915-6084",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5488950479572506896  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/2420476f-4a8d-455f-9991-a19f09d2c9a6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2420476f-4a8d-455f-9991-a19f09d2c9a6"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "217 Treutel Junction"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.37153507602447
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.96123047570153
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Ramona980"
            ],
            "family": "Curiel392",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "2001-06-14",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Isabela97 Salcido465"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Roseau",
              "state": "Saint George",
              "country": "DM"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 17
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7",
        "identifier": [
          {
            "value": "24fb4059-15e5-4c50-b2a7-d834e8a28136",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "24fb4059-15e5-4c50-b2a7-d834e8a28136",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-56-2344",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99950880",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-475-7303",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8774268667576160736  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Milton",
            "line": [
              "654 Prosacco Terrace Suite 63"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.33444593413096
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.0345577193534
                  }
                ]
              }
            ],
            "postalCode": "02186"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Irvin970"
            ],
            "family": "Gaylord332"
          }
        ],
        "birthDate": "2015-01-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lorenza655 Morar593"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Middleborough",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.09440700419774642
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 2.9055929958022535
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "28572f59-c778-4d3e-91ad-c5b2488ebc1d",
        "identifier": [
          {
            "value": "c790210a-3676-487b-92c4-8367da6d7d49",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "c790210a-3676-487b-92c4-8367da6d7d49",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-72-5260",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-264-3359",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 4284279731067031175  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/28572f59-c778-4d3e-91ad-c5b2488ebc1d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28572f59-c778-4d3e-91ad-c5b2488ebc1d"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "115 Mohr Well Suite 52"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.498082552270375
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.30815687110784
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2007-07-18T13:29:17+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Amalia471"
            ],
            "family": "Funk324",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Amalia471"
            ],
            "family": "Reichert620",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Contessa946 Fahey393"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 4.723328622637595
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 86.2766713773624
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "28694499-75a8-4f18-86da-406ea997460d",
        "identifier": [
          {
            "value": "401dc4f3-e281-42ff-a65c-1066500439ab",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "401dc4f3-e281-42ff-a65c-1066500439ab",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-53-8622",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99914564",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X66020677X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-336-7594",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1703642069027871632  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/28694499-75a8-4f18-86da-406ea997460d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28694499-75a8-4f18-86da-406ea997460d"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lawrence",
            "line": [
              "275 Heller Station Suite 6"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.77567166891968
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.09735750950743
                  }
                ]
              }
            ],
            "postalCode": "01840"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Felicita351"
            ],
            "family": "Walker122",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Felicita351"
            ],
            "family": "Bernhard322",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1966-03-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Kiley170 Kovacek682"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Salem",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.679766460797448
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 51.320233539202555
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "da6facf9-d4fa-4c38-8424-278ea93cffe8",
        "identifier": [
          {
            "value": "f645920e-0abb-4f25-bd8f-f24b58914b8f",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "f645920e-0abb-4f25-bd8f-f24b58914b8f",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-33-7111",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99952360",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X64181806X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-236-5426",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 2752398259946744045  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/da6facf9-d4fa-4c38-8424-278ea93cffe8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/da6facf9-d4fa-4c38-8424-278ea93cffe8"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Dartmouth",
            "line": [
              "188 Bernier Brook Apt 7"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.65587561860083
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9551759845709
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2004-07-12T21:24:38+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Daron260"
            ],
            "family": "Schuppe920",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1934-12-20",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Gracia333 Gleason633"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Framingham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.7197015320630852
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 68.28029846793692
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "dce370cf-b720-441e-a183-c69e6f107417",
        "identifier": [
          {
            "value": "ad6a4759-51fa-4524-bd0c-c9cc3ef2dff3",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ad6a4759-51fa-4524-bd0c-c9cc3ef2dff3",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-88-4329",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99995203",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X51364436X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-654-4462",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6989936080268424056  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/dce370cf-b720-441e-a183-c69e6f107417",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/dce370cf-b720-441e-a183-c69e6f107417"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "1032 Durgan Common Unit 77"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.488482897966264
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.22635159248844
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1962-06-15T12:29:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Yuko264"
            ],
            "family": "Lebsack687",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Yuko264"
            ],
            "family": "Ratke343",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Buena501 Bartell116"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Northborough",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.9803759065642311
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 45.019624093435766
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "ddac979a-2c34-4872-995c-fc2f25c60b5a",
        "identifier": [
          {
            "value": "0821b227-8df0-4644-82db-f05692511368",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "0821b227-8df0-4644-82db-f05692511368",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-96-6978",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99958126",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X25779038X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-163-3925",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4852662904798518959  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/ddac979a-2c34-4872-995c-fc2f25c60b5a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ddac979a-2c34-4872-995c-fc2f25c60b5a"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Salem",
            "line": [
              "646 Howell Light Suite 34"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.589172499136794
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.85436498377719
                  }
                ]
              }
            ],
            "postalCode": "01907"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Shara355"
            ],
            "family": "Yundt842",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1996-05-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Selena146 Shields502"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Barnstable",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 22
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e0f57407-86ed-405b-aa55-56fb0bebc4c7",
        "identifier": [
          {
            "value": "ca7f7abe-f0d0-4167-a1cd-c9e0fb81dd56",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ca7f7abe-f0d0-4167-a1cd-c9e0fb81dd56",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-37-6746",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99918180",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X11459337X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-898-4429",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4492862167762739037  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "498 Raynor Gardens"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.47153842175342
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.27324337325132
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2008-10-01T13:29:17+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Evelyn437"
            ],
            "family": "Zemlak964",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Debera99 O'Hara248"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Southwick",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 3.9539091569667737
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 88.04609084303323
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
        "identifier": [
          {
            "value": "baeb8cc7-9156-4946-96bd-8941d055ac36",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "baeb8cc7-9156-4946-96bd-8941d055ac36",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-14-6662",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99989514",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X79125102X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-980-6582",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8732417369435915273  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Melrose",
            "line": [
              "621 Daugherty Mews"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.494100304727766
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00930424891762
                  }
                ]
              }
            ],
            "postalCode": "02176"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kirsten270"
            ],
            "family": "Bosco882",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Kirsten270"
            ],
            "family": "Johns824",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1943-03-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Yelena240 Littel644"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Arlington",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 11.31963741697184
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 63.680362583028156
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e2544f67-b379-4038-b5af-73ddf5c718af",
        "identifier": [
          {
            "value": "558ce5db-8c56-443c-8506-0fef1055a01d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "558ce5db-8c56-443c-8506-0fef1055a01d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-54-6823",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99932107",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X50923517X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-380-3000",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8112741508782866278  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Haverhill",
            "line": [
              "1090 Mohr Byway"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.80960071759504
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00038189980438
                  }
                ]
              }
            ],
            "postalCode": "01830"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Archie818"
            ],
            "family": "Schmitt836",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1973-03-30",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Nieves278 Boyer713"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Funchal",
              "state": "Madeira",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 45
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "e3b1dab2-5e09-4ea1-81ea-eed300770423",
        "identifier": [
          {
            "value": "4e39517b-5fbb-4231-b4e9-b15511c8a997",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "4e39517b-5fbb-4231-b4e9-b15511c8a997",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-41-6724",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99974695",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X40105757X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-866-3991",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1149752671686320430  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "573 Gerhold Brook"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.45039150582085
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.2563077072725
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1998-01-10T12:29:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Elvira561"
            ],
            "family": "Leuschke194",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Dina200 Hane680"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Millbury",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.3518166464309899
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 81.64818335356901
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e455762c-5a62-4c01-bf33-b549e4274dbc",
        "identifier": [
          {
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-33-1559",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99983118",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X4604448X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-850-4495",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3029429208563298492  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Newton",
            "line": [
              "283 Volkman Ferry Unit 33"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.366219604267
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.11913576799162
                  }
                ]
              }
            ],
            "postalCode": "02458"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Gillian484"
            ],
            "family": "Zemlak964"
          }
        ],
        "birthDate": "2016-09-13",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Jeanett771 Cummerata161"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Saugus",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 2
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "28c7b1a9-ce7c-4b7a-9626-41568a8f18d6",
        "identifier": [
          {
            "value": "d431b2b8-15cd-452b-b521-2ba3d430c3db",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "d431b2b8-15cd-452b-b521-2ba3d430c3db",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-28-8951",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-460-2020",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -9054177088470990847  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/28c7b1a9-ce7c-4b7a-9626-41568a8f18d6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28c7b1a9-ce7c-4b7a-9626-41568a8f18d6"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Franklin",
            "line": [
              "1079 Murphy Burg"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.10232701138507
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.3548209879787
                  }
                ]
              }
            ],
            "postalCode": "02038"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Fernando603"
            ],
            "family": "Adorno791",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1963-10-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Norma469 Limón43"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Santiago de los Caballeros",
              "state": "Santiago",
              "country": "DO"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 9.225515761184683
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 45.77448423881532
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "2a5029b7-03cb-41a6-9479-737ee62a3cfd",
        "identifier": [
          {
            "value": "e800ec01-0515-49bb-86e2-4503af5d78e4",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "e800ec01-0515-49bb-86e2-4503af5d78e4",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-68-8526",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99949081",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X47836095X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-826-7973",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7639153520521366930  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "363 Quigley Grove"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.467798108053465
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.30060213029128
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2017-10-25T12:29:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Chong355"
            ],
            "family": "Ziemann98",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Chong355"
            ],
            "family": "Champlin946",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Magen68 Gibson10"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Worcester",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.643203718935527
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 98.35679628106448
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "2b08424d-1733-4ded-b5db-54ff3cda2557",
        "identifier": [
          {
            "value": "8628443c-dd5d-429a-bee2-2b6a772eda17",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "8628443c-dd5d-429a-bee2-2b6a772eda17",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-58-1385",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99926405",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X54966431X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-320-3857",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1842396174798154661  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/2b08424d-1733-4ded-b5db-54ff3cda2557",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2b08424d-1733-4ded-b5db-54ff3cda2557"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Dartmouth",
            "line": [
              "1054 Kuhic Ville"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.66198256671279
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.93869044880604
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2000-05-10T21:24:38+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Emilio417"
            ],
            "family": "MacGyver246",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1934-12-20",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Nancey580 Corkery305"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Milton",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.307484471075124
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.69251552892488
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "2c5b8a64-b479-4f37-b5e1-18f0eed1f6af",
        "identifier": [
          {
            "value": "b1a3b11b-50d1-424e-a7fa-fcb063eb0169",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "b1a3b11b-50d1-424e-a7fa-fcb063eb0169",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-85-6384",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99924901",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X53105210X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-751-3852",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6935991646213267948  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/2c5b8a64-b479-4f37-b5e1-18f0eed1f6af",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2c5b8a64-b479-4f37-b5e1-18f0eed1f6af"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Fall River",
            "line": [
              "1062 Rice Parade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.76940043078157
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.03190859343245
                  }
                ]
              }
            ],
            "postalCode": "02720"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Sherwood961"
            ],
            "family": "Dooley940",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1946-06-24",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Kenya524 Kihn564"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Lynn",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 16.610960462535903
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 55.3890395374641
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "3120bba2-b99e-4aad-a14e-d8a16b86806d",
        "identifier": [
          {
            "value": "a44729cb-cde5-45cb-9cfc-57a3ab19dc3e",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "a44729cb-cde5-45cb-9cfc-57a3ab19dc3e",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-15-8293",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99933194",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X25446583X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-987-5428",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3031290189533055621  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/3120bba2-b99e-4aad-a14e-d8a16b86806d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/3120bba2-b99e-4aad-a14e-d8a16b86806d"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "1059 Quigley Harbor Suite 42"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.36991030348486
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00724112557074
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Guadalupe206"
            ],
            "family": "Tijerina14",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1996-12-04",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Eva64 Patiño436"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Wesley",
              "state": "Saint Andrew Parish",
              "country": "DM"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.113928391611605
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 20.886071608388395
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "357444e9-3159-4063-a975-ccd72923ee8b",
        "identifier": [
          {
            "value": "af1849f9-3ab5-4a6d-ac1f-4b0a6a231b3c",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "af1849f9-3ab5-4a6d-ac1f-4b0a6a231b3c",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-49-6878",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99987317",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X79820683X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-310-9599",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1361057495378676275  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/357444e9-3159-4063-a975-ccd72923ee8b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/357444e9-3159-4063-a975-ccd72923ee8b"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Danvers",
            "line": [
              "166 Beatty Byway Unit 86"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.63990504002892
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.87550116410463
                  }
                ]
              }
            ],
            "postalCode": "01923"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Jaclyn627"
            ],
            "family": "O'Keefe54",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Jaclyn627"
            ],
            "family": "Batz141",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1976-05-25",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Morgan564 Nienow652"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Beverly",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 42
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "36f77720-2032-4e75-ac7e-1cdcddc69c92",
        "identifier": [
          {
            "value": "5d128f27-1d6d-4e84-83f7-647c161de7d3",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "5d128f27-1d6d-4e84-83f7-647c161de7d3",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-91-3854",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99963606",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X53160846X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-789-3745",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4491289724763025113  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/36f77720-2032-4e75-ac7e-1cdcddc69c92",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/36f77720-2032-4e75-ac7e-1cdcddc69c92"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Fall River",
            "line": [
              "145 Hettinger Extension"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.797050920424866
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.04331138209649
                  }
                ]
              }
            ],
            "postalCode": "02720"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2015-07-14T11:50:13+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Clement78"
            ],
            "family": "Koss676",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1946-06-24",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Concha418 Fisher429"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 7.460191121492343
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 60.53980887850766
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "38ad2730-be38-4e9a-97a0-2b97c8574814",
        "identifier": [
          {
            "value": "f44eca35-55ba-456f-96c2-f356b09e8f0d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "f44eca35-55ba-456f-96c2-f356b09e8f0d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-62-3126",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99951549",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X40944445X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-232-4835",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5418897180158832148  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/38ad2730-be38-4e9a-97a0-2b97c8574814",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/38ad2730-be38-4e9a-97a0-2b97c8574814"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Ashland",
            "line": [
              "898 Monahan Annex"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.35137421442165
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.42254335814457
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2008-12-26T22:29:55+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Claribel706"
            ],
            "family": "Hagenes547",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1990-11-01",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Brandy18 Gulgowski816"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Braintree",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 69.46406684289094
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 17.99265315710905
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1",
        "identifier": [
          {
            "value": "b3e61f34-8468-43cf-9db3-fde4bb3f1e73",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "b3e61f34-8468-43cf-9db3-fde4bb3f1e73",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-77-4012",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99990044",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-375-8429",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -968089945237705133  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Canton",
            "line": [
              "216 Homenick Harbor Apt 48"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.21060869866713
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.034244734128
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Frank378"
            ],
            "family": "Hermiston71",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1978-05-31",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Mendy939 Ullrich385"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Wareham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.46206814140985414
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 39.53793185859015
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "3eb31aa6-4be8-4e2b-8ee6-42d6f044b953",
        "identifier": [
          {
            "value": "5c2544b4-bd01-4625-8aff-ad4be697a563",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "5c2544b4-bd01-4625-8aff-ad4be697a563",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-10-3640",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99920074",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X68779709X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-127-6627",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8295056938978508275  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/3eb31aa6-4be8-4e2b-8ee6-42d6f044b953",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/3eb31aa6-4be8-4e2b-8ee6-42d6f044b953"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Worcester",
            "line": [
              "237 Will Extension Apt 80"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.313700457893866
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.80109937972318
                  }
                ]
              }
            ],
            "postalCode": "01545"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rigoberto443"
            ],
            "family": "Bahringer146",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1953-03-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Janice500 Nitzsche158"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Moscow",
              "state": "Moscow",
              "country": "RU"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.2661075265534603
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.73389247344654
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Russian (Russia)",
              "coding": [
                {
                  "code": "ru-RU",
                  "system": "urn:ietf:bcp:47",
                  "display": "Russian (Russia)"
                }
              ]
            }
          }
        ],
        "id": "410b2e4a-9212-4c2d-8252-6f9213f8fb67",
        "identifier": [
          {
            "value": "88efc5c6-fb6e-47f5-949c-469963097180",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "88efc5c6-fb6e-47f5-949c-469963097180",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-43-9440",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99911409",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X19877866X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-391-9546",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3460378993169369179  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/410b2e4a-9212-4c2d-8252-6f9213f8fb67",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/410b2e4a-9212-4c2d-8252-6f9213f8fb67"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Melrose",
            "line": [
              "546 Rau Street Apt 72"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.52413812255652
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.01219903368491
                  }
                ]
              }
            ],
            "postalCode": "02176"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Karon907"
            ],
            "family": "Howe413",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1964-02-15",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Maisie206 Kirlin939"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Hong Kong",
              "state": "Hong Kong Special Administrative Region",
              "country": "CN"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.9388470478226414
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 52.06115295217736
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Chinese",
              "coding": [
                {
                  "code": "zh",
                  "system": "urn:ietf:bcp:47",
                  "display": "Chinese"
                }
              ]
            }
          }
        ],
        "id": "41907da4-2926-4f7a-9326-bb18585b07bf",
        "identifier": [
          {
            "value": "b22c970c-feb5-4f6c-98e1-94c710212a03",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "b22c970c-feb5-4f6c-98e1-94c710212a03",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-88-7652",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99944987",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X78663117X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-832-7560",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6831912806971390605  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/41907da4-2926-4f7a-9326-bb18585b07bf",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/41907da4-2926-4f7a-9326-bb18585b07bf"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Orleans",
            "line": [
              "404 Swaniawski Terrace Unit 32"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.771587463539085
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -69.91010914174257
                  }
                ]
              }
            ],
            "postalCode": "02653"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Miss492"
            ],
            "family": "Erdman779",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Miss492"
            ],
            "family": "Trantow673",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1962-06-12",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Jalisa590 O'Kon634"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Somerville",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 56
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "41ad3730-37c2-49cc-87a1-0a21702c3903",
        "identifier": [
          {
            "value": "12326756-9079-4b81-a813-3a26eecd4433",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "12326756-9079-4b81-a813-3a26eecd4433",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-37-4865",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99961363",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X46902757X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-553-9722",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3658711438541433701  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/41ad3730-37c2-49cc-87a1-0a21702c3903",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/41ad3730-37c2-49cc-87a1-0a21702c3903"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Westborough",
            "line": [
              "155 Farrell Trace"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.332741504613715
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.51902437854089
                  }
                ]
              }
            ],
            "postalCode": "01581"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Adán600"
            ],
            "family": "Galván169"
          }
        ],
        "birthDate": "2012-10-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Adriana394 Cavazos163"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Sao Paulo",
              "state": "Sao Paulo",
              "country": "BR"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 6
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "427e7fc7-b8cc-4d60-9139-0a4f0ae94d55",
        "identifier": [
          {
            "value": "bb705f33-94ba-4a27-b579-ba2da34077ba",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "bb705f33-94ba-4a27-b579-ba2da34077ba",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-97-9223",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-714-3083",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 9020489760898112020  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/427e7fc7-b8cc-4d60-9139-0a4f0ae94d55",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/427e7fc7-b8cc-4d60-9139-0a4f0ae94d55"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Amherst",
            "line": [
              "109 MacGyver Annex"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.448833039788894
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -72.48557018717908
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Sally227"
            ],
            "family": "Farrell962",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Sally227"
            ],
            "family": "Howell947",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1987-04-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Eleanore671 Larkin917"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "East Longmeadow",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.07687251700090689
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 30.923127482999092
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "43b3d8de-e4d6-41b9-a98f-3818ed42c413",
        "identifier": [
          {
            "value": "481f52b5-851c-42b8-a33f-db22055c3e19",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "481f52b5-851c-42b8-a33f-db22055c3e19",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-97-7031",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99955432",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X88241038X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-288-1066",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5712968004347201789  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/43b3d8de-e4d6-41b9-a98f-3818ed42c413",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/43b3d8de-e4d6-41b9-a98f-3818ed42c413"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Danvers",
            "line": [
              "994 Rolfson Ramp"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.624910061599145
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.87903854566665
                  }
                ]
              }
            ],
            "postalCode": "01923"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2007-09-28T19:25:00+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Lizzie15"
            ],
            "family": "Howe413",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Lizzie15"
            ],
            "family": "Rohan584",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1952-06-20",
        "multipleBirthInteger": 2,
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Penney623 Anderson154"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Blackstone",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.703943163328779
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 52.29605683667122
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "44d86263-d939-4dff-8ce7-a5a86d70c348",
        "identifier": [
          {
            "value": "810179d0-0953-489f-9c5b-69cefded1817",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "810179d0-0953-489f-9c5b-69cefded1817",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-97-8693",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99925085",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X23437874X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-577-8150",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8134286017109938686  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/44d86263-d939-4dff-8ce7-a5a86d70c348",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/44d86263-d939-4dff-8ce7-a5a86d70c348"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Norwood",
            "line": [
              "224 DuBuque Park Unit 88"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.23482947612912
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.14836457007388
                  }
                ]
              }
            ],
            "postalCode": "02062"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2014-07-29T15:14:25+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Ethan766"
            ],
            "family": "Bartell116",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1944-01-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Jayme42 Klein929"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Fall River",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 4.640820143365524
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 64.35917985663448
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "47133897-bdbf-43fd-bef8-d34a40e4deb6",
        "identifier": [
          {
            "value": "4dbac335-93f8-42f0-9b16-e6feec0174a1",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "4dbac335-93f8-42f0-9b16-e6feec0174a1",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-21-5277",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99915581",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X72759890X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-396-9792",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 5303738938200947831  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/47133897-bdbf-43fd-bef8-d34a40e4deb6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/47133897-bdbf-43fd-bef8-d34a40e4deb6"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Tyngsborough",
            "line": [
              "820 Corwin Path Apt 98"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.71777916994863
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.4191465160218
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rodolfo763"
            ],
            "family": "Thompson596",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1984-03-15",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Collette420 Kirlin939"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Marlborough",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 34
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "4747365a-a6c0-4240-8d24-5b58d94f38cd",
        "identifier": [
          {
            "value": "149c1042-2037-4948-ae60-5a66acd84b79",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "149c1042-2037-4948-ae60-5a66acd84b79",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-95-9162",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99947711",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X60483657X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-863-8078",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 9139556615303929952  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/4747365a-a6c0-4240-8d24-5b58d94f38cd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4747365a-a6c0-4240-8d24-5b58d94f38cd"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Hopkinton",
            "line": [
              "963 Blanda Frontage road"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.29471515211897
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.51205849366352
                  }
                ]
              }
            ],
            "postalCode": "01748"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Brendon298"
            ],
            "family": "Mueller846",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1951-07-26",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Cassey386 Strosin214"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Bridgewater",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 67
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "478655d2-2d82-4fb0-bef8-3ff8192271ed",
        "identifier": [
          {
            "value": "0dc51a25-9aa7-4231-aa68-051262f035f9",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "0dc51a25-9aa7-4231-aa68-051262f035f9",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-95-8928",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99912744",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X14811980X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-762-5640",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8814935085375479272  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/478655d2-2d82-4fb0-bef8-3ff8192271ed",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/478655d2-2d82-4fb0-bef8-3ff8192271ed"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Everett",
            "line": [
              "649 Kuvalis Gateway Suite 33"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.44772529199908
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.01860487153998
                  }
                ]
              }
            ],
            "postalCode": "02148"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rex53"
            ],
            "family": "Schroeder447",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1980-09-02",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Shantel839 Cronin387"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Lynn",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 38
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "49cad500-1ca6-4a51-8c6f-daf7e8ec9c71",
        "identifier": [
          {
            "value": "da14a707-0009-4941-a86d-e97206fa9443",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "da14a707-0009-4941-a86d-e97206fa9443",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-37-8991",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99928122",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X2891128X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-303-3834",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4577719958272305947  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/49cad500-1ca6-4a51-8c6f-daf7e8ec9c71",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/49cad500-1ca6-4a51-8c6f-daf7e8ec9c71"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Brookline",
            "line": [
              "501 Mraz Annex"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.38972216176759
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.10641440859672
                  }
                ]
              }
            ],
            "postalCode": "02215"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kurt412"
            ],
            "family": "Zieme486",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1971-01-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Janette321 Huel628"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Brookline",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.5047180493599668
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 46.495281950640035
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "4a1eff12-e327-4431-8fb3-7273850aaca7",
        "identifier": [
          {
            "value": "1d8c2015-8c62-4228-ae79-e565a87da9b3",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "1d8c2015-8c62-4228-ae79-e565a87da9b3",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-88-6765",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99942680",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X77504469X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-122-3888",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4453432803288281612  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/4a1eff12-e327-4431-8fb3-7273850aaca7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4a1eff12-e327-4431-8fb3-7273850aaca7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Framingham",
            "line": [
              "429 Greenfelder Crossroad Unit 48"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.39892914490134
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.36884866662038
                  }
                ]
              }
            ],
            "postalCode": "01701"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Mariano761"
            ],
            "family": "Arevalo970",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1985-11-05",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Susana117 Ponce361"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Caguas",
              "state": "Puerto Rico",
              "country": "PR"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 33
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "4fa99696-25c8-4d67-b848-1cc69b326f59",
        "identifier": [
          {
            "value": "13213152-50ab-4697-8627-ea3124308ac5",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "13213152-50ab-4697-8627-ea3124308ac5",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-99-7479",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99998103",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X34089691X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-851-6462",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4472864824341650828  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Newton",
            "line": [
              "877 Stark Junction Suite 25"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.42492973830527
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.12341303155821
                  }
                ]
              }
            ],
            "postalCode": "02458"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Nicolas769"
            ],
            "family": "Stracke611",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1979-10-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Tenisha328 Homenick806"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Dartmouth",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.2882908192184311
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 38.71170918078157
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "51f199d3-9d88-42d8-b478-6ed89d57dbf4",
        "identifier": [
          {
            "value": "32dd1fb5-5b3b-4e53-bbd6-6649bc1670cb",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "32dd1fb5-5b3b-4e53-bbd6-6649bc1670cb",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-45-4605",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99973814",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X55201303X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-664-8684",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1102397152764178736  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/51f199d3-9d88-42d8-b478-6ed89d57dbf4",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/51f199d3-9d88-42d8-b478-6ed89d57dbf4"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Arlington",
            "line": [
              "486 Denesik Byway Apt 92"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.45659129854879
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.13270953406966
                  }
                ]
              }
            ],
            "postalCode": "02474"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Carlos172"
            ],
            "family": "Luevano912",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1982-07-07",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Isabela97 Jiménez568"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Gaudalajara",
              "state": "Jalisco",
              "country": "MX"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.022276683339654987
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 35.977723316660345
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "54524604-4f11-4d50-b631-4008f8d058de",
        "identifier": [
          {
            "value": "548aa02f-009d-4d74-9f0b-187f60ab40b9",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "548aa02f-009d-4d74-9f0b-187f60ab40b9",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-41-5836",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99930754",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X72863909X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-865-4475",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 4837633387150607945  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/54524604-4f11-4d50-b631-4008f8d058de",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/54524604-4f11-4d50-b631-4008f8d058de"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Everett",
            "line": [
              "900 Dickens Bridge"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.43038734214015
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00798381633105
                  }
                ]
              }
            ],
            "postalCode": "02148"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Winford225"
            ],
            "family": "Casper496"
          }
        ],
        "birthDate": "2016-06-02",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Janee223 Mann644"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "West Boylston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 2
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "55c11701-518c-4ef4-b3d8-d4f996046d36",
        "identifier": [
          {
            "value": "00419073-2ada-41b9-b718-60d1794eb349",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "00419073-2ada-41b9-b718-60d1794eb349",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-65-5745",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-151-9291",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -803682162702931358  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/55c11701-518c-4ef4-b3d8-d4f996046d36",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/55c11701-518c-4ef4-b3d8-d4f996046d36"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "957 Schowalter Parade Unit 77"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.38473438477563
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9634969125405
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Korey682"
            ],
            "family": "Sanford861",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1970-08-24",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lorenza655 Adams676"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Chelsea",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.36173288763034794
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 47.638267112369654
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "56186895-3ad4-409c-8969-127b8d91e40e",
        "identifier": [
          {
            "value": "ee77bf6a-21bf-412a-afeb-553eedcaf3cd",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ee77bf6a-21bf-412a-afeb-553eedcaf3cd",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-13-5726",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99979089",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X36042721X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-225-6584",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3354223263811208430  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/56186895-3ad4-409c-8969-127b8d91e40e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/56186895-3ad4-409c-8969-127b8d91e40e"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Natick",
            "line": [
              "143 Erdman Neck Unit 55"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.30356608700368
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.31871532156893
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Jani266"
            ],
            "family": "Douglas31"
          }
        ],
        "birthDate": "2005-04-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Valeria950 Stiedemann542"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Lexington",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.07285339430977808
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 12.927146605690222
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5b18f768-0145-4dd1-ad43-4180ab194856",
        "identifier": [
          {
            "value": "817830b9-6897-4510-943f-ef36fd3419db",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "817830b9-6897-4510-943f-ef36fd3419db",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-87-9191",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-349-4177",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8059495583198099636  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5b18f768-0145-4dd1-ad43-4180ab194856",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5b18f768-0145-4dd1-ad43-4180ab194856"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lynn",
            "line": [
              "982 Rohan Vale"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.552389606354154
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9262417352481
                  }
                ]
              }
            ],
            "postalCode": "01901"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Shameka870"
            ],
            "family": "Hettinger594",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1974-03-21",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Jinny850 Christiansen251"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Nahant",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 44
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5b5b7a5b-c586-4694-88e1-afa97116f777",
        "identifier": [
          {
            "value": "b0d5d648-ba32-4a2e-a77e-9f430487c89e",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "b0d5d648-ba32-4a2e-a77e-9f430487c89e",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-45-8617",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99915701",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X88092412X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-138-9754",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8707917832965362560  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5b5b7a5b-c586-4694-88e1-afa97116f777",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5b5b7a5b-c586-4694-88e1-afa97116f777"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Somerville",
            "line": [
              "881 Legros Lodge"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.430832601022885
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00511973378588
                  }
                ]
              }
            ],
            "postalCode": "02138"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Shirley182"
            ],
            "family": "Bradtke547",
            "prefix": [
              "Mr."
            ],
            "suffix": [
              "JD"
            ]
          }
        ],
        "birthDate": "1978-10-21",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Wanetta360 Marvin195"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Walpole",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 7.313528400732526
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 32.68647159926748
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5bad6369-e2f1-41d3-aae2-daf1d603cb50",
        "identifier": [
          {
            "value": "a4c72c12-f85c-488b-b14a-ee13e7702c6b",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "a4c72c12-f85c-488b-b14a-ee13e7702c6b",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-32-2791",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99918767",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X35707130X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-497-3705",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7982931779385180385  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5bad6369-e2f1-41d3-aae2-daf1d603cb50",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5bad6369-e2f1-41d3-aae2-daf1d603cb50"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Revere",
            "line": [
              "132 Kuhlman Burg Unit 49"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.42672005197673
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.89166440440533
                  }
                ]
              }
            ],
            "postalCode": "02151"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Silas208"
            ],
            "family": "Schiller186",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1994-02-24",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Hyacinth68 Quigley282"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Beverly",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 6.80722721003914
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 17.19277278996086
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5dd6383c-2e0a-4363-8d43-7a2fa889144d",
        "identifier": [
          {
            "value": "3e92f802-c97a-4d22-9061-d4d494bce086",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3e92f802-c97a-4d22-9061-d4d494bce086",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-53-6061",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99950487",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X89096422X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-877-3351",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5085169514251688678  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5dd6383c-2e0a-4363-8d43-7a2fa889144d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5dd6383c-2e0a-4363-8d43-7a2fa889144d"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "322 Conn Grove Unit 34"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.38169404132642
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.97375362512317
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Mari763"
            ],
            "family": "Schaden604",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1998-11-29",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Suzan149 Lesch175"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Brookline",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 20
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5deb2b4c-e1e2-4c1a-a74e-f028db8aa410",
        "identifier": [
          {
            "value": "d4faf442-3dc0-4512-ae50-8f6f38e63422",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "d4faf442-3dc0-4512-ae50-8f6f38e63422",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-53-7973",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99974925",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X23233030X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-922-5644",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7329502063883240760  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5deb2b4c-e1e2-4c1a-a74e-f028db8aa410",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5deb2b4c-e1e2-4c1a-a74e-f028db8aa410"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Marblehead",
            "line": [
              "453 Batz Manor Unit 1"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.57053587628655
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.75332692864241
                  }
                ]
              }
            ],
            "postalCode": "01945"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Bettye671"
            ],
            "family": "Davis923",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1970-03-30",
        "multipleBirthInteger": 2,
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Ora550 Berge125"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Springfield",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.194038464913099
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 45.8059615350869
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "5e23837b-8ef5-46cd-9046-82cd4033bdb3",
        "identifier": [
          {
            "value": "3cd6d0c6-d673-432f-9dc0-06c1d02c4d2d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3cd6d0c6-d673-432f-9dc0-06c1d02c4d2d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-82-1536",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99987405",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X66583023X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-539-6580",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7348377376164190300  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/5e23837b-8ef5-46cd-9046-82cd4033bdb3",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5e23837b-8ef5-46cd-9046-82cd4033bdb3"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "1049 Will Wynd Suite 67"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.44139576749068
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.29108530360267
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Amalia471"
            ],
            "family": "Botsford977",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Amalia471"
            ],
            "family": "Aufderhar910",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Mirta419 MacGyver246"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Bellingham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.593291665841032
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 100.40670833415896
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "61bdd30b-ee2b-4033-a9de-112ac1271e91",
        "identifier": [
          {
            "value": "757bbecd-afef-4b5f-b2d9-d9fcf4aaf018",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "757bbecd-afef-4b5f-b2d9-d9fcf4aaf018",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-21-5357",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99967104",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X71587366X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-986-3270",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3042154923875587124  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/61bdd30b-ee2b-4033-a9de-112ac1271e91",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/61bdd30b-ee2b-4033-a9de-112ac1271e91"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "1009 Jacobs Spur"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.38229324554375
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9425692336074
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Felisa186"
            ],
            "family": "Corkery305",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Felisa186"
            ],
            "family": "Lakin515",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1990-04-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Cammie978 Stamm704"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Marseille",
              "state": "Provence-Alpes-Cote d'Azur",
              "country": "FR"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 28
          }
        ],
        "communication": [
          {
            "language": {
              "text": "French (France)",
              "coding": [
                {
                  "code": "fr-FR",
                  "system": "urn:ietf:bcp:47",
                  "display": "French (France)"
                }
              ]
            }
          }
        ],
        "id": "65b5dda3-47f2-4607-8988-c0ba7f7a487a",
        "identifier": [
          {
            "value": "5216d937-b010-4237-8b19-d7eaa9182dae",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "5216d937-b010-4237-8b19-d7eaa9182dae",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-77-2924",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99966692",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X46225779X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-187-5274",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 2506452830551574772  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/65b5dda3-47f2-4607-8988-c0ba7f7a487a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/65b5dda3-47f2-4607-8988-c0ba7f7a487a"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "124 Witting Skyway Unit 34"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.39235635857666
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.01494242769407
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1989-09-30T01:12:04+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Monroe732"
            ],
            "family": "Heathcote539"
          }
        ],
        "birthDate": "1987-06-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lauretta754 Schumm995"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Milton",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 1
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7",
        "identifier": [
          {
            "value": "4475d050-7894-4f89-9df1-806ed139ec42",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "4475d050-7894-4f89-9df1-806ed139ec42",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-66-5428",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-4128",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -5736834364122949223  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Chelsea",
            "line": [
              "784 Casper Vale Unit 90"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.42951260179524
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.9784198147869
                  }
                ]
              }
            ],
            "postalCode": "02149"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Oren284"
            ],
            "family": "Oberbrunner298",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1970-02-17",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Nery414 Rice937"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Westwood",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 8.543481730683943
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 39.45651826931606
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "6a2fc8f4-92e2-4411-8201-47b12858921e",
        "identifier": [
          {
            "value": "385e546f-a44e-43e1-9653-f53ff7166eec",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "385e546f-a44e-43e1-9653-f53ff7166eec",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-27-4810",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99967204",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X54937677X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-773-3229",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8757459772114272581  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/6a2fc8f4-92e2-4411-8201-47b12858921e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6a2fc8f4-92e2-4411-8201-47b12858921e"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Westport",
            "line": [
              "592 Littel Approach Unit 51"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.64165798257381
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.04204232298505
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Ricarda574"
            ],
            "family": "Stoltenberg489",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1947-07-05",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Jordan900 O'Connell601"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Waltham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.4546495490962346
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 68.54535045090377
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "6bcca3ba-8470-4f6c-805d-291586192a25",
        "identifier": [
          {
            "value": "16a09d45-2765-4640-8cc6-84ba712878f6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "16a09d45-2765-4640-8cc6-84ba712878f6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-31-9523",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99992641",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X89119286X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-199-3219",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6158538280121457775  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/6bcca3ba-8470-4f6c-805d-291586192a25",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6bcca3ba-8470-4f6c-805d-291586192a25"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lawrence",
            "line": [
              "460 Casper Meadow Suite 96"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.70341355825451
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.13764746659389
                  }
                ]
              }
            ],
            "postalCode": "01840"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Julia241"
            ],
            "family": "Niño185",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Julia241"
            ],
            "family": "Contreras711",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1978-11-04",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2135-2",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Other"
                }
              },
              {
                "url": "text",
                "valueString": "Other"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Luisa710 Galindo802"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Caguas",
              "state": "Puerto Rico",
              "country": "PR"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 40
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Spanish",
              "coding": [
                {
                  "code": "es",
                  "system": "urn:ietf:bcp:47",
                  "display": "Spanish"
                }
              ]
            }
          }
        ],
        "id": "6bf460a9-ec19-4e7f-bc81-cf631f430336",
        "identifier": [
          {
            "value": "d03f039d-8632-49ec-9dee-3350c24b3d0d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "d03f039d-8632-49ec-9dee-3350c24b3d0d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-53-1243",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99966938",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X35099584X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-217-2669",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4177943306819213929  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/6bf460a9-ec19-4e7f-bc81-cf631f430336",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6bf460a9-ec19-4e7f-bc81-cf631f430336"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lawrence",
            "line": [
              "469 Murazik Bypass Unit 87"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.75977454550704
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.07273074135406
                  }
                ]
              }
            ],
            "postalCode": "01840"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Tod265"
            ],
            "family": "Romaguera67",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1984-08-03",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Bethann490 Kunze215"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Brockton",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.05904936574653838
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 33.94095063425346
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "6fae52cd-c193-4316-be74-420a4656ea67",
        "identifier": [
          {
            "value": "5cc1aa8d-24d6-4738-8e90-6e1e27ed49a1",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "5cc1aa8d-24d6-4738-8e90-6e1e27ed49a1",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-96-4680",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99966350",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X3853929X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-297-4973",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 400693448926473184  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/6fae52cd-c193-4316-be74-420a4656ea67",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6fae52cd-c193-4316-be74-420a4656ea67"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston",
            "line": [
              "757 Willms Bridge Unit 18"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.43134930574726
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.98210006024325
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Giuseppe872"
            ],
            "family": "Gaylord332"
          }
        ],
        "birthDate": "2015-09-17",
        "multipleBirthInteger": 1,
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Hannah56 Altenwerth646"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Malden",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.008477126412635871
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 2.991522873587364
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da",
        "identifier": [
          {
            "value": "a338eb27-1266-4cc2-9976-a013dfb1a272",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "a338eb27-1266-4cc2-9976-a013dfb1a272",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-10-5992",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-548-9473",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8487626111585560990  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Ashland",
            "line": [
              "561 Eichmann Club Suite 81"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.272470346666616
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.42972084981967
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Vella930"
            ],
            "family": "O'Keefe54",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Vella930"
            ],
            "family": "VonRueden376",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1990-11-01",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Conception120 Murphy561"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Beverly",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.08487874272615993
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 27.91512125727384
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "7431e052-639d-41bd-b20d-7883640f1a5a",
        "identifier": [
          {
            "value": "5c7b3b50-0083-4b46-beb1-85d4495c5e84",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "5c7b3b50-0083-4b46-beb1-85d4495c5e84",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-30-9875",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99982373",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X84939835X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-722-4212",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 654006058802116835  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/7431e052-639d-41bd-b20d-7883640f1a5a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/7431e052-639d-41bd-b20d-7883640f1a5a"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Beverly",
            "line": [
              "251 Vandervort Station Suite 22"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.59517685048178
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.82440747253315
                  }
                ]
              }
            ],
            "postalCode": "01915"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Gail741"
            ],
            "family": "Conn188",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1955-04-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lily490 Hoeger474"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Fitchburg",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.2513630357010867
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.74863696429891
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "75f451ac-c01d-41cc-8bd4-5318de02ab58",
        "identifier": [
          {
            "value": "cfb7d20c-74e2-42f3-9b54-1d534cb93b84",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "cfb7d20c-74e2-42f3-9b54-1d534cb93b84",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-51-1216",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99938492",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X144215X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-263-6147",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7640328531725018432  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/75f451ac-c01d-41cc-8bd4-5318de02ab58",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/75f451ac-c01d-41cc-8bd4-5318de02ab58"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Worcester",
            "line": [
              "590 Feil Extension Apt 47"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.36854382466466
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.74783643751881
                  }
                ]
              }
            ],
            "postalCode": "01545"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Roselyn270"
            ],
            "family": "Herman763"
          }
        ],
        "birthDate": "2011-12-20",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Floretta117 Kshlerin58"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.004695224377134045
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 6.995304775622866
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "77b530c6-f309-44cc-bbfb-db33b8e7db7b",
        "identifier": [
          {
            "value": "9200d3f7-2a54-426d-9563-ba656800b3ed",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "9200d3f7-2a54-426d-9563-ba656800b3ed",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-10-9190",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-605-1790",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4345774627017439574  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/77b530c6-f309-44cc-bbfb-db33b8e7db7b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/77b530c6-f309-44cc-bbfb-db33b8e7db7b"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "922 Cartwright Way"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.41963300882738
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.01731101917261
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Dwight645"
            ],
            "family": "D'Amore443",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1969-04-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Reatha769 Emard19"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Plymouth",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.6793464590499693
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 48.32065354095003
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "7d7d4262-488d-4348-ac37-f4aa56e91a04",
        "identifier": [
          {
            "value": "165c828d-952d-4a9e-9a08-6d87e2750ad8",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "165c828d-952d-4a9e-9a08-6d87e2750ad8",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-65-1633",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99917826",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X20547478X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-308-2246",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4076537416170931868  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/7d7d4262-488d-4348-ac37-f4aa56e91a04",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/7d7d4262-488d-4348-ac37-f4aa56e91a04"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "677 Hickle Mission Unit 60"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.389252726759004
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.99355515009941
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rickey821"
            ],
            "family": "Carter549",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1947-03-10",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Susan422 Powlowski563"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Marlborough",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.17679271811437
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 69.82320728188563
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "83991f61-aff5-4ae6-8559-3ef100c931a7",
        "identifier": [
          {
            "value": "c95b4938-48db-42bc-810c-5e4c2e6183f8",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "c95b4938-48db-42bc-810c-5e4c2e6183f8",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-13-9752",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99959011",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X33065346X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-292-6228",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 7139979375426057631  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/83991f61-aff5-4ae6-8559-3ef100c931a7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/83991f61-aff5-4ae6-8559-3ef100c931a7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "184 Zemlak Landing Suite 61"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.39121369146418
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.96402378694118
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Wallace647"
            ],
            "family": "Mayert710",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1971-05-29",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Inocencia535 Von197"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Worcester",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 47
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "8742d4ba-19ee-4f45-a8c1-3a53bd01cf01",
        "identifier": [
          {
            "value": "d2cd181d-5389-4a46-90c7-5e316886663b",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "d2cd181d-5389-4a46-90c7-5e316886663b",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-39-7273",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99956795",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X13276948X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-457-8449",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -7241977386687240004  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/8742d4ba-19ee-4f45-a8c1-3a53bd01cf01",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8742d4ba-19ee-4f45-a8c1-3a53bd01cf01"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Marlborough",
            "line": [
              "250 Kunde Trail"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.353739136686585
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.53664325781091
                  }
                ]
              }
            ],
            "postalCode": "01752"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Brendon298"
            ],
            "family": "Koepp521"
          }
        ],
        "birthDate": "2015-10-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Eleanore671 Jacobi462"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Beijing",
              "state": "Beijing Municipality",
              "country": "CN"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 3
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Chinese",
              "coding": [
                {
                  "code": "zh",
                  "system": "urn:ietf:bcp:47",
                  "display": "Chinese"
                }
              ]
            }
          }
        ],
        "id": "8d174758-12f6-4b37-96e3-64ab3788eedd",
        "identifier": [
          {
            "value": "0c2fd148-4d76-4dfd-8afd-c511699b9789",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "0c2fd148-4d76-4dfd-8afd-c511699b9789",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-73-8096",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-373-8232",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1643304167731949128  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/8d174758-12f6-4b37-96e3-64ab3788eedd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8d174758-12f6-4b37-96e3-64ab3788eedd"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Northampton",
            "line": [
              "411 Blanda Terrace"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.39754406220454
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -72.58371542570127
                  }
                ]
              }
            ],
            "postalCode": "01053"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Stuart913"
            ],
            "family": "King743",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1936-10-29",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Brittaney358 Mraz590"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 4.3534453546284535
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 77.64655464537155
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "8fe97232-f264-4f4f-873e-ae61ae6c6344",
        "identifier": [
          {
            "value": "33c69947-436b-4255-b147-2fb254441ae2",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "33c69947-436b-4255-b147-2fb254441ae2",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-51-7037",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99928161",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X17204788X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-153-5791",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6417328198193758917  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/8fe97232-f264-4f4f-873e-ae61ae6c6344",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8fe97232-f264-4f4f-873e-ae61ae6c6344"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "691 Nicolas Mill Unit 30"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.36763516377314
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.97971433074358
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Mariann762"
            ],
            "family": "White193",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Mariann762"
            ],
            "family": "Ankunding277",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1988-02-27",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Annalisa973 Rau926"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Somerset",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.039630925446366
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 29.960369074553633
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "93f09189-7ec2-4d0e-9310-f14efce8e4b6",
        "identifier": [
          {
            "value": "e233e269-7569-4ecb-bb28-abea8bd1d812",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "e233e269-7569-4ecb-bb28-abea8bd1d812",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-71-1673",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99914235",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X2597629X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-112-8777",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 2172763040123504279  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/93f09189-7ec2-4d0e-9310-f14efce8e4b6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/93f09189-7ec2-4d0e-9310-f14efce8e4b6"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "1074 Lakin Stravenue Apt 4"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.41063674915391
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.94380972657565
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Tatum703"
            ],
            "family": "Boehm581",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Tatum703"
            ],
            "family": "Cole117",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1942-10-19",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lamonica504 Schiller186"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Funchal",
              "state": "Madeira",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.8315567389119773
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 74.16844326108803
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "98470b8c-7de8-4d04-a42d-6babf09a85ec",
        "identifier": [
          {
            "value": "2e6ddf3a-1c3b-43d2-ab45-24fe241c195a",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2e6ddf3a-1c3b-43d2-ab45-24fe241c195a",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-36-4143",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99965947",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X68966932X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-685-7615",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3792856796388578844  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/98470b8c-7de8-4d04-a42d-6babf09a85ec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/98470b8c-7de8-4d04-a42d-6babf09a85ec"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Melrose",
            "line": [
              "783 Beier Glen Unit 21"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.51232164602865
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.99627374163501
                  }
                ]
              }
            ],
            "postalCode": "02176"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2000-09-26T14:12:17+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Maddie576"
            ],
            "family": "Corkery305",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1943-03-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Lorenza655 Heller342"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Leominster",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.7555603397969035
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 53.2444396602031
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "99c3c381-ec3a-4482-b021-e710ea879128",
        "identifier": [
          {
            "value": "f2d6632a-87f6-4fb0-b1cd-71fa1f17fe5d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "f2d6632a-87f6-4fb0-b1cd-71fa1f17fe5d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-30-9866",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99979118",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X41154738X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-138-8483",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -3422507492799572975  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/99c3c381-ec3a-4482-b021-e710ea879128",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/99c3c381-ec3a-4482-b021-e710ea879128"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Medford",
            "line": [
              "743 Hirthe Bay Unit 47"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.43825801663366
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.047857562971
                  }
                ]
              }
            ],
            "postalCode": "02145"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Otto672"
            ],
            "family": "Mayer370",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1972-07-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Wendie72 Greenholt190"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.524167297996618
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 44.47583270200338
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "9e5fd7cb-8e16-4c26-ae03-69592fc017d7",
        "identifier": [
          {
            "value": "17c5e5a7-0947-4079-9d13-41bcd4c0b859",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "17c5e5a7-0947-4079-9d13-41bcd4c0b859",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-54-7827",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99914259",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X4106627X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-594-2021",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1110145050775903702  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/9e5fd7cb-8e16-4c26-ae03-69592fc017d7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9e5fd7cb-8e16-4c26-ae03-69592fc017d7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "432 Windler Course"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.36740024321098
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.93538931715376
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2013-10-29T00:48:18+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Therese102"
            ],
            "family": "Cummerata161",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Therese102"
            ],
            "family": "Lueilwitz711",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1942-10-19",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Mazie442 Schamberger479"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Porto",
              "state": "Douro Litoral",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 7.4329001312437475
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.56709986875625
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "9eee2417-515b-4798-821f-dcca639c2222",
        "identifier": [
          {
            "value": "c0bb1df1-c245-4579-b3bd-29f8f6527322",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "c0bb1df1-c245-4579-b3bd-29f8f6527322",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-91-3901",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99929717",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X23521802X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-287-7003",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1617662264787423847  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/9eee2417-515b-4798-821f-dcca639c2222",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9eee2417-515b-4798-821f-dcca639c2222"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Mashpee",
            "line": [
              "1039 Deckow Vista"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.62404658467788
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.42502942956087
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Jan231"
            ],
            "family": "Oberbrunner298",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1945-07-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Linette249 Streich926"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Watertown",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.06996952020651317
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 72.93003047979349
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "9f1ee7e4-ec67-487e-a16f-0ceeccbe4409",
        "identifier": [
          {
            "value": "1c85aaa7-ba15-4c72-bd79-c06a30078549",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "1c85aaa7-ba15-4c72-bd79-c06a30078549",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-67-6627",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99922963",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X3159111X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-921-9716",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8446494676670141889  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/9f1ee7e4-ec67-487e-a16f-0ceeccbe4409",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9f1ee7e4-ec67-487e-a16f-0ceeccbe4409"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Medway",
            "line": [
              "973 Trantow Plaza"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.220615638799416
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.39564844402524
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Sunday568"
            ],
            "family": "MacGyver246",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "2000-11-10",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Julieta402 McKenzie376"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Waltham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 18
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "9fce4714-ed2b-4d98-be2e-f29e29677240",
        "identifier": [
          {
            "value": "e5713d99-2ca9-48f2-a2c9-49d707738419",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "e5713d99-2ca9-48f2-a2c9-49d707738419",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-55-7933",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99999516",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-298-5568",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4800938859176412428  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/9fce4714-ed2b-4d98-be2e-f29e29677240",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9fce4714-ed2b-4d98-be2e-f29e29677240"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lexington",
            "line": [
              "985 Bernier Dale Unit 54"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.54559109637397
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.17952567385395
                  }
                ]
              }
            ],
            "postalCode": "02420"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Bettie175"
            ],
            "family": "Williamson769",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Bettie175"
            ],
            "family": "Quitzon246",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1965-08-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Kenneth671 Kuphal363"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Millbury",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 2.7834848837246056
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 50.216515116275396
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "a6a91d7e-7ded-4325-9dbe-42a088e7e039",
        "identifier": [
          {
            "value": "ac943a9f-c445-4ccb-b089-f1ca35a3f23a",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ac943a9f-c445-4ccb-b089-f1ca35a3f23a",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-42-7406",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99978054",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X48317512X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-444-9594",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -845038257647766148  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/a6a91d7e-7ded-4325-9dbe-42a088e7e039",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a6a91d7e-7ded-4325-9dbe-42a088e7e039"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "370 Labadie Gate"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.405421990481905
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.92519488670929
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Lenny728"
            ],
            "family": "Huel628",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1987-06-06",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Loida499 Moore224"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 31
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec",
        "identifier": [
          {
            "value": "1d4d472f-1d95-4a83-92be-7d665357e045",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "1d4d472f-1d95-4a83-92be-7d665357e045",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-10-5654",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99934665",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X53082646X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-425-6532",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3071674441692314863  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Falmouth",
            "line": [
              "309 Watsica Brook"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.59805223487296
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.51439687116293
                  }
                ]
              }
            ],
            "postalCode": "02540"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Verla696"
            ],
            "family": "Goyette777",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1970-10-14",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Angelia425 Pollich983"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Lexington",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.003979369946003509
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 47.996020630054
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "a9dd99c6-de02-4729-a1a7-3ee968aeb5ed",
        "identifier": [
          {
            "value": "4301c61e-6a68-4e64-83fc-cb5c62438b95",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "4301c61e-6a68-4e64-83fc-cb5c62438b95",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-62-5398",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99951085",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X36924165X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-437-2424",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 4074285810208869799  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/a9dd99c6-de02-4729-a1a7-3ee968aeb5ed",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a9dd99c6-de02-4729-a1a7-3ee968aeb5ed"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Needham",
            "line": [
              "501 Wolf Common Apt 57"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.3670008531651
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.20507476017201
                  }
                ]
              }
            ],
            "postalCode": "02492"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rex53"
            ],
            "family": "Stamm704",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1970-07-22",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Chung121 Kuhlman484"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Macau",
              "state": "Macao Special Administrative Region of the People's Republic of China",
              "country": "CN"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 48
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Chinese",
              "coding": [
                {
                  "code": "zh",
                  "system": "urn:ietf:bcp:47",
                  "display": "Chinese"
                }
              ]
            }
          }
        ],
        "id": "abc45941-d80e-4da9-8300-2b5aa0311057",
        "identifier": [
          {
            "value": "97eff8bf-39b8-4ee1-979a-2e11e30ed15d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "97eff8bf-39b8-4ee1-979a-2e11e30ed15d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-58-9402",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99980980",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X39828881X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-138-2245",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 4068117872802269814  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/abc45941-d80e-4da9-8300-2b5aa0311057",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/abc45941-d80e-4da9-8300-2b5aa0311057"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "349 Kuphal Forge Apt 40"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.34122208696759
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.95613231399457
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2000-11-05T23:48:18+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Eugenie836"
            ],
            "family": "Hegmann834",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1942-10-19",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Janee223 Collins926"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Porto",
              "state": "Douro Litoral",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.07081303267864844
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 56.92918696732135
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "ac9df5c0-4af7-4f87-af5e-eefe6224e8ba",
        "identifier": [
          {
            "value": "71f3df5b-c387-4dbf-b6f8-ad3e538ed796",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "71f3df5b-c387-4dbf-b6f8-ad3e538ed796",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-15-3624",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99979437",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X7048733X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-860-3394",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 5038862410931162945  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/ac9df5c0-4af7-4f87-af5e-eefe6224e8ba",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ac9df5c0-4af7-4f87-af5e-eefe6224e8ba"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "436 Leuschke Rue Unit 80"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.40095510309136
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.99828819611112
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2002-12-09T23:48:18+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Leonora414"
            ],
            "family": "Koch169",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1942-10-19",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Dorie139 Hirthe744"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Braga",
              "state": "Minho",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.537975149561454
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 58.462024850438546
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "b262c1ba-d4da-4791-877c-c69a128f0c2b",
        "identifier": [
          {
            "value": "20ad42a3-b5f6-49b3-8bc1-54e8cd8055e3",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "20ad42a3-b5f6-49b3-8bc1-54e8cd8055e3",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-42-2980",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99925148",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X64487284X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-365-6918",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 2970348832326198628  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/b262c1ba-d4da-4791-877c-c69a128f0c2b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b262c1ba-d4da-4791-877c-c69a128f0c2b"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Acton",
            "line": [
              "456 Thompson Byway"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.52555196117647
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.37937649739976
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Patty600"
            ],
            "family": "Lindgren255",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1992-10-01",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Remedios388 Braun514"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Tewksbury",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.43500807625683385
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 25.564991923743165
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "b2d58f0f-4499-4392-ad3a-1c2141c8a6c1",
        "identifier": [
          {
            "value": "d460ed5d-0ea9-4df4-b4f5-782bcfb786f9",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "d460ed5d-0ea9-4df4-b4f5-782bcfb786f9",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-40-3533",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99954091",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X12873195X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-245-8473",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8342940395077410886  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/b2d58f0f-4499-4392-ad3a-1c2141c8a6c1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b2d58f0f-4499-4392-ad3a-1c2141c8a6c1"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "North Andover",
            "line": [
              "902 Connelly Wynd"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.76948720782503
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.02175436913726
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Rosita520"
            ],
            "family": "Hermann103"
          }
        ],
        "birthDate": "2013-09-18",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Nannette779 Effertz744"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Danvers",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.01173806094283511
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 4.988261939057165
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "b47bf393-a5fa-449c-89e1-ab022e02e00b",
        "identifier": [
          {
            "value": "1bf88712-8198-4cbd-8188-55577c207060",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "1bf88712-8198-4cbd-8188-55577c207060",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-14-5382",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-420-9488",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 7107087006658381684  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/b47bf393-a5fa-449c-89e1-ab022e02e00b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b47bf393-a5fa-449c-89e1-ab022e02e00b"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Rowley",
            "line": [
              "779 Nader Stravenue Suite 16"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.809939988359325
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.82249490153674
                  }
                ]
              }
            ],
            "postalCode": "01969"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kris249"
            ],
            "family": "Jakubowski832",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1997-04-10",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Madelyn308 Lubowitz58"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Williamstown",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 21
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "b52f3afa-bbce-4594-8e38-9a30ca8a99c0",
        "identifier": [
          {
            "value": "7ff09a44-9b81-42e2-b99f-60c13239900a",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "7ff09a44-9b81-42e2-b99f-60c13239900a",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-47-7511",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99991379",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X88065875X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-260-7861",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4573620470924247182  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/b52f3afa-bbce-4594-8e38-9a30ca8a99c0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b52f3afa-bbce-4594-8e38-9a30ca8a99c0"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Malden",
            "line": [
              "766 Satterfield Tunnel"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.477478742046884
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.04427442603799
                  }
                ]
              }
            ],
            "postalCode": "02148"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Federico589"
            ],
            "family": "Satterfield305",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1955-08-27",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Maryrose226 Blick895"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Woburn",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.8681330310500528
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.13186696894995
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "ba8ca47f-385f-4b20-acdb-57d6d00783e3",
        "identifier": [
          {
            "value": "0636a68a-b854-498a-8ef0-a03f4d2e3011",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "0636a68a-b854-498a-8ef0-a03f4d2e3011",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-93-4928",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99950487",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X34863297X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-554-4093",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8845411433811466813  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/ba8ca47f-385f-4b20-acdb-57d6d00783e3",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ba8ca47f-385f-4b20-acdb-57d6d00783e3"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Boston",
            "line": [
              "1082 Treutel Loaf"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.34652238021674
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.96992303580578
                  }
                ]
              }
            ],
            "postalCode": "02108"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Emmett200"
            ],
            "family": "Swift555",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1997-06-15",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Gricelda41 Ward668"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.15822738672885453
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 20.841772613271146
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "ba8df188-dbf9-471f-9302-48b893b0b651",
        "identifier": [
          {
            "value": "1e4d071a-9242-466b-bc23-6f7ae316f505",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "1e4d071a-9242-466b-bc23-6f7ae316f505",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-14-5921",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99988351",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X64864733X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-827-3367",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6440767073827767680  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/ba8df188-dbf9-471f-9302-48b893b0b651",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ba8df188-dbf9-471f-9302-48b893b0b651"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "139 Reynolds Skyway"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.539170971841635
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.19938775078703
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Faviola526"
            ],
            "family": "Langosh790",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Faviola526"
            ],
            "family": "Lubowitz58",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1974-01-29",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Selma398 Rodriguez71"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Barnstable",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.5124044750664264
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 43.487595524933575
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "c60ac337-2ebe-48f0-92bf-931299142164",
        "identifier": [
          {
            "value": "2d9886f9-f6cd-4596-8d0c-fd06b5d59043",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2d9886f9-f6cd-4596-8d0c-fd06b5d59043",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-82-8778",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99995682",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X27775166X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-265-8107",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -2486841907819978388  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/c60ac337-2ebe-48f0-92bf-931299142164",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c60ac337-2ebe-48f0-92bf-931299142164"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Barre",
            "line": [
              "776 Dach Pathway Suite 72"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.46929740476231
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -72.0918381324824
                  }
                ]
              }
            ],
            "postalCode": "01005"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Deangelo7"
            ],
            "family": "White193"
          }
        ],
        "birthDate": "2012-03-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Christena299 Simonis280"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Holyoke",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.04871597283424273
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.951284027165757
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee",
        "identifier": [
          {
            "value": "917e8f3f-769d-43cd-959b-a00074853881",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "917e8f3f-769d-43cd-959b-a00074853881",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-33-8467",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-911-1384",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -2459529759176095907  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Sterling",
            "line": [
              "758 Pagac Knoll"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.527684451547906
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.74858985268247
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Hilton264"
            ],
            "family": "Fadel536",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1970-08-31",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Aline709 Bernhard322"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Worcester",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.20126796244836637
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 47.79873203755163
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "c860b52d-fdf5-4174-87ac-71cf68d97e87",
        "identifier": [
          {
            "value": "624f3660-8311-4455-84fe-7bba95271c67",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "624f3660-8311-4455-84fe-7bba95271c67",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-58-4982",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99974649",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X3680120X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-260-9843",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8274569097067909373  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/c860b52d-fdf5-4174-87ac-71cf68d97e87",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c860b52d-fdf5-4174-87ac-71cf68d97e87"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Fall River",
            "line": [
              "278 Goyette Heights"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.73307313393666
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.05916125444993
                  }
                ]
              }
            ],
            "postalCode": "02720"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Ivey393"
            ],
            "family": "Lindgren255",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1962-10-07",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2054-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Black or African American"
                }
              },
              {
                "url": "text",
                "valueString": "Black or African American"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Annabelle638 O'Conner199"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Santo Domingo",
              "state": "National District",
              "country": "DO"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.5601044664967928
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 55.439895533503204
          }
        ],
        "communication": [
          {
            "language": {
              "text": "French",
              "coding": [
                {
                  "code": "fr",
                  "system": "urn:ietf:bcp:47",
                  "display": "French"
                }
              ]
            }
          }
        ],
        "id": "c9e24ae1-0355-4b50-8b7b-06bd5572a7a8",
        "identifier": [
          {
            "value": "ff9a80ae-0fa0-46ae-ad26-4148f033a5f4",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ff9a80ae-0fa0-46ae-ad26-4148f033a5f4",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-50-3227",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99983049",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X1787003X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-720-2107",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8093143371774845853  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/c9e24ae1-0355-4b50-8b7b-06bd5572a7a8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c9e24ae1-0355-4b50-8b7b-06bd5572a7a8"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Mashpee",
            "line": [
              "1099 Pfeffer Ramp Unit 66"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 41.63464720909092
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.45643123865334
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2010-01-31T01:36:15+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Nicolas769"
            ],
            "family": "Feest103",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1945-07-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Elsie248 Spinka232"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Milton",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 1.8323689221250332
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 62.167631077874965
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472",
        "identifier": [
          {
            "value": "010d217f-37f3-4dc7-89bf-37ac92384688",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "010d217f-37f3-4dc7-89bf-37ac92384688",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-82-3573",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99962845",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X25910794X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-966-6344",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -1647784019960485754  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Waltham",
            "line": [
              "991 Torp Approach Unit 48"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.41376555020163
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.16009828900057
                  }
                ]
              }
            ],
            "postalCode": "02451"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Janine159"
            ],
            "family": "Anderson154"
          }
        ],
        "birthDate": "2017-05-14",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Twyla619 Pfannerstill264"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Boston",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 1
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "ce33fd9b-bc28-4348-84e5-f47d1113b20d",
        "identifier": [
          {
            "value": "7d893cc5-7c46-445b-94bd-27416aa00e5c",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "7d893cc5-7c46-445b-94bd-27416aa00e5c",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-16-2816",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-473-3196",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6283985887128216124  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Northampton",
            "line": [
              "325 Grady Bridge Unit 94"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.34640519544775
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -72.60254174041404
                  }
                ]
              }
            ],
            "postalCode": "01053"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1992-10-30T03:35:59+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Lance203"
            ],
            "family": "McKenzie376",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1936-10-29",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Danelle47 Schoen8"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Hingham",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 55
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "cf6d4375-b8f8-479a-b0fc-6c1d08cd023e",
        "identifier": [
          {
            "value": "c07fd3b2-209d-4302-ba44-c15b17244020",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "c07fd3b2-209d-4302-ba44-c15b17244020",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-86-8957",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99999874",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X49550521X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-463-8305",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -2950563312576559881  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/cf6d4375-b8f8-479a-b0fc-6c1d08cd023e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/cf6d4375-b8f8-479a-b0fc-6c1d08cd023e"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Wakefield",
            "line": [
              "966 Leuschke Crossroad Apt 13"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.52034761553748
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.98905243700042
                  }
                ]
              }
            ],
            "postalCode": "01880"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Fred155"
            ],
            "family": "Dicki44"
          }
        ],
        "birthDate": "2006-02-21",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Alesha810 Crona259"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Fall River",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.011403113934335695
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 11.988596886065665
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "d291a9be-9f47-4801-a4da-67b0984daaa0",
        "identifier": [
          {
            "value": "f41f6345-85f5-4ee5-bd30-eac0c053301e",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "f41f6345-85f5-4ee5-bd30-eac0c053301e",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-44-9298",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-797-6691",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3766858585007109041  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/d291a9be-9f47-4801-a4da-67b0984daaa0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/d291a9be-9f47-4801-a4da-67b0984daaa0"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lynn",
            "line": [
              "937 Sawayn Grove Apt 77"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.56751688371847
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.91715149261695
                  }
                ]
              }
            ],
            "postalCode": "01901"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Blythe746"
            ],
            "family": "Kub800",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Blythe746"
            ],
            "family": "Fay398",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1981-01-17",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Kimiko714 Moen819"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Weymouth",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.4236103049067239
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 36.576389695093276
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "d4734450-3eab-44b1-b2fb-0940c9e3bb10",
        "identifier": [
          {
            "value": "b6b890d9-6356-4924-b31c-0cc02fd5f205",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "b6b890d9-6356-4924-b31c-0cc02fd5f205",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-82-4046",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99966726",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X4491139X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-468-6419",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -6143050547518375762  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/d4734450-3eab-44b1-b2fb-0940c9e3bb10",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/d4734450-3eab-44b1-b2fb-0940c9e3bb10"
        }
      ]
    }
  ],
  "total": 124,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?__lastUpdated=2021-08-26&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?__lastUpdated=2021-08-26&page=1"
    },
    {
      "relation": "next",
      "url": "/fhir/Patient?__lastUpdated=2021-08-26&page=2"
    },
    {
      "relation": "last",
      "url": "/fhir/Patient?__lastUpdated=2021-08-26&page=2"
    }
  ]
}

Get Patient resources by createdAt attribute (_createdAt)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_createdAt=2021-08-26

Search Patient resource by text attribute (_text)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_text=6657422227777146042
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "947"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "497 Emmerich Arcade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.531556260164436
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.21250769634847
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Calvin845"
            ],
            "family": "DuBuque211"
          }
        ],
        "birthDate": "2012-10-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Marquitta546 Runolfsson901"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Attleboro",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.005735004927900484
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.9942649950721
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "identifier": [
          {
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-94-5813",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-3253",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6657422227777146042  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    }
  ],
  "total": 1,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_text=6657422227777146042&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_text=6657422227777146042&page=1"
    }
  ]
}

Search Patient resources by content of all attribute (_content)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_content=Calvin845
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "947"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "497 Emmerich Arcade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.531556260164436
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.21250769634847
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Calvin845"
            ],
            "family": "DuBuque211"
          }
        ],
        "birthDate": "2012-10-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Marquitta546 Runolfsson901"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Attleboro",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.005735004927900484
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.9942649950721
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "identifier": [
          {
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-94-5813",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-3253",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6657422227777146042  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    }
  ],
  "total": 1,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_content=Calvin845&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_content=Calvin845&page=1"
    }
  ]
}

Search Patient resources including substring in text representation of resource (_ilike)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_ilike=Calvi
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "947"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "497 Emmerich Arcade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.531556260164436
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.21250769634847
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Calvin845"
            ],
            "family": "DuBuque211"
          }
        ],
        "birthDate": "2012-10-09",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Marquitta546 Runolfsson901"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Attleboro",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.005735004927900484
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.9942649950721
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "identifier": [
          {
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-94-5813",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-3253",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6657422227777146042  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    }
  ],
  "total": 1,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_ilike=Calvi&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_ilike=Calvi&page=1"
    }
  ]
}

Select attributes returned by search (_elements)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_ilike=massachusetts&_elements=name.family,address.city
Response: Body
Status: 200
{
  "query-time": 26,
  "meta": {
    "versionId": "947"
  },
  "type": "searchset",
  "resourceType": "Bundle",
  "total": 124,
  "link": [
    {
      "relation": "first",
      "url": "/Patient?_ilike=massachusetts&_elements=name.family,address.city&page=1"
    },
    {
      "relation": "self",
      "url": "/Patient?_ilike=massachusetts&_elements=name.family,address.city&page=1"
    },
    {
      "relation": "next",
      "url": "/Patient?_ilike=massachusetts&_elements=name.family,address.city&page=2"
    },
    {
      "relation": "last",
      "url": "/Patient?_ilike=massachusetts&_elements=name.family,address.city&page=2"
    }
  ],
  "query-timeout": 60000,
  "entry": [
    {
      "resource": {
        "address": [
          {
            "city": "Pittsfield"
          }
        ],
        "name": [
          {
            "family": "DuBuque211"
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "West Newbury"
          }
        ],
        "name": [
          {
            "family": "Hernandes724"
          },
          {
            "family": "Chacón810"
          }
        ],
        "id": "08b9a2bf-7492-4d15-b97f-00b54a3b35ee",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/08b9a2bf-7492-4d15-b97f-00b54a3b35ee",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/08b9a2bf-7492-4d15-b97f-00b54a3b35ee"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Wilkinson796"
          },
          {
            "family": "McDermott739"
          }
        ],
        "id": "0be40874-5ae1-46e0-b549-1b5e17c58518",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/0be40874-5ae1-46e0-b549-1b5e17c58518",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0be40874-5ae1-46e0-b549-1b5e17c58518"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lunenburg"
          }
        ],
        "name": [
          {
            "family": "Windler79"
          }
        ],
        "id": "0e57e58d-8721-44ab-834d-b09cefd6a76b",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/0e57e58d-8721-44ab-834d-b09cefd6a76b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0e57e58d-8721-44ab-834d-b09cefd6a76b"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "West Brookfield"
          }
        ],
        "name": [
          {
            "family": "Nicolas769"
          }
        ],
        "id": "0ec5c51b-56d4-433e-a320-297faf061237",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/0ec5c51b-56d4-433e-a320-297faf061237",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/0ec5c51b-56d4-433e-a320-297faf061237"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Norwood"
          }
        ],
        "name": [
          {
            "family": "Ortiz186"
          }
        ],
        "id": "102e001e-df1b-4fa8-adfe-6e2acb69aae8",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/102e001e-df1b-4fa8-adfe-6e2acb69aae8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/102e001e-df1b-4fa8-adfe-6e2acb69aae8"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Marlborough"
          }
        ],
        "name": [
          {
            "family": "Morar593"
          }
        ],
        "id": "14025d1b-3e46-4cbb-9ef2-f913cb6be139",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/14025d1b-3e46-4cbb-9ef2-f913cb6be139",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/14025d1b-3e46-4cbb-9ef2-f913cb6be139"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Sanford861"
          }
        ],
        "id": "16dc22c0-96c4-42f0-b42a-afa5f3f28f53",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/16dc22c0-96c4-42f0-b42a-afa5f3f28f53",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/16dc22c0-96c4-42f0-b42a-afa5f3f28f53"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Tromp100"
          }
        ],
        "id": "179adc51-6875-4191-ad16-160339ed45cc",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/179adc51-6875-4191-ad16-160339ed45cc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/179adc51-6875-4191-ad16-160339ed45cc"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Fall River"
          }
        ],
        "name": [
          {
            "family": "Lebsack687"
          },
          {
            "family": "Heaney114"
          }
        ],
        "id": "19317bbf-767a-449a-a725-10957c03f9ec",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/19317bbf-767a-449a-a725-10957c03f9ec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/19317bbf-767a-449a-a725-10957c03f9ec"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Haverhill"
          }
        ],
        "name": [
          {
            "family": "Connelly992"
          }
        ],
        "id": "1ce27aca-63d3-4224-898a-0d2821700641",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/1ce27aca-63d3-4224-898a-0d2821700641",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/1ce27aca-63d3-4224-898a-0d2821700641"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Gloucester"
          }
        ],
        "name": [
          {
            "family": "Cummings51"
          }
        ],
        "id": "210d8d28-d601-43f9-a02b-d70c99b904b0",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/210d8d28-d601-43f9-a02b-d70c99b904b0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/210d8d28-d601-43f9-a02b-d70c99b904b0"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Mattapoisett"
          }
        ],
        "name": [
          {
            "family": "Heller342"
          },
          {
            "family": "Champlin946"
          }
        ],
        "id": "23781071-a79a-4d2f-89d2-d84c003cfcb4",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/23781071-a79a-4d2f-89d2-d84c003cfcb4",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/23781071-a79a-4d2f-89d2-d84c003cfcb4"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Westford"
          }
        ],
        "name": [
          {
            "family": "Christiansen251"
          }
        ],
        "id": "2420476f-4a8d-455f-9991-a19f09d2c9a6",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/2420476f-4a8d-455f-9991-a19f09d2c9a6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2420476f-4a8d-455f-9991-a19f09d2c9a6"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Curiel392"
          }
        ],
        "id": "24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/24e4bd6d-ef2e-43bb-a785-f23c5cde4dd7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Milton"
          }
        ],
        "name": [
          {
            "family": "Gaylord332"
          }
        ],
        "id": "28572f59-c778-4d3e-91ad-c5b2488ebc1d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/28572f59-c778-4d3e-91ad-c5b2488ebc1d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28572f59-c778-4d3e-91ad-c5b2488ebc1d"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Funk324"
          },
          {
            "family": "Reichert620"
          }
        ],
        "id": "28694499-75a8-4f18-86da-406ea997460d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/28694499-75a8-4f18-86da-406ea997460d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28694499-75a8-4f18-86da-406ea997460d"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lawrence"
          }
        ],
        "name": [
          {
            "family": "Walker122"
          },
          {
            "family": "Bernhard322"
          }
        ],
        "id": "da6facf9-d4fa-4c38-8424-278ea93cffe8",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/da6facf9-d4fa-4c38-8424-278ea93cffe8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/da6facf9-d4fa-4c38-8424-278ea93cffe8"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Dartmouth"
          }
        ],
        "name": [
          {
            "family": "Schuppe920"
          }
        ],
        "id": "dce370cf-b720-441e-a183-c69e6f107417",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/dce370cf-b720-441e-a183-c69e6f107417",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/dce370cf-b720-441e-a183-c69e6f107417"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Lebsack687"
          },
          {
            "family": "Ratke343"
          }
        ],
        "id": "ddac979a-2c34-4872-995c-fc2f25c60b5a",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ddac979a-2c34-4872-995c-fc2f25c60b5a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ddac979a-2c34-4872-995c-fc2f25c60b5a"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Salem"
          }
        ],
        "name": [
          {
            "family": "Yundt842"
          }
        ],
        "id": "e0f57407-86ed-405b-aa55-56fb0bebc4c7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Zemlak964"
          }
        ],
        "id": "e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Melrose"
          }
        ],
        "name": [
          {
            "family": "Bosco882"
          },
          {
            "family": "Johns824"
          }
        ],
        "id": "e2544f67-b379-4038-b5af-73ddf5c718af",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Haverhill"
          }
        ],
        "name": [
          {
            "family": "Schmitt836"
          }
        ],
        "id": "e3b1dab2-5e09-4ea1-81ea-eed300770423",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Leuschke194"
          }
        ],
        "id": "e455762c-5a62-4c01-bf33-b549e4274dbc",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Newton"
          }
        ],
        "name": [
          {
            "family": "Zemlak964"
          }
        ],
        "id": "28c7b1a9-ce7c-4b7a-9626-41568a8f18d6",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/28c7b1a9-ce7c-4b7a-9626-41568a8f18d6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/28c7b1a9-ce7c-4b7a-9626-41568a8f18d6"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Franklin"
          }
        ],
        "name": [
          {
            "family": "Adorno791"
          }
        ],
        "id": "2a5029b7-03cb-41a6-9479-737ee62a3cfd",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Ziemann98"
          },
          {
            "family": "Champlin946"
          }
        ],
        "id": "2b08424d-1733-4ded-b5db-54ff3cda2557",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/2b08424d-1733-4ded-b5db-54ff3cda2557",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2b08424d-1733-4ded-b5db-54ff3cda2557"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Dartmouth"
          }
        ],
        "name": [
          {
            "family": "MacGyver246"
          }
        ],
        "id": "2c5b8a64-b479-4f37-b5e1-18f0eed1f6af",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/2c5b8a64-b479-4f37-b5e1-18f0eed1f6af",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2c5b8a64-b479-4f37-b5e1-18f0eed1f6af"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Fall River"
          }
        ],
        "name": [
          {
            "family": "Dooley940"
          }
        ],
        "id": "3120bba2-b99e-4aad-a14e-d8a16b86806d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/3120bba2-b99e-4aad-a14e-d8a16b86806d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/3120bba2-b99e-4aad-a14e-d8a16b86806d"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Tijerina14"
          }
        ],
        "id": "357444e9-3159-4063-a975-ccd72923ee8b",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/357444e9-3159-4063-a975-ccd72923ee8b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/357444e9-3159-4063-a975-ccd72923ee8b"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Danvers"
          }
        ],
        "name": [
          {
            "family": "O'Keefe54"
          },
          {
            "family": "Batz141"
          }
        ],
        "id": "36f77720-2032-4e75-ac7e-1cdcddc69c92",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/36f77720-2032-4e75-ac7e-1cdcddc69c92",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/36f77720-2032-4e75-ac7e-1cdcddc69c92"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Fall River"
          }
        ],
        "name": [
          {
            "family": "Koss676"
          }
        ],
        "id": "38ad2730-be38-4e9a-97a0-2b97c8574814",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/38ad2730-be38-4e9a-97a0-2b97c8574814",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/38ad2730-be38-4e9a-97a0-2b97c8574814"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Ashland"
          }
        ],
        "name": [
          {
            "family": "Hagenes547"
          }
        ],
        "id": "39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/39d2ce4b-34c6-4f52-aef7-c96a9f4e27c1"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Canton"
          }
        ],
        "name": [
          {
            "family": "Hermiston71"
          }
        ],
        "id": "3eb31aa6-4be8-4e2b-8ee6-42d6f044b953",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/3eb31aa6-4be8-4e2b-8ee6-42d6f044b953",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/3eb31aa6-4be8-4e2b-8ee6-42d6f044b953"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Worcester"
          }
        ],
        "name": [
          {
            "family": "Bahringer146"
          }
        ],
        "id": "410b2e4a-9212-4c2d-8252-6f9213f8fb67",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/410b2e4a-9212-4c2d-8252-6f9213f8fb67",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/410b2e4a-9212-4c2d-8252-6f9213f8fb67"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Melrose"
          }
        ],
        "name": [
          {
            "family": "Howe413"
          }
        ],
        "id": "41907da4-2926-4f7a-9326-bb18585b07bf",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/41907da4-2926-4f7a-9326-bb18585b07bf",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/41907da4-2926-4f7a-9326-bb18585b07bf"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Orleans"
          }
        ],
        "name": [
          {
            "family": "Erdman779"
          },
          {
            "family": "Trantow673"
          }
        ],
        "id": "41ad3730-37c2-49cc-87a1-0a21702c3903",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/41ad3730-37c2-49cc-87a1-0a21702c3903",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/41ad3730-37c2-49cc-87a1-0a21702c3903"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Westborough"
          }
        ],
        "name": [
          {
            "family": "Galván169"
          }
        ],
        "id": "427e7fc7-b8cc-4d60-9139-0a4f0ae94d55",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/427e7fc7-b8cc-4d60-9139-0a4f0ae94d55",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/427e7fc7-b8cc-4d60-9139-0a4f0ae94d55"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Amherst"
          }
        ],
        "name": [
          {
            "family": "Farrell962"
          },
          {
            "family": "Howell947"
          }
        ],
        "id": "43b3d8de-e4d6-41b9-a98f-3818ed42c413",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/43b3d8de-e4d6-41b9-a98f-3818ed42c413",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/43b3d8de-e4d6-41b9-a98f-3818ed42c413"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Danvers"
          }
        ],
        "name": [
          {
            "family": "Howe413"
          },
          {
            "family": "Rohan584"
          }
        ],
        "id": "44d86263-d939-4dff-8ce7-a5a86d70c348",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/44d86263-d939-4dff-8ce7-a5a86d70c348",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/44d86263-d939-4dff-8ce7-a5a86d70c348"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Norwood"
          }
        ],
        "name": [
          {
            "family": "Bartell116"
          }
        ],
        "id": "47133897-bdbf-43fd-bef8-d34a40e4deb6",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/47133897-bdbf-43fd-bef8-d34a40e4deb6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/47133897-bdbf-43fd-bef8-d34a40e4deb6"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Tyngsborough"
          }
        ],
        "name": [
          {
            "family": "Thompson596"
          }
        ],
        "id": "4747365a-a6c0-4240-8d24-5b58d94f38cd",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/4747365a-a6c0-4240-8d24-5b58d94f38cd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4747365a-a6c0-4240-8d24-5b58d94f38cd"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Hopkinton"
          }
        ],
        "name": [
          {
            "family": "Mueller846"
          }
        ],
        "id": "478655d2-2d82-4fb0-bef8-3ff8192271ed",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/478655d2-2d82-4fb0-bef8-3ff8192271ed",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/478655d2-2d82-4fb0-bef8-3ff8192271ed"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Everett"
          }
        ],
        "name": [
          {
            "family": "Schroeder447"
          }
        ],
        "id": "49cad500-1ca6-4a51-8c6f-daf7e8ec9c71",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/49cad500-1ca6-4a51-8c6f-daf7e8ec9c71",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/49cad500-1ca6-4a51-8c6f-daf7e8ec9c71"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Brookline"
          }
        ],
        "name": [
          {
            "family": "Zieme486"
          }
        ],
        "id": "4a1eff12-e327-4431-8fb3-7273850aaca7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/4a1eff12-e327-4431-8fb3-7273850aaca7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4a1eff12-e327-4431-8fb3-7273850aaca7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Framingham"
          }
        ],
        "name": [
          {
            "family": "Arevalo970"
          }
        ],
        "id": "4fa99696-25c8-4d67-b848-1cc69b326f59",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Newton"
          }
        ],
        "name": [
          {
            "family": "Stracke611"
          }
        ],
        "id": "51f199d3-9d88-42d8-b478-6ed89d57dbf4",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/51f199d3-9d88-42d8-b478-6ed89d57dbf4",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/51f199d3-9d88-42d8-b478-6ed89d57dbf4"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Arlington"
          }
        ],
        "name": [
          {
            "family": "Luevano912"
          }
        ],
        "id": "54524604-4f11-4d50-b631-4008f8d058de",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/54524604-4f11-4d50-b631-4008f8d058de",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/54524604-4f11-4d50-b631-4008f8d058de"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Everett"
          }
        ],
        "name": [
          {
            "family": "Casper496"
          }
        ],
        "id": "55c11701-518c-4ef4-b3d8-d4f996046d36",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/55c11701-518c-4ef4-b3d8-d4f996046d36",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/55c11701-518c-4ef4-b3d8-d4f996046d36"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Sanford861"
          }
        ],
        "id": "56186895-3ad4-409c-8969-127b8d91e40e",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/56186895-3ad4-409c-8969-127b8d91e40e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/56186895-3ad4-409c-8969-127b8d91e40e"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Natick"
          }
        ],
        "name": [
          {
            "family": "Douglas31"
          }
        ],
        "id": "5b18f768-0145-4dd1-ad43-4180ab194856",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5b18f768-0145-4dd1-ad43-4180ab194856",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5b18f768-0145-4dd1-ad43-4180ab194856"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lynn"
          }
        ],
        "name": [
          {
            "family": "Hettinger594"
          }
        ],
        "id": "5b5b7a5b-c586-4694-88e1-afa97116f777",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5b5b7a5b-c586-4694-88e1-afa97116f777",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5b5b7a5b-c586-4694-88e1-afa97116f777"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Somerville"
          }
        ],
        "name": [
          {
            "family": "Bradtke547"
          }
        ],
        "id": "5bad6369-e2f1-41d3-aae2-daf1d603cb50",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5bad6369-e2f1-41d3-aae2-daf1d603cb50",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5bad6369-e2f1-41d3-aae2-daf1d603cb50"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Revere"
          }
        ],
        "name": [
          {
            "family": "Schiller186"
          }
        ],
        "id": "5dd6383c-2e0a-4363-8d43-7a2fa889144d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5dd6383c-2e0a-4363-8d43-7a2fa889144d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5dd6383c-2e0a-4363-8d43-7a2fa889144d"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Schaden604"
          }
        ],
        "id": "5deb2b4c-e1e2-4c1a-a74e-f028db8aa410",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5deb2b4c-e1e2-4c1a-a74e-f028db8aa410",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5deb2b4c-e1e2-4c1a-a74e-f028db8aa410"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Marblehead"
          }
        ],
        "name": [
          {
            "family": "Davis923"
          }
        ],
        "id": "5e23837b-8ef5-46cd-9046-82cd4033bdb3",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/5e23837b-8ef5-46cd-9046-82cd4033bdb3",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/5e23837b-8ef5-46cd-9046-82cd4033bdb3"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lincoln"
          }
        ],
        "name": [
          {
            "family": "Botsford977"
          },
          {
            "family": "Aufderhar910"
          }
        ],
        "id": "61bdd30b-ee2b-4033-a9de-112ac1271e91",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/61bdd30b-ee2b-4033-a9de-112ac1271e91",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/61bdd30b-ee2b-4033-a9de-112ac1271e91"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Corkery305"
          },
          {
            "family": "Lakin515"
          }
        ],
        "id": "65b5dda3-47f2-4607-8988-c0ba7f7a487a",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/65b5dda3-47f2-4607-8988-c0ba7f7a487a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/65b5dda3-47f2-4607-8988-c0ba7f7a487a"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Heathcote539"
          }
        ],
        "id": "66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/66a6a2a1-6f8f-4144-beba-e9d3d74d5fa7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Chelsea"
          }
        ],
        "name": [
          {
            "family": "Oberbrunner298"
          }
        ],
        "id": "6a2fc8f4-92e2-4411-8201-47b12858921e",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/6a2fc8f4-92e2-4411-8201-47b12858921e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6a2fc8f4-92e2-4411-8201-47b12858921e"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Westport"
          }
        ],
        "name": [
          {
            "family": "Stoltenberg489"
          }
        ],
        "id": "6bcca3ba-8470-4f6c-805d-291586192a25",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/6bcca3ba-8470-4f6c-805d-291586192a25",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6bcca3ba-8470-4f6c-805d-291586192a25"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lawrence"
          }
        ],
        "name": [
          {
            "family": "Niño185"
          },
          {
            "family": "Contreras711"
          }
        ],
        "id": "6bf460a9-ec19-4e7f-bc81-cf631f430336",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/6bf460a9-ec19-4e7f-bc81-cf631f430336",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6bf460a9-ec19-4e7f-bc81-cf631f430336"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lawrence"
          }
        ],
        "name": [
          {
            "family": "Romaguera67"
          }
        ],
        "id": "6fae52cd-c193-4316-be74-420a4656ea67",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/6fae52cd-c193-4316-be74-420a4656ea67",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/6fae52cd-c193-4316-be74-420a4656ea67"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Gaylord332"
          }
        ],
        "id": "73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/73d27fd6-d2a9-4a11-8da4-54fdf7d9f3da"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Ashland"
          }
        ],
        "name": [
          {
            "family": "O'Keefe54"
          },
          {
            "family": "VonRueden376"
          }
        ],
        "id": "7431e052-639d-41bd-b20d-7883640f1a5a",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/7431e052-639d-41bd-b20d-7883640f1a5a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/7431e052-639d-41bd-b20d-7883640f1a5a"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Beverly"
          }
        ],
        "name": [
          {
            "family": "Conn188"
          }
        ],
        "id": "75f451ac-c01d-41cc-8bd4-5318de02ab58",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/75f451ac-c01d-41cc-8bd4-5318de02ab58",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/75f451ac-c01d-41cc-8bd4-5318de02ab58"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Worcester"
          }
        ],
        "name": [
          {
            "family": "Herman763"
          }
        ],
        "id": "77b530c6-f309-44cc-bbfb-db33b8e7db7b",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/77b530c6-f309-44cc-bbfb-db33b8e7db7b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/77b530c6-f309-44cc-bbfb-db33b8e7db7b"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "D'Amore443"
          }
        ],
        "id": "7d7d4262-488d-4348-ac37-f4aa56e91a04",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/7d7d4262-488d-4348-ac37-f4aa56e91a04",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/7d7d4262-488d-4348-ac37-f4aa56e91a04"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Carter549"
          }
        ],
        "id": "83991f61-aff5-4ae6-8559-3ef100c931a7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/83991f61-aff5-4ae6-8559-3ef100c931a7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/83991f61-aff5-4ae6-8559-3ef100c931a7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Mayert710"
          }
        ],
        "id": "8742d4ba-19ee-4f45-a8c1-3a53bd01cf01",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/8742d4ba-19ee-4f45-a8c1-3a53bd01cf01",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8742d4ba-19ee-4f45-a8c1-3a53bd01cf01"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Marlborough"
          }
        ],
        "name": [
          {
            "family": "Koepp521"
          }
        ],
        "id": "8d174758-12f6-4b37-96e3-64ab3788eedd",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/8d174758-12f6-4b37-96e3-64ab3788eedd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8d174758-12f6-4b37-96e3-64ab3788eedd"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Northampton"
          }
        ],
        "name": [
          {
            "family": "King743"
          }
        ],
        "id": "8fe97232-f264-4f4f-873e-ae61ae6c6344",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/8fe97232-f264-4f4f-873e-ae61ae6c6344",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/8fe97232-f264-4f4f-873e-ae61ae6c6344"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "White193"
          },
          {
            "family": "Ankunding277"
          }
        ],
        "id": "93f09189-7ec2-4d0e-9310-f14efce8e4b6",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/93f09189-7ec2-4d0e-9310-f14efce8e4b6",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/93f09189-7ec2-4d0e-9310-f14efce8e4b6"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Boehm581"
          },
          {
            "family": "Cole117"
          }
        ],
        "id": "98470b8c-7de8-4d04-a42d-6babf09a85ec",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/98470b8c-7de8-4d04-a42d-6babf09a85ec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/98470b8c-7de8-4d04-a42d-6babf09a85ec"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Melrose"
          }
        ],
        "name": [
          {
            "family": "Corkery305"
          }
        ],
        "id": "99c3c381-ec3a-4482-b021-e710ea879128",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/99c3c381-ec3a-4482-b021-e710ea879128",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/99c3c381-ec3a-4482-b021-e710ea879128"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Medford"
          }
        ],
        "name": [
          {
            "family": "Mayer370"
          }
        ],
        "id": "9e5fd7cb-8e16-4c26-ae03-69592fc017d7",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/9e5fd7cb-8e16-4c26-ae03-69592fc017d7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9e5fd7cb-8e16-4c26-ae03-69592fc017d7"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Cummerata161"
          },
          {
            "family": "Lueilwitz711"
          }
        ],
        "id": "9eee2417-515b-4798-821f-dcca639c2222",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/9eee2417-515b-4798-821f-dcca639c2222",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9eee2417-515b-4798-821f-dcca639c2222"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Mashpee"
          }
        ],
        "name": [
          {
            "family": "Oberbrunner298"
          }
        ],
        "id": "9f1ee7e4-ec67-487e-a16f-0ceeccbe4409",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/9f1ee7e4-ec67-487e-a16f-0ceeccbe4409",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9f1ee7e4-ec67-487e-a16f-0ceeccbe4409"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Medway"
          }
        ],
        "name": [
          {
            "family": "MacGyver246"
          }
        ],
        "id": "9fce4714-ed2b-4d98-be2e-f29e29677240",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/9fce4714-ed2b-4d98-be2e-f29e29677240",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/9fce4714-ed2b-4d98-be2e-f29e29677240"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lexington"
          }
        ],
        "name": [
          {
            "family": "Williamson769"
          },
          {
            "family": "Quitzon246"
          }
        ],
        "id": "a6a91d7e-7ded-4325-9dbe-42a088e7e039",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/a6a91d7e-7ded-4325-9dbe-42a088e7e039",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a6a91d7e-7ded-4325-9dbe-42a088e7e039"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Huel628"
          }
        ],
        "id": "a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a8cf2e08-8f8d-4800-88f3-aa1d1c1a8cec"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Falmouth"
          }
        ],
        "name": [
          {
            "family": "Goyette777"
          }
        ],
        "id": "a9dd99c6-de02-4729-a1a7-3ee968aeb5ed",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/a9dd99c6-de02-4729-a1a7-3ee968aeb5ed",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/a9dd99c6-de02-4729-a1a7-3ee968aeb5ed"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Needham"
          }
        ],
        "name": [
          {
            "family": "Stamm704"
          }
        ],
        "id": "abc45941-d80e-4da9-8300-2b5aa0311057",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/abc45941-d80e-4da9-8300-2b5aa0311057",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/abc45941-d80e-4da9-8300-2b5aa0311057"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Hegmann834"
          }
        ],
        "id": "ac9df5c0-4af7-4f87-af5e-eefe6224e8ba",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ac9df5c0-4af7-4f87-af5e-eefe6224e8ba",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ac9df5c0-4af7-4f87-af5e-eefe6224e8ba"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Koch169"
          }
        ],
        "id": "b262c1ba-d4da-4791-877c-c69a128f0c2b",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/b262c1ba-d4da-4791-877c-c69a128f0c2b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b262c1ba-d4da-4791-877c-c69a128f0c2b"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Acton"
          }
        ],
        "name": [
          {
            "family": "Lindgren255"
          }
        ],
        "id": "b2d58f0f-4499-4392-ad3a-1c2141c8a6c1",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/b2d58f0f-4499-4392-ad3a-1c2141c8a6c1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b2d58f0f-4499-4392-ad3a-1c2141c8a6c1"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "North Andover"
          }
        ],
        "name": [
          {
            "family": "Hermann103"
          }
        ],
        "id": "b47bf393-a5fa-449c-89e1-ab022e02e00b",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/b47bf393-a5fa-449c-89e1-ab022e02e00b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b47bf393-a5fa-449c-89e1-ab022e02e00b"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Rowley"
          }
        ],
        "name": [
          {
            "family": "Jakubowski832"
          }
        ],
        "id": "b52f3afa-bbce-4594-8e38-9a30ca8a99c0",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/b52f3afa-bbce-4594-8e38-9a30ca8a99c0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/b52f3afa-bbce-4594-8e38-9a30ca8a99c0"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Malden"
          }
        ],
        "name": [
          {
            "family": "Satterfield305"
          }
        ],
        "id": "ba8ca47f-385f-4b20-acdb-57d6d00783e3",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ba8ca47f-385f-4b20-acdb-57d6d00783e3",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ba8ca47f-385f-4b20-acdb-57d6d00783e3"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Boston"
          }
        ],
        "name": [
          {
            "family": "Swift555"
          }
        ],
        "id": "ba8df188-dbf9-471f-9302-48b893b0b651",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ba8df188-dbf9-471f-9302-48b893b0b651",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ba8df188-dbf9-471f-9302-48b893b0b651"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Pittsfield"
          }
        ],
        "name": [
          {
            "family": "Langosh790"
          },
          {
            "family": "Lubowitz58"
          }
        ],
        "id": "c60ac337-2ebe-48f0-92bf-931299142164",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/c60ac337-2ebe-48f0-92bf-931299142164",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c60ac337-2ebe-48f0-92bf-931299142164"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Barre"
          }
        ],
        "name": [
          {
            "family": "White193"
          }
        ],
        "id": "c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c75af4ff-d5e9-4bf4-a391-3b7a5f27f8ee"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Sterling"
          }
        ],
        "name": [
          {
            "family": "Fadel536"
          }
        ],
        "id": "c860b52d-fdf5-4174-87ac-71cf68d97e87",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/c860b52d-fdf5-4174-87ac-71cf68d97e87",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c860b52d-fdf5-4174-87ac-71cf68d97e87"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Fall River"
          }
        ],
        "name": [
          {
            "family": "Lindgren255"
          }
        ],
        "id": "c9e24ae1-0355-4b50-8b7b-06bd5572a7a8",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/c9e24ae1-0355-4b50-8b7b-06bd5572a7a8",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/c9e24ae1-0355-4b50-8b7b-06bd5572a7a8"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Mashpee"
          }
        ],
        "name": [
          {
            "family": "Feest103"
          }
        ],
        "id": "cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/cc31e8b9-9d75-4f7a-8d2b-b08c9d07a472"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Waltham"
          }
        ],
        "name": [
          {
            "family": "Anderson154"
          }
        ],
        "id": "ce33fd9b-bc28-4348-84e5-f47d1113b20d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Northampton"
          }
        ],
        "name": [
          {
            "family": "McKenzie376"
          }
        ],
        "id": "cf6d4375-b8f8-479a-b0fc-6c1d08cd023e",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/cf6d4375-b8f8-479a-b0fc-6c1d08cd023e",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/cf6d4375-b8f8-479a-b0fc-6c1d08cd023e"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Wakefield"
          }
        ],
        "name": [
          {
            "family": "Dicki44"
          }
        ],
        "id": "d291a9be-9f47-4801-a4da-67b0984daaa0",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/d291a9be-9f47-4801-a4da-67b0984daaa0",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/d291a9be-9f47-4801-a4da-67b0984daaa0"
        }
      ]
    },
    {
      "resource": {
        "address": [
          {
            "city": "Lynn"
          }
        ],
        "name": [
          {
            "family": "Kub800"
          },
          {
            "family": "Fay398"
          }
        ],
        "id": "d4734450-3eab-44b1-b2fb-0940c9e3bb10",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/d4734450-3eab-44b1-b2fb-0940c9e3bb10",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/d4734450-3eab-44b1-b2fb-0940c9e3bb10"
        }
      ]
    }
  ],
  "query-sql": [
    "SELECT \"patient\".* FROM \"patient\" WHERE (\"patient\".id || ' ' || \"patient\".resource::text) ilike ? LIMIT ? OFFSET ? ",
    "%massachusetts%",
    100,
    0
  ]
}

Paginate search results (_count & _page)

count = results per page, page = page number

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
 GET /fhir/Patient?_count=5&_page=5
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "948"
  },
  "entry": [
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Salem",
            "line": [
              "646 Howell Light Suite 34"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.589172499136794
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -70.85436498377719
                  }
                ]
              }
            ],
            "postalCode": "01907"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Shara355"
            ],
            "family": "Yundt842",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1996-05-28",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Selena146 Shields502"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Barnstable",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 22
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e0f57407-86ed-405b-aa55-56fb0bebc4c7",
        "identifier": [
          {
            "value": "ca7f7abe-f0d0-4167-a1cd-c9e0fb81dd56",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "ca7f7abe-f0d0-4167-a1cd-c9e0fb81dd56",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-37-6746",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99918180",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X11459337X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-898-4429",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -4492862167762739037  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e0f57407-86ed-405b-aa55-56fb0bebc4c7"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "498 Raynor Gardens"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.47153842175342
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.27324337325132
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "2008-10-01T13:29:17+04:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Evelyn437"
            ],
            "family": "Zemlak964",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Debera99 O'Hara248"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Southwick",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 3.9539091569667737
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 88.04609084303323
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
        "identifier": [
          {
            "value": "baeb8cc7-9156-4946-96bd-8941d055ac36",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "baeb8cc7-9156-4946-96bd-8941d055ac36",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-14-6662",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99989514",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X79125102X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-980-6582",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 8732417369435915273  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e14bd48b-a4dd-4013-bbf5-a4fc7feaacec"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Melrose",
            "line": [
              "621 Daugherty Mews"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.494100304727766
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00930424891762
                  }
                ]
              }
            ],
            "postalCode": "02176"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Kirsten270"
            ],
            "family": "Bosco882",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Kirsten270"
            ],
            "family": "Johns824",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "birthDate": "1943-03-08",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2028-9",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Asian"
                }
              },
              {
                "url": "text",
                "valueString": "Asian"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Yelena240 Littel644"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Arlington",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 11.31963741697184
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 63.680362583028156
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e2544f67-b379-4038-b5af-73ddf5c718af",
        "identifier": [
          {
            "value": "558ce5db-8c56-443c-8506-0fef1055a01d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "558ce5db-8c56-443c-8506-0fef1055a01d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-54-6823",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99932107",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X50923517X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-380-3000",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: -8112741508782866278  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e2544f67-b379-4038-b5af-73ddf5c718af"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Haverhill",
            "line": [
              "1090 Mohr Byway"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.80960071759504
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.00038189980438
                  }
                ]
              }
            ],
            "postalCode": "01830"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Archie818"
            ],
            "family": "Schmitt836",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "birthDate": "1973-03-30",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Nieves278 Boyer713"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Funchal",
              "state": "Madeira",
              "country": "PT"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 45
          }
        ],
        "communication": [
          {
            "language": {
              "text": "Portuguese",
              "coding": [
                {
                  "code": "pt",
                  "system": "urn:ietf:bcp:47",
                  "display": "Portuguese"
                }
              ]
            }
          }
        ],
        "id": "e3b1dab2-5e09-4ea1-81ea-eed300770423",
        "identifier": [
          {
            "value": "4e39517b-5fbb-4231-b4e9-b15511c8a997",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "4e39517b-5fbb-4231-b4e9-b15511c8a997",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-41-6724",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99974695",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X40105757X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-866-3991",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "M",
          "coding": [
            {
              "code": "M",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "M"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 1149752671686320430  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e3b1dab2-5e09-4ea1-81ea-eed300770423"
        }
      ]
    },
    {
      "resource": {
        "multipleBirthBoolean": false,
        "address": [
          {
            "city": "Lincoln",
            "line": [
              "573 Gerhold Brook"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.45039150582085
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -71.2563077072725
                  }
                ]
              }
            ]
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T12:46:32.195941Z",
          "versionId": "931",
          "extension": [
            {
              "url": "ex:createdAt",
              "valueInstant": "2021-08-26T12:46:32.195941Z"
            }
          ]
        },
        "deceasedDateTime": "1998-01-10T12:29:17+03:00",
        "name": [
          {
            "use": "official",
            "given": [
              "Elvira561"
            ],
            "family": "Leuschke194",
            "prefix": [
              "Ms."
            ]
          }
        ],
        "birthDate": "1915-06-23",
        "resourceType": "Patient",
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Dina200 Hane680"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Millbury",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.3518166464309899
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 81.64818335356901
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "e455762c-5a62-4c01-bf33-b549e4274dbc",
        "identifier": [
          {
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "3b695282-3f38-4450-b786-51c9422e9d6d",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-33-1559",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          },
          {
            "type": {
              "text": "Driver's License",
              "coding": [
                {
                  "code": "DL",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Driver's License"
                }
              ]
            },
            "value": "S99983118",
            "system": "urn:oid:2.16.840.1.113883.4.3.25"
          },
          {
            "type": {
              "text": "Passport Number",
              "coding": [
                {
                  "code": "PPN",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Passport Number"
                }
              ]
            },
            "value": "X4604448X",
            "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-850-4495",
            "system": "phone"
          }
        ],
        "gender": "female",
        "maritalStatus": {
          "text": "S",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "S"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 3029429208563298492  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/e455762c-5a62-4c01-bf33-b549e4274dbc"
        }
      ]
    }
  ],
  "total": 124,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_count=5&_page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_count=5&_page=5"
    },
    {
      "relation": "next",
      "url": "/fhir/Patient?_count=5&_page=6"
    },
    {
      "relation": "previous",
      "url": "/fhir/Patient?_count=5&_page=4"
    },
    {
      "relation": "last",
      "url": "/fhir/Patient?_count=5&_page=25"
    }
  ]
}

Sort by specific search parameter (_sort by Patient.name)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Patient?_sort=name&_count=5&_elements=name
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "961"
  },
  "entry": [
    {
      "resource": {
        "name": [
          {
            "use": "official",
            "given": [
              "Isidro558"
            ],
            "family": "Abbott774",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "id": "ed3cec2f-463b-4387-810c-2d519530447a",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ed3cec2f-463b-4387-810c-2d519530447a",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ed3cec2f-463b-4387-810c-2d519530447a"
        }
      ]
    },
    {
      "resource": {
        "name": [
          {
            "use": "official",
            "given": [
              "Emely698"
            ],
            "family": "Abernathy524",
            "prefix": [
              "Mrs."
            ]
          },
          {
            "use": "maiden",
            "given": [
              "Emely698"
            ],
            "family": "Shields502",
            "prefix": [
              "Mrs."
            ]
          }
        ],
        "id": "fc47806b-3b22-4003-9ff6-5e9c927a8677",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/fc47806b-3b22-4003-9ff6-5e9c927a8677",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/fc47806b-3b22-4003-9ff6-5e9c927a8677"
        }
      ]
    },
    {
      "resource": {
        "name": [
          {
            "use": "official",
            "given": [
              "Fernando603"
            ],
            "family": "Adorno791",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "id": "2a5029b7-03cb-41a6-9479-737ee62a3cfd",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/2a5029b7-03cb-41a6-9479-737ee62a3cfd"
        }
      ]
    },
    {
      "resource": {
        "name": [
          {
            "use": "official",
            "given": [
              "Janine159"
            ],
            "family": "Anderson154"
          }
        ],
        "id": "ce33fd9b-bc28-4348-84e5-f47d1113b20d",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/ce33fd9b-bc28-4348-84e5-f47d1113b20d"
        }
      ]
    },
    {
      "resource": {
        "name": [
          {
            "use": "official",
            "given": [
              "Mariano761"
            ],
            "family": "Arevalo970",
            "prefix": [
              "Mr."
            ]
          }
        ],
        "id": "4fa99696-25c8-4d67-b848-1cc69b326f59",
        "resourceType": "Patient"
      },
      "fullUrl": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/4fa99696-25c8-4d67-b848-1cc69b326f59"
        }
      ]
    }
  ],
  "total": 124,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Patient?_sort=name&_count=5&_elements=name&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Patient?_sort=name&_count=5&_elements=name&page=1"
    },
    {
      "relation": "next",
      "url": "/fhir/Patient?_sort=name&_count=5&_elements=name&page=2"
    },
    {
      "relation": "last",
      "url": "/fhir/Patient?_sort=name&_count=5&_elements=name&page=25"
    }
  ]
}

Reverse sorting order

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /fhir/Organization?_sort=-name&_count=5&_elements=name
Response: Body
Status: 200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "meta": {
    "versionId": "949"
  },
  "entry": [
    {
      "resource": {
        "name": "ZWANGER AND PESIRI RADIOLOGY GROUP LLP",
        "id": "5a6c72b5-3615-3fcb-b8c3-470e47c98a8b",
        "resourceType": "Organization"
      },
      "fullUrl": "http://localhost:8765/Organization/5a6c72b5-3615-3fcb-b8c3-470e47c98a8b",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Organization/5a6c72b5-3615-3fcb-b8c3-470e47c98a8b"
        }
      ]
    },
    {
      "resource": {
        "name": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER",
        "id": "f1313c7d-3148-335b-adc3-337f15567b82",
        "resourceType": "Organization"
      },
      "fullUrl": "http://localhost:8765/Organization/f1313c7d-3148-335b-adc3-337f15567b82",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Organization/f1313c7d-3148-335b-adc3-337f15567b82"
        }
      ]
    },
    {
      "resource": {
        "name": "WINCHESTER HOSPITAL",
        "id": "f4e7709c-02f6-37ca-aeea-8247d74e88e7",
        "resourceType": "Organization"
      },
      "fullUrl": "http://localhost:8765/Organization/f4e7709c-02f6-37ca-aeea-8247d74e88e7",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Organization/f4e7709c-02f6-37ca-aeea-8247d74e88e7"
        }
      ]
    },
    {
      "resource": {
        "name": "WELLCARE CHIROPRACTIC CENTER",
        "id": "b19add35-ad10-304e-b25a-f71442ed4eb4",
        "resourceType": "Organization"
      },
      "fullUrl": "http://localhost:8765/Organization/b19add35-ad10-304e-b25a-f71442ed4eb4",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Organization/b19add35-ad10-304e-b25a-f71442ed4eb4"
        }
      ]
    },
    {
      "resource": {
        "name": "VIRTUAL RADIOLOGIC PROFESSIONALS, LLC",
        "id": "e92d18af-ff71-356a-a233-8932fb44f7cb",
        "resourceType": "Organization"
      },
      "fullUrl": "http://localhost:8765/Organization/e92d18af-ff71-356a-a233-8932fb44f7cb",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Organization/e92d18af-ff71-356a-a233-8932fb44f7cb"
        }
      ]
    }
  ],
  "total": 181,
  "link": [
    {
      "relation": "first",
      "url": "/fhir/Organization?_sort=-name&_count=5&_elements=name&page=1"
    },
    {
      "relation": "self",
      "url": "/fhir/Organization?_sort=-name&_count=5&_elements=name&page=1"
    },
    {
      "relation": "next",
      "url": "/fhir/Organization?_sort=-name&_count=5&_elements=name&page=2"
    },
    {
      "relation": "last",
      "url": "/fhir/Organization?_sort=-name&_count=5&_elements=name&page=37"
    }
  ]
}

Aidbox dot expressions (non-FHIR extension): filter using attribute path

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /Patient?.name.0.family=DuBuque211
Response: Body
Status: 200
{
  "query-time": 9,
  "meta": {
    "versionId": "1050"
  },
  "type": "searchset",
  "resourceType": "Bundle",
  "total": 1,
  "link": [
    {
      "relation": "first",
      "url": "/Patient?.name.0.family=DuBuque211&page=1"
    },
    {
      "relation": "self",
      "url": "/Patient?.name.0.family=DuBuque211&page=1"
    }
  ],
  "query-timeout": 60000,
  "entry": [
    {
      "resource": {
        "address": [
          {
            "city": "Pittsfield",
            "line": [
              "497 Emmerich Arcade"
            ],
            "state": "Massachusetts",
            "country": "US",
            "extension": [
              {
                "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
                "extension": [
                  {
                    "url": "latitude",
                    "valueDecimal": 42.531556260164436
                  },
                  {
                    "url": "longitude",
                    "valueDecimal": -73.21250769634847
                  }
                ]
              }
            ],
            "postalCode": "01201"
          }
        ],
        "meta": {
          "lastUpdated": "2021-08-26T14:28:29.927415Z",
          "createdAt": "2021-08-26T14:28:29.927415Z",
          "versionId": "1051"
        },
        "name": [
          {
            "use": "official",
            "given": [
              "Calvin845"
            ],
            "family": "DuBuque211"
          }
        ],
        "birthDate": "2012-10-09",
        "resourceType": "Patient",
        "multipleBirth": {
          "boolean": false
        },
        "extension": [
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2106-3",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "White"
                }
              },
              {
                "url": "text",
                "valueString": "White"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
            "extension": [
              {
                "url": "ombCategory",
                "valueCoding": {
                  "code": "2186-5",
                  "system": "urn:oid:2.16.840.1.113883.6.238",
                  "display": "Not Hispanic or Latino"
                }
              },
              {
                "url": "text",
                "valueString": "Not Hispanic or Latino"
              }
            ]
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
            "valueString": "Marquitta546 Runolfsson901"
          },
          {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "M"
          },
          {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
            "valueAddress": {
              "city": "Attleboro",
              "state": "Massachusetts",
              "country": "US"
            }
          },
          {
            "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
            "valueDecimal": 0.005735004927900484
          },
          {
            "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
            "valueDecimal": 5.9942649950721
          }
        ],
        "communication": [
          {
            "language": {
              "text": "English",
              "coding": [
                {
                  "code": "en-US",
                  "system": "urn:ietf:bcp:47",
                  "display": "English"
                }
              ]
            }
          }
        ],
        "id": "03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
        "identifier": [
          {
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "https://github.com/synthetichealth/synthea"
          },
          {
            "type": {
              "text": "Medical Record Number",
              "coding": [
                {
                  "code": "MR",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Medical Record Number"
                }
              ]
            },
            "value": "2dc5041c-5146-40b4-9ab2-335c0faf10a6",
            "system": "http://hospital.smarthealthit.org"
          },
          {
            "type": {
              "text": "Social Security Number",
              "coding": [
                {
                  "code": "SS",
                  "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                  "display": "Social Security Number"
                }
              ]
            },
            "value": "999-94-5813",
            "system": "http://hl7.org/fhir/sid/us-ssn"
          }
        ],
        "telecom": [
          {
            "use": "home",
            "value": "555-486-3253",
            "system": "phone"
          }
        ],
        "gender": "male",
        "maritalStatus": {
          "text": "Never Married",
          "coding": [
            {
              "code": "S",
              "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
              "display": "Never Married"
            }
          ]
        },
        "text": {
          "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Generated by <a href=\"https://github.com/synthetichealth/synthea\">Synthea</a>.Version identifier: v2.4.0-280-g8074e2b4\n .   Person seed: 6657422227777146042  Population seed: 1565169145597</div>",
          "status": "generated"
        }
      },
      "fullUrl": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1",
      "link": [
        {
          "relation": "self",
          "url": "http://localhost:8765/Patient/03cb8799-bfbd-40fa-9ea8-96114cf1fec1"
        }
      ]
    }
  ],
  "query-sql": [
    "SELECT \"patient\".* FROM \"patient\" WHERE (\"patient\".resource#>>'{name,0,family}' in (?)) LIMIT ? OFFSET ? ",
    "DuBuque211",
    100,
    0
  ]
}

Get SQL of the Search query (_explain)

REST Send Cells run only inside Aidbox. Use Run in Aidbox above to open this notebook in your own instance.
GET /Patient?name=abc&_count=1&_sort=name&_explain=true
Response: Body
Status: 200
{
  "query": [
    "SELECT \"patient\".* FROM \"patient\" WHERE aidbox_text_search(knife_extract_text(\"patient\".resource, $JSON$[[\"name\",\"family\"],[\"name\",\"given\"],[\"name\",\"middle\"],[\"name\",\"text\"]]$JSON$)) ilike unaccent(?) ORDER BY knife_extract_text(\"patient\".resource, $JSON$[[\"name\",\"family\"],[\"name\",\"given\"],[\"name\",\"middle\"],[\"name\",\"text\"]]$JSON$) ASC LIMIT ? OFFSET ? ",
    "% abc%",
    1,
    0
  ],
  "plan": "Limit  (cost=3.31..3.32 rows=1 width=126) (actual time=0.385..0.386 rows=0 loops=1)\n  ->  Sort  (cost=3.31..3.32 rows=1 width=126) (actual time=0.384..0.385 rows=0 loops=1)\n        Sort Key: (knife_extract_text(resource, '[[\"name\", \"family\"], [\"name\", \"given\"], [\"name\", \"middle\"], [\"name\", \"text\"]]'::jsonb))\n        Sort Method: quicksort  Memory: 25kB\n        ->  Seq Scan on patient  (cost=0.00..3.30 rows=1 width=126) (actual time=0.343..0.343 rows=0 loops=1)\n              Filter: (immutable_wrap_ws(immutable_unaccent(immutable_array_to_string(knife_extract_text(resource, '[[\"name\", \"family\"], [\"name\", \"given\"], [\"name\", \"middle\"], [\"name\", \"text\"]]'::jsonb), ' '::text))) ~~* unaccent('% abc%'::text))\n              Rows Removed by Filter: 9\nPlanning Time: 2.364 ms\nExecution Time: 0.700 ms"
}