Data Exchange For Quality Measures Implementation Guide
3.1.0 - STU 3.1.0 US

This page is part of the Da Vinci Data Exchange for Quality Measures (DEQM) FHIR IG (v3.1.0: STU 3) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

: Location01 - 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 "location01"];
  fhir:Resource.meta [
     fhir:Meta.source [ fhir:value "http://example.org/fhir/server" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-location";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-location>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Location</b><a name=\"location01\"> </a></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 Location &quot;location01&quot; </p><p style=\"margin-bottom: 0px\">Information Source: http://example.org/fhir/server!</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/qicore/STU4.1.1/StructureDefinition-qicore-location.html\">QICoreLocation</a></p></div><p><b>identifier</b>: id: DaVinciClinic01 (use: TEMP)</p><p><b>name</b>: DaVinciClinic01</p><p><b>address</b>: 102 Heritage Dr. Somerset NJ 08873 USA </p></div>"
  ];
  fhir:Location.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "temp" ];
     fhir:Identifier.system [ fhir:value "http://exampleoflocation.com" ];
     fhir:Identifier.value [ fhir:value "DaVinciClinic01" ]
  ];
  fhir:Location.name [ fhir:value "DaVinciClinic01"];
  fhir:Location.address [
     fhir:Address.line [
       fhir:value "102 Heritage Dr.";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Somerset" ];
     fhir:Address.state [ fhir:value "NJ" ];
     fhir:Address.postalCode [ fhir:value "08873" ];
     fhir:Address.country [ fhir:value "USA" ]
  ].

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

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