R4 Draft for Comment

This page is part of the FHIR Specification (v3.2.0: R4 Ballot 1). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Implementationguideoutput-example.ttl

FHIR Infrastructure Work GroupMaturity Level: N/ABallot Status: InformativeCompartments: Not linked to any defined compartments

Raw Turtle, JSON-LD

Example of implementationguideoutput

@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 -------------------------------------------------------------------

<http://hl7.org/fhir/ImplementationGuideOutput/example> a fhir:ImplementationGuideOutput;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>url</b>: <a>http://hl7.org/fhir/us/daf</a></p><p><b>version</b>: 0</p><p><b>name</b>: Data Access Framework (DAF)</p><p><b>status</b>: draft</p><p><b>experimental</b>: false</p><p><b>date</b>: 01/01/2015</p><p><b>publisher</b>: ONC / HL7 Joint project</p><p><b>contact</b>: , </p><p><b>description</b>: The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations</p><p><b>jurisdiction</b>: US <span>(Details : {urn:iso:std:iso:3166 code 'US' = 'US)</span></p><p><b>copyright</b>: Published by ONC under the standard FHIR license (CC0)</p><p><b>fhirVersion</b>: 1.0.0</p><h3>Dependencies</h3><table><tr><td>-</td><td><b>Type</b></td><td><b>Uri</b></td></tr><tr><td>*</td><td>reference</td><td><a>http://hl7.org/fhir/ImplementationGuide/uscore</a></td></tr></table><h3>Resources</h3><table><tr><td>-</td><td><b>Reference</b></td><td><b>Example[x]</b></td></tr><tr><td>*</td><td><a>Patient/test</a></td><td>true</td></tr></table><h3>Globals</h3><table><tr><td>-</td><td><b>Type</b></td><td><b>Profile</b></td></tr><tr><td>*</td><td>Patient</td><td><a>StructureDefinition/daf-patient</a></td></tr></table></div>"
  ];
  fhir:ImplementationGuideOutput.url [ fhir:value "http://hl7.org/fhir/us/daf"];
  fhir:ImplementationGuideOutput.version [ fhir:value "0"];
  fhir:ImplementationGuideOutput.name [ fhir:value "Data Access Framework (DAF)"];
  fhir:ImplementationGuideOutput.status [ fhir:value "draft"];
  fhir:ImplementationGuideOutput.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:ImplementationGuideOutput.date [ fhir:value "2015-01-01"^^xsd:date];
  fhir:ImplementationGuideOutput.publisher [ fhir:value "ONC / HL7 Joint project"];
  fhir:ImplementationGuideOutput.contact [
     fhir:index 0;
     fhir:ContactDetail.name [ fhir:value "ONC" ];
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "http://www.healthit.gov" ]
     ]
  ], [
     fhir:index 1;
     fhir:ContactDetail.name [ fhir:value "HL7" ];
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ]
     ]
  ];
  fhir:ImplementationGuideOutput.description [ fhir:value "The Data Access Framework (DAF) Initiative leverages the HL7 FHIR standards to standardize access to Meaningful Use Stage 2 structured information both within the organization and from external organizations"];
  fhir:ImplementationGuideOutput.jurisdiction [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ];
       fhir:Coding.code [ fhir:value "US" ]
     ]
  ];
  fhir:ImplementationGuideOutput.copyright [ fhir:value "Published by ONC under the standard FHIR license (CC0)"];
  fhir:ImplementationGuideOutput.fhirVersion [ fhir:value "1.0.0"];
  fhir:ImplementationGuideOutput.dependency [
     fhir:index 0;
     fhir:ImplementationGuideOutput.dependency.type [ fhir:value "reference" ];
     fhir:ImplementationGuideOutput.dependency.uri [ fhir:value "http://hl7.org/fhir/ImplementationGuide/uscore" ]
  ];
  fhir:ImplementationGuideOutput.resource [
     fhir:index 0;
     fhir:ImplementationGuideOutput.resource.reference [
       fhir:link <http://hl7.org/fhir/Patient/test>;
       fhir:Reference.reference [ fhir:value "Patient/test" ]
     ];
     fhir:ImplementationGuideOutput.resource.exampleBoolean [ fhir:value "true"^^xsd:boolean ]
  ];
  fhir:ImplementationGuideOutput.global [
     fhir:index 0;
     fhir:ImplementationGuideOutput.global.type [ fhir:value "Patient" ];
     fhir:ImplementationGuideOutput.global.profile [
       fhir:link <http://hl7.org/fhir/StructureDefinition/daf-patient>;
       fhir:Reference.reference [ fhir:value "StructureDefinition/daf-patient" ]
     ]
  ] .

<http://hl7.org/fhir/Patient/test> a fhir:Patient .

<http://hl7.org/fhir/StructureDefinition/daf-patient> a fhir:StructureDefinition .

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

<http://hl7.org/fhir/ImplementationGuideOutput/example.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/ImplementationGuideOutput/example.ttl> .

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.