This page is part of the HL7 FHIR Implementation Guide: minimal Common Oncology Data Elements (mCODE) Release 1 - US Realm | STU1 (v1.0.0: STU 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
Source view
@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:Organization; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "mCODEOrganizationExample01"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: mCODEOrganizationExample01</p><p><b>meta</b>: </p><p><b>identifier</b>: 1265714091</p><p><b>active</b>: true</p><p><b>name</b>: Foundation Medicine</p><p><b>address</b>: 150 Second Street Cambridge MA 02141 USA </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Telecom</b></td></tr><tr><td>*</td><td>ph: 617-418-2200</td></tr></table></div>" ]; fhir:Organization.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ]; fhir:Identifier.value [ fhir:value "1265714091" ] ]; fhir:Organization.active [ fhir:value "true"^^xsd:boolean]; fhir:Organization.name [ fhir:value "Foundation Medicine"]; fhir:Organization.address [ fhir:index 0; fhir:Address.line [ fhir:value "150 Second Street"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Cambridge" ]; fhir:Address.state [ fhir:value "MA" ]; fhir:Address.postalCode [ fhir:value "02141" ]; fhir:Address.country [ fhir:value "USA" ] ]; fhir:Organization.contact [ fhir:index 0; fhir:Organization.contact.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "617-418-2200" ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.