AI Transparency on FHIR
1.0.0-current - STU1 Ballot 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 1.0.0-current 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

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Patient/a1b2c3d4-e5f6-7890-abcd-ef1234567890> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "a1b2c3d4-e5f6-7890-abcd-ef1234567890"] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.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><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jane Doe (official) Female, DoB: 1950-11-15 ( Medical Record Number: MRN123456789 (use: usual, ))</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>"
  ] ;
  fhir:Patient.identifier [
     fhir:index -1 ;
     fhir:Identifier.use [ fhir:value "usual" ] ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index -1 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
         fhir:Coding.code [ fhir:value "MR" ] ;
         fhir:Coding.display [ fhir:value "Medical Record Number" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://hospital.example.org/patient-id" ] ;
     fhir:Identifier.value [ fhir:value "MRN123456789" ]
  ] ;
  fhir:Patient.name [
     fhir:index -1 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "Doe" ] ;
     fhir:HumanName.given [
       fhir:value "Jane" ;
       fhir:index -1
     ]
  ] ;
  fhir:Patient.gender [ fhir:value "female"] ;
  fhir:Patient.birthDate [ fhir:value "1950-11-15"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index -1 ;
     fhir:Address.use [ fhir:value "home" ] ;
     fhir:Address.line [
       fhir:value "123 Main Street" ;
       fhir:index -1
     ] ;
     fhir:Address.city [ fhir:value "Anytown" ] ;
     fhir:Address.state [ fhir:value "MI" ] ;
     fhir:Address.postalCode [ fhir:value "12345" ] ;
     fhir:Address.country [ fhir:value "US" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Patient/a1b2c3d4-e5f6-7890-abcd-ef1234567890.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Patient/a1b2c3d4-e5f6-7890-abcd-ef1234567890.ttl> .