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 human name - 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:HumanName;
  fhir:nodeRole fhir:treeRoot;
  fhir:Element.id [ fhir:value "HumanNameExample"];
  fhir:Element.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://fhir.mn/StructureDefinition/clan-name" ];
     fhir:Extension.valueString [ fhir:value "Clanname" ]
  ];
  fhir:HumanName.text [ fhir:value "First Name Familyname Clanname"];
  fhir:HumanName.family [ fhir:value "Familyname"];
  fhir:HumanName.given [
     fhir:value "First";
     fhir:index 0
  ], [
     fhir:value "Name";
     fhir:index 1
  ].

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

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