This page is part of the FHIR Specification (v3.0.2: STU 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
Vocabulary Work Group | Maturity Level: N/A | Ballot Status: Informative | Compartments: Not linked to any defined compartments |
Example of expansionprofile
@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/ExpansionProfile/example> a fhir:ExpansionProfile; 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\">[ Provide Rendering ]</div>" ]; fhir:ExpansionProfile.url [ fhir:value "http://hl7.org/fhir/ExpansionProfile/example"]; fhir:ExpansionProfile.identifier [ fhir:Identifier.system [ fhir:value "http://example.org/profiles" ]; fhir:Identifier.value [ fhir:value "example" ] ]; fhir:ExpansionProfile.version [ fhir:value "0.1"]; fhir:ExpansionProfile.name [ fhir:value "Example Expansion Profile"]; fhir:ExpansionProfile.status [ fhir:value "draft"]; fhir:ExpansionProfile.experimental [ fhir:value "true"^^xsd:boolean]; fhir:ExpansionProfile.date [ fhir:value "2016-12-23"^^xsd:date]; fhir:ExpansionProfile.publisher [ fhir:value "HL7 International"]; fhir:ExpansionProfile.contact [ fhir:index 0; fhir:ContactDetail.name [ fhir:value "FHIR project team" ]; fhir:ContactDetail.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "url" ]; fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ] ] ]; fhir:ExpansionProfile.description [ fhir:value "exanple ExpansionProfile for publication"]; fhir:ExpansionProfile.jurisdiction [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://unstats.un.org/unsd/methods/m49/m49.htm" ]; fhir:Coding.code [ fhir:value "001" ]; fhir:Coding.display [ fhir:value "World" ] ] ]; fhir:ExpansionProfile.excludeNested [ fhir:value "true"^^xsd:boolean] . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/ExpansionProfile/example.ttl> a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI <http://hl7.org/fhir/STU3/ExpansionProfile/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.