HL7 Italia FHIR Implementation Guide (base)
0.1.0 - PC Ballot

This page is part of the HL7 Italia FHIR Implementation Guide (base) (v0.1.0: Public Comment 1 Ballot 1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

Practitioner. Esempio - 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:Practitioner;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "PractitionerExample"];
  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>id</b>: PractitionerExample</p><p><b>identifier</b>: PLLDSR80E47A462P</p><p><b>name</b>: Désirée Pellé </p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1980-07-05</p></div>"
  ];
  fhir:Practitioner.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://hl7.it/sid/codiceFiscale" ];
     fhir:Identifier.value [ fhir:value "PLLDSR80E47A462P" ]
  ];
  fhir:Practitioner.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Pellé" ];
     fhir:HumanName.given [
       fhir:value "Désirée";
       fhir:index 0     ]
  ];
  fhir:Practitioner.gender [ fhir:value "female"];
  fhir:Practitioner.birthDate [ fhir:value "1980-07-05"^^xsd:date].

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

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