Mongolian HDIT Implementation guide
1.0.0 - Review

Mongolian HDIT Implementation guide - Local Development build (v1.0.0). See the Directory of published versions

Example of address - TTL Representation

(back to description)

Raw ttl

Source view

@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:Address;
  fhir:nodeRole fhir:treeRoot;
  fhir:Element.id [ fhir:value "AddressExample"];
  fhir:Element.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://fhir.mn/StructureDefinition/subdistrict" ];
     fhir:Extension.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.code [ fhir:value "4" ]       ]     ]
  ];
  fhir:Address.use [ fhir:value "home"];
  fhir:Address.text [ fhir:value "Ulaanbaatar Med Hospital,\nKhasbaatar street,\n4rd khoroolol, Bayangol District,\nUlaanbaatar, Mongolia"];
  fhir:Address.line [
     fhir:value "Ulaanbaatar Med Hospital";
     fhir:index 0
  ], [
     fhir:value "Khasbaatar street";
     fhir:index 1
  ];
  fhir:Address.district [ fhir:value "3"];
  fhir:Address.state [ fhir:value "22"];
  fhir:Address.country [ fhir:value "Mongolia"].

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

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