Common Data Models Harmonization
1.0.0 - STU 1 Publication

Common Data Models Harmonization, published by HL7 International - Biomedical Research and Regulation Work Group. This is not an authorized publication; it is the continuous build for version 1.0.0). This version is based on the current content of https://github.com/HL7/cdmh/ and changes regularly. See the Directory of published versions

: CDMH Location - Example - TTL Representation

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:Location;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:Resource.meta [
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
       fhir:Extension.valueString [ fhir:value "CareDeliveryLocation" ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
       fhir:Extension.valueMarkdown [ fhir:value "This is a Cdmh Location example for the *Cdmh Location*." ]     ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-location";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-location>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Location Example</b></p></div>"
  ];
  fhir:Location.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://www.acme.org/location" ];
     fhir:Identifier.value [ fhir:value "29" ]
  ];
  fhir:Location.status [ fhir:value "active"];
  fhir:Location.name [ fhir:value "Care Delivery Location"];
  fhir:Location.description [ fhir:value "Care Delivery Location"];
  fhir:Location.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/cdmh/CodeSystem/pcornet-facility-type-codes" ];
       fhir:Coding.code [ fhir:value "OT" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Office Visit" ]
  ];
  fhir:Location.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "(+1) 734-677-7777" ]
  ];
  fhir:Location.address [
     fhir:Address.line [
       fhir:value "3300 Washtenaw Avenue, Suite 227";
       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" ]
  ];
  fhir:Location.position [
     fhir:Location.position.longitude [ fhir:value "-72.519854"^^xsd:decimal ];
     fhir:Location.position.latitude [ fhir:value "42.373222"^^xsd:decimal ]
  ];
  fhir:Location.managingOrganization [
     fhir:Reference.display [ fhir:value "Health Level Seven International" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.