HL7 FHIR® Implementation Guide: Electronic Case Reporting (eCR) - US Realm
1.1.0 - STU 2 Ballot

This page is part of the electronic Case Reporting (eCR) (v1.1.0: STU 2 on FHIR R4 Ballot 1) based on FHIR R4. The current version which supercedes this version is 2.1.0. For a full list of available versions, see the Directory of published versions

: Location Example: City Football Stadium - 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 "location-ecr-city-football-stadium"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-12-01T01:55:32.705+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#KLUFk4w6CXKqrFEC" ]
  ];
  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>status</b>: active</p><p><b>name</b>: City Football Stadium</p><p><b>address</b>: 99 Football Stadium Road My City AZ 8562 </p></div>"
  ];
  fhir:Location.status [ fhir:value "active"];
  fhir:Location.name [ fhir:value "City Football Stadium"];
  fhir:Location.address [
     fhir:Address.line [
       fhir:value "99 Football Stadium Road";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "My City" ];
     fhir:Address.state [ fhir:value "AZ" ];
     fhir:Address.postalCode [ fhir:value "8562" ]
  ].

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

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