This page is part of the HL7 FHIR Implementation Guide: minimal Common Oncology Data Elements (mCODE) Release 1 - US Realm | STU1 (v0.9.1: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions
@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 ------------------------------------------------------------------- a fhir:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "mCODEPatientExample01"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/mcode/StructureDefinition/obf-Patient"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/mcode/StructureDefinition/obf-Patient> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <b>*** mCODE Example: Patient ***</b>\n </p>\n <p>\n <b>id</b>: example</p>\n <p>\n <b>identifier</b>: Medical Record Number = m123 (USUAL)</p>\n <p>\n <b>name</b>: John B. Anyperson </p>\n <p>\n <b>telecom</b>: ph: 555-555-5555(HOME), john.anyperson@example.com</p>\n <p>\n <b>gender</b>: male</p>\n <p>\n <b>birthsex</b>: M</p>\n <p>\n <b>birthDate</b>: Jan 20, 1951</p>\n <p>\n <b>address</b>: 123 Main St Anytown MA 12345 US </p>\n <p>\n <b>race</b>: Black</p>\n <p>\n <b>ethnicity</b>: Not Hispanic or Latino</p>\n </div>" ]; fhir:DomainResource.extension [ fhir:index 0; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "ombCategory" ]; fhir:Extension.valueCoding [ fhir:Coding.system [ fhir:value "urn:oid:2.16.840.1.113883.6.238" ]; fhir:Coding.code [ fhir:value "2054-5" ]; fhir:Coding.display [ fhir:value "Black or African American" ] ] ], [ fhir:index 1; fhir:Extension.url [ fhir:value "text" ]; fhir:Extension.valueString [ fhir:value "Black" ] ]; fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race" ] ], [ fhir:index 1; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "ombCategory" ]; fhir:Extension.valueCoding [ fhir:Coding.system [ fhir:value "urn:oid:2.16.840.1.113883.6.238" ]; fhir:Coding.code [ fhir:value "2186-5" ]; fhir:Coding.display [ fhir:value "Not Hispanic or Latino" ] ] ], [ fhir:index 1; fhir:Extension.url [ fhir:value "text" ]; fhir:Extension.valueString [ fhir:value "Not Latino" ] ]; fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity" ] ], [ fhir:index 2; fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex" ]; fhir:Extension.valueCode [ fhir:value "M" ] ]; fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "usual" ]; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; 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:CodeableConcept.text [ fhir:value "Medical Record Number" ] ]; fhir:Identifier.system [ fhir:value "http://hospital.example.org" ]; fhir:Identifier.value [ fhir:value "m123" ] ]; fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Anyperson" ]; fhir:HumanName.given [ fhir:value "John"; fhir:index 0 ], [ fhir:value "B."; fhir:index 1 ] ]; fhir:Patient.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "555-555-5555" ]; fhir:ContactPoint.use [ fhir:value "home" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "john.anyperson@example.com" ] ]; fhir:Patient.gender [ fhir:value "male"]; fhir:Patient.birthDate [ fhir:value "1951-01-20"^^xsd:date]; fhir:Patient.address [ fhir:index 0; fhir:Address.line [ fhir:value "123 Main St"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Anytown" ]; fhir:Address.state [ fhir:value "MA" ]; fhir:Address.postalCode [ fhir:value "12345" ]; fhir:Address.country [ fhir:value "US" ] ]; fhir:Patient.communication [ fhir:index 0; fhir:Patient.communication.language [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "urn:ietf:bcp:47" ]; fhir:Coding.code [ fhir:value "en-US" ]; fhir:Coding.display [ fhir:value "English (Region=United States)" ] ]; fhir:CodeableConcept.text [ fhir:value "English" ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.