FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Patient/f001 (JSON)

Patient Administration Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient, Practitioner, RelatedPerson

Raw JSON (canonical form + also see JSON Format Specification)

Real-world patient example (anonymized)

{
  "resourceType" : "Patient",
  "id" : "f001",
  "identifier" : [{
    "use" : "usual",
    "system" : "urn:oid:2.16.840.1.113883.2.4.6.3",
    "value" : "738472983"
  },
  {
    "use" : "usual",
    "system" : "urn:oid:2.16.840.1.113883.2.4.6.3"
  }],
  "active" : true,
  "name" : [{
    "use" : "usual",
    "family" : "van de Heuvel",
    "given" : ["Pieter"],
    "suffix" : ["MSc"]
  }],
  "telecom" : [{
    "system" : "phone",
    "value" : "0648352638",
    "use" : "mobile"
  },
  {
    "system" : "email",
    "value" : "p.heuvel@gmail.com",
    "use" : "home"
  }],
  "gender" : "male",
  "birthDate" : "1944-11-17",
  "deceasedBoolean" : false,
  "address" : [{
    "use" : "home",
    "line" : ["Van Egmondkade 23"],
    "city" : "Amsterdam",
    "postalCode" : "1024 RJ",
    "country" : "NLD"
  }],
  "maritalStatus" : {
    "coding" : [{
      "system" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
      "code" : "M",
      "display" : "Married"
    }],
    "text" : "Getrouwd"
  },
  "multipleBirthBoolean" : true,
  "contact" : [{
    "relationship" : [{
      "coding" : [{
        "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
        "code" : "C"
      }]
    }],
    "name" : {
      "use" : "usual",
      "family" : "Abels",
      "given" : ["Sarah"]
    },
    "telecom" : [{
      "system" : "phone",
      "value" : "0690383372",
      "use" : "mobile"
    }]
  }],
  "communication" : [{
    "language" : {
      "coding" : [{
        "system" : "urn:ietf:bcp:47",
        "code" : "nl",
        "display" : "Dutch"
      }],
      "text" : "Nederlands"
    },
    "preferred" : true
  }],
  "managingOrganization" : {
    "reference" : "Organization/f001",
    "display" : "Burgers University Medical Centre"
  }
}

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.