Da Vinci Health Record Exchange (HRex)
1.0.0 - STU R1 US

This page is part of the Da Vinci Health Record Exchange (v1.0.0: STU1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: HRex Organization full example - TTL Representation

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 -------------------------------------------------------------------

 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><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"full\" </p></div><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, <a href=\"mailto:info@newhealthplan.org\">info@newhealthplan.org</a></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://terminology.hl7.org/NamingSystem/CMSCertificationNumber" ];
     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.