This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
Example of implementationguide
@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 xs: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir//ImplementationGuide/example> a fhir:ImplementationGuide;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:ImplementationGuide.url [ fhir:value "http://hl7.org/fhir/daf"];
fhir:ImplementationGuide.version [ fhir:value "0"];
fhir:ImplementationGuide.name [ fhir:value "Data Access Framework (DAF)"];
fhir:ImplementationGuide.status [ fhir:value "draft"];
fhir:ImplementationGuide.experimental [ fhir:value "false"^^xs:boolean];
fhir:ImplementationGuide.publisher [ fhir:value "ONC / HL7 Joint project"];
fhir:ImplementationGuide.contact [
fhir:index 0;
fhir:ImplementationGuide.contact.name [ fhir:value "ONC" ];
fhir:ImplementationGuide.contact.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "other" ];
fhir:ContactPoint.value [ fhir:value "http://www.healthit.gov" ] ]
];
fhir:ImplementationGuide.contact [
fhir:index 1;
fhir:ImplementationGuide.contact.name [ fhir:value "HL7" ];
fhir:ImplementationGuide.contact.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "other" ];
fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ] ]
];
fhir:ImplementationGuide.date [ fhir:value "2015-01-01"^^xs:date];
fhir:ImplementationGuide.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:ImplementationGuide.useContext [
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:ImplementationGuide.copyright [ fhir:value "Published by ONC under the standard FHIR license (CC0)"];
fhir:ImplementationGuide.fhirVersion [ fhir:value "1.0.0"];
fhir:ImplementationGuide.dependency [
fhir:index 0;
fhir:ImplementationGuide.dependency.type [ fhir:value "reference" ];
fhir:ImplementationGuide.dependency.uri [ fhir:value "http://hl7.org/fhir/ImplementationGuide/uscore" ]
];
fhir:ImplementationGuide.package [
fhir:index 0;
fhir:ImplementationGuide.package.name [ fhir:value "test" ];
fhir:ImplementationGuide.package.description [ fhir:value "Base package (not broken up into multiple packages)" ];
fhir:ImplementationGuide.package.resource [
fhir:index 0;
fhir:ImplementationGuide.package.resource.example [ fhir:value "true"^^xs:boolean ];
fhir:ImplementationGuide.package.resource.name [ fhir:value "Test Example" ];
fhir:ImplementationGuide.package.resource.description [ fhir:value "A test example to show how a package works" ];
fhir:ImplementationGuide.package.resource.acronym [ fhir:value "daf-tst" ];
fhir:ImplementationGuide.package.resource.sourceUri [ fhir:value "test.html" ];
fhir:ImplementationGuide.package.resource.exampleFor [
fhir:reference <http://hl7.org/fhir/StructureDefinition/daf-patient>;
fhir:Reference.reference [ fhir:value "StructureDefinition/daf-patient" ] ] ]
];
fhir:ImplementationGuide.global [
fhir:index 0;
fhir:ImplementationGuide.global.type [ fhir:value "Patient" ];
fhir:ImplementationGuide.global.profile [
fhir:reference <http://hl7.org/fhir/StructureDefinition/daf-patient>;
fhir:Reference.reference [ fhir:value "StructureDefinition/daf-patient" ] ]
];
fhir:ImplementationGuide.binary [
fhir:value "http://h7.org/fhir/fhir.css";
fhir:index 0
];
fhir:ImplementationGuide.page [
fhir:ImplementationGuide.page.source [ fhir:value "patient-example.html" ];
fhir:ImplementationGuide.page.name [ fhir:value "Example Patient Page" ];
fhir:ImplementationGuide.page.kind [ fhir:value "page" ];
fhir:ImplementationGuide.page.page [
fhir:index 0;
fhir:ImplementationGuide.page.source [ fhir:value "list.html" ];
fhir:ImplementationGuide.page.name [ fhir:value "Value Set Page" ];
fhir:ImplementationGuide.page.kind [ fhir:value "list" ];
fhir:ImplementationGuide.page.type [
fhir:value "ValueSet";
fhir:index 0 ];
fhir:ImplementationGuide.page.package [
fhir:value "test";
fhir:index 0 ];
fhir:ImplementationGuide.page.format [ fhir:value "text/html" ] ]
].
# -------------------------------------------------------------------------------------
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.