This page is part of the Da Vinci Health Record Exchange (v0.2.0: STU1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.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:Organization; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "full"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>id</b>: full</p><p><b>identifier</b>: id: 11223344, id: 11223344, id: 55566667, id: 0123456789, id: 918273645</p><p><b>active</b>: true</p><p><b>name</b>: New Health Plan</p><p><b>telecom</b>: ph: 1-800-123-4567, ph: 1-234-567-8901, info@newhealthplan.org</p><p><b>address</b>: </p><ul><li>#1A 123 Some street, Some town, Canada </li><li>1003 Healthcare Drive Amherst MA 01002 USA </li></ul></div>" ]; fhir:Organization.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://example.org/identifiers/somesystem" ]; fhir:Identifier.value [ fhir:value "11223344" ] ], [ fhir:index 1; fhir:Identifier.system [ fhir:value "urn:oid:2.16.840.1.113883.4.7" ]; fhir:Identifier.value [ fhir:value "11223344" ] ], [ fhir:index 2; fhir:Identifier.system [ fhir:value "urn:oid:2.16.840.1.113883.4.4" ]; fhir:Identifier.value [ fhir:value "55566667" ] ], [ fhir:index 3; fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ]; fhir:Identifier.value [ fhir:value "0123456789" ] ], [ fhir:index 4; fhir:Identifier.system [ fhir:value "http://todo/medicare-certification-number" ]; fhir:Identifier.value [ fhir:value "918273645" ] ]; fhir:Organization.active [ fhir:value "true"^^xsd:boolean]; fhir:Organization.name [ fhir:value "New Health Plan"]; fhir:Organization.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "1-800-123-4567" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "1-234-567-8901" ] ], [ fhir:index 2; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "info@newhealthplan.org" ] ]; fhir:Organization.address [ fhir:index 0; fhir:Address.line [ fhir:value "#1A 123 Some street, Some town, Canada"; fhir:index 0 ] ], [ fhir:index 1; fhir:Address.line [ fhir:value "1003 Healthcare Drive"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Amherst" ]; fhir:Address.state [ fhir:value "MA" ]; fhir:Address.postalCode [ fhir:value "01002" ]; fhir:Address.country [ fhir:value "USA" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.