@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:Location;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "1-Einsatzort"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://fhir.ch/ig/ch-ems/StructureDefinition/ch-ems-location";
fhir:index 0;
fhir:link
]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "Generated Narrative
id: 1-Einsatzort
meta:
name: Waldrand
address: Zürich 8044 CH
Positions
- | Longitude | Latitude |
* | 8.553192 | 47.392115 |
"
];
fhir:Location.name [ fhir:value "Waldrand"];
fhir:Location.address [
fhir:Address.city [ fhir:value "Zürich" ];
fhir:Address.postalCode [ fhir:value "8044" ];
fhir:Address.country [ fhir:value "CH" ]
];
fhir:Location.position [
fhir:Location.position.longitude [ fhir:value "8.553192"^^xsd:decimal ];
fhir:Location.position.latitude [ fhir:value "47.392115"^^xsd:decimal ]
] .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl .
# -------------------------------------------------------------------------------------