This page is part of the Order Catalog Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
@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:MessageDefinition; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-message-definition-update"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogMessageDefinition"; fhir:index 0; fhir:link <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/CatalogMessageDefinition> ] ]; fhir:Resource.language [ fhir:value "en-US"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\"><p><b>Generated Narrative</b></p><p><b>id</b>: example-message-definition-update</p><p><b>meta</b>: </p><p><b>language</b>: en-US</p><p><b>url</b>: <a href=\"http://hl7.org/fhir/uv/order-catalog/MessageDefinition/example-message-definition-update\">http://hl7.org/fhir/uv/order-catalog/MessageDefinition/example-message-definition-update</a></p><p><b>version</b>: 0.1.0</p><p><b>name</b>: MessageDefinitionUpdate</p><p><b>title</b>: Message definition updating the catalog of message receiver</p><p><b>status</b>: active</p><p><b>date</b>: 2020-04-02</p><p><b>publisher</b>: HL7 International - Orders and Observations Work Group</p><p><b>contact</b>: http://hl7.org/Special/committees/orders</p><p><b>jurisdiction</b>: <span title=\"Codes: {http://unstats.un.org/unsd/methods/m49/m49.htm 001}\">World</span></p><p><b>event</b>: <span title=\"{http://hl7.org/fhir/uv/order-catalog/CodeSystem/catalog-message-events update-catalog}\">update for a catalog of the recipient</span></p><p><b>category</b>: consequence</p><p><b>responseRequired</b>: always</p></div>" ]; fhir:MessageDefinition.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/MessageDefinition/example-message-definition-update"]; fhir:MessageDefinition.version [ fhir:value "0.1.0"]; fhir:MessageDefinition.name [ fhir:value "MessageDefinitionUpdate"]; fhir:MessageDefinition.title [ fhir:value "Message definition updating the catalog of message receiver"]; fhir:MessageDefinition.status [ fhir:value "active"]; fhir:MessageDefinition.date [ fhir:value "2020-04-02"^^xsd:date]; fhir:MessageDefinition.publisher [ fhir:value "HL7 International - Orders and Observations Work Group"]; 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/Special/committees/orders" ] ] ]; fhir:MessageDefinition.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:MessageDefinition.eventCoding [ fhir:Coding.system [ fhir:value "http://hl7.org/fhir/uv/order-catalog/CodeSystem/catalog-message-events" ]; fhir:Coding.code [ fhir:value "update-catalog" ]; fhir:Coding.display [ fhir:value "update for a catalog of the recipient" ] ]; fhir:MessageDefinition.category [ fhir:value "consequence"]; fhir:MessageDefinition.responseRequired [ fhir:value "always"]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.