基于FHIR标准的健康档案共享文档实施指南
0.8.0.2022705 - 持续集成版

基于FHIR的健康档案共享文档实施时必须严格遵循本实施指南的规定。

: PractitionerExample01 - 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:Practitioner;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "PractitionerExample01"];
  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>name</b>: 赵勇</p><p><b>gender</b>: male</p></div>"
  ];
  fhir:Practitioner.name [
     fhir:index 0;
     fhir:HumanName.text [ fhir:value "赵勇" ];
     fhir:HumanName.family [ fhir:value "赵" ];
     fhir:HumanName.given [
       fhir:value "勇";
       fhir:index 0     ]
  ];
  fhir:Practitioner.gender [ fhir:value "male"].

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

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