AI Transparency on FHIR
0.1.0 - ci-build International flag

AI Transparency on FHIR, published by HL7 International / Electronic Health Records. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/aitransparency-ig/ and changes regularly. See the Directory of published versions

: Patient an AI generated - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient a1b2c3d4-e5f6-7890-abcd-ef1234567890</b></p><a name=\"a1b2c3d4-e5f6-7890-abcd-ef1234567890\"> </a><a name=\"hca1b2c3d4-e5f6-7890-abcd-ef1234567890\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <code>http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient</code></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jane Doe (official) Female, DoB: 1950-11-15 ( Medical Record Number: MRN123456789\u00a0(use:\u00a0usual,\u00a0))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">123 Main Street Anytown MI 12345 US (home)</td></tr></table></div>"
  },
  "extension" : [
    {
      "extension" : [
        {
          "url" : "ombCategory",
          "valueCoding" : {
            "system" : "urn:oid:2.16.840.1.113883.6.238",
            "code" : "2106-3",
            "display" : "White"
          }
        },
        {
          "url" : "text",
          "valueString" : "White"
        }
      ],
      "url" : "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"
    }
  ],
  "identifier" : [
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR",
            "display" : "Medical Record Number"
          }
        ]
      },
      "system" : "http://hospital.example.org/patient-id",
      "value" : "MRN123456789"
    }
  ],
  "name" : [
    {
      "use" : "official",
      "family" : "Doe",
      "given" : [
        "Jane"
      ]
    }
  ],
  "gender" : "female",
  "birthDate" : "1950-11-15",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "123 Main Street"
      ],
      "city" : "Anytown",
      "state" : "MI",
      "postalCode" : "12345",
      "country" : "US"
    }
  ]
}