STU 2 Ballot

This page is part of the Data Access Framework (v1.6.0: STU 2 Ballot 1) based on FHIR v1.6.0. . For a full list of available versions, see the Directory of published versions

DAF-Core Patient JSON Example: example

Raw JSON

{
  "resourceType" : "Patient",
  "id" : "example",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns="http://www.w3.org/1999/xhtml"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>identifier</b>: Medical Record Number = 1032702 (USUAL)</p><p><b>active</b>: true</p><p><b>name</b>: Amy V. Shaw </p><p><b>telecom</b>: ph: 555-555-5555(HOME), amy.shaw@example.com</p><p><b>gender</b>: </p><p><b>birthDate</b>: 20/02/2007</p><p><b>address</b>: 49 Meadow St Mounds OK 74047 US </p></div>"
  },
  "extension" : [
    {
      "url" : "http://hl7.org/fhir/StructureDefinition/us-core-race",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v3/Race",
            "code" : "2106-3",
            "display" : "White"
          }
        },
        "text" : "White"
      }
    },
    {
      "url" : "http://hl7.org/fhir/StructureDefinition/us-core-race",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v3/Race",
            "code" : "1002-5",
            "display" : "American Indian or Alaska Native"
          },
          {
            "system" : "http://hl7.org/fhir/v3/Race",
            "code" : "1586-7",
            "display" : "Shoshone"
          }
        },
        "text" : "Shoshone"
      }
    },
    {
      "url" : "http://hl7.org/fhir/StructureDefinition/us-core-ethnicity",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v3/Ethnicity",
            "code" : "2186-5",
            "display" : "Not Hispanic or Latino"
          }
        },
        "text" : "Not Hispanic or Latino"
      }
    },
    {
      "url" : "http://hl7.org/fhir/StructureDefinition/us-core-birthsex",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v3/AdministrativeGender",
            "code" : "F",
            "display" : "Female"
          }
        },
        "text" : "Female"
      }
    }
  },
  "identifier" : [
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v2/0203",
            "code" : "MR",
            "display" : "Medical Record Number"
          }
        },
        "text" : "Medical Record Number"
      },
      "system" : "http://hospital.smarthealthit.org",
      "value" : "1032702"
    }
  },
  "active" : true,
  "name" : [
    {
      "family" : [
        "Shaw"
      },
      "given" : [
        "Amy",
        "V."
      }
    }
  },
  "telecom" : [
    {
      "system" : "phone",
      "value" : "555-555-5555",
      "use" : "home"
    },
    {
      "system" : "email",
      "value" : "amy.shaw@example.com"
    }
  },
  "birthDate" : "2007-02-20",
  "address" : [
    {
      "line" : [
        "49 Meadow St"
      },
      "city" : "Mounds",
      "state" : "OK",
      "postalCode" : "74047",
      "country" : "US"
    }
  }
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.