@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "proband"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
\n\n

\n\n Annie Proband: Female, born 1966-04-04\n

\n\n
" ]; fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "usual" ]; fhir:Identifier.type [ fhir:CodeableConcept.text [ fhir:value "Computer-Stored Abulatory Records (COSTAR)" ] ]; fhir:Identifier.system [ fhir:value "urn:oid:2.16.840.1.113883.6.117" ]; fhir:Identifier.value [ fhir:value "999999999" ]; fhir:Identifier.assigner [ fhir:Reference.display [ fhir:value "Boston Massachesetts General Hospital" ] ] ]; fhir:Patient.active [ fhir:value "true"^^xsd:boolean]; fhir:Patient.gender [ fhir:value "female"]; fhir:Patient.birthDate [ fhir:value "1966-04-04"^^xsd:date]; fhir:Patient.deceasedBoolean [ fhir:value "false"^^xsd:boolean] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------