Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

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

: Catalog Message Event CodeSystem - TTL Representation

Raw ttl | Download

@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:CodeSystem;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "catalog-message-events"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2020-03-18T09:55:00.000+00:00"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/shareablecodesystem";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/shareablecodesystem>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <h2>Catalog message event codes</h2>\n      <div>\n        <p>This CodeSystem provides  coded concepts for event codes in MessageHeader of FHIR messages conveying the content of a catalog.</p>\n      </div>\n    </div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/uv/order-catalog/CodeSystem/catalog-message-events"];
  fhir:CodeSystem.version [ fhir:value "0.1.0"];
  fhir:CodeSystem.name [ fhir:value "CatalogMessageEvents"];
  fhir:CodeSystem.title [ fhir:value "Catalog Message Event Codes"];
  fhir:CodeSystem.status [ fhir:value "active"];
  fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:CodeSystem.date [ fhir:value "2020-04-02"^^xsd:date];
  fhir:CodeSystem.publisher [ fhir:value "HL7 International - Orders and Observations Work Group"];
  fhir:CodeSystem.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:CodeSystem.description [ fhir:value "This CodeSystem resource provides the concepts representing message event codes to be used when exchanging the content of catalogs in push mode, leveraging the FHIR messaging framework."];
  fhir:CodeSystem.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:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.count [ fhir:value "2"^^xsd:nonNegativeInteger];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "full-catalog" ];
     fhir:CodeSystem.concept.display [ fhir:value "full catalog for the recipient" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The content of the message represents a full catalog that the message recepient is expected to take as is, replacing any preexisting content for this catalog." ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "update-catalog" ];
     fhir:CodeSystem.concept.display [ fhir:value "update for a catalog of the recipient" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The content of the message represents an update to an existing catalog of the message recepient who is expected to integrate this update." ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.