This page is part of the FHIR Specification (v4.3.0: R4B - STU). 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
Infrastructure And Messaging Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Not linked to any defined compartments |
Raw Turtle (+ also see Turtle/RDF Format Specification)
A typical message definition
@prefix fhir: <http://hl7.org/fhir/> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . # - resource ------------------------------------------------------------------- [] a fhir:MessageDefinition; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ] ]; fhir:MessageDefinition.url [ fhir:value "http://hl7.org/fhir/MessageDefinition/example"]; fhir:MessageDefinition.name [ fhir:value "EXAMPLE"]; fhir:MessageDefinition.title [ fhir:value "Message definition base example"]; fhir:MessageDefinition.status [ fhir:value "draft"]; fhir:MessageDefinition.experimental [ fhir:value "true"]; fhir:MessageDefinition.date [ fhir:value "2016-11-09"]; fhir:MessageDefinition.publisher [ fhir:value "Health Level Seven, Int'l"]; fhir:MessageDefinition.contact [ fhir:index 0; fhir:ContactDetail.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "url" ]; fhir:ContactPoint.value [ fhir:value "http://hl7.org" ] ] ]; fhir:MessageDefinition.purpose [ fhir:value "Defines a base example for other MessageDefinition instances."]; fhir:MessageDefinition.event [ fhir:Coding.system [ fhir:value "http://example.org/fhir/message-events" ]; fhir:Coding.code [ fhir:value "admin-notify" ] ]; fhir:MessageDefinition.category [ fhir:value "notification"] . # -------------------------------------------------------------------------------------
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.