Central Cancer Registry Reporting Content IG
2.0.0-ballot - STU 2 Ballot United States of America flag

Central Cancer Registry Reporting Content IG, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 2.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-central-cancer-registry-reporting-ig/ and changes regularly. See the Directory of published versions

: Central Cancer Registry Reporting Message Header - Example - TTL Representation

Page standards status: Informative

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 -------------------------------------------------------------------

<http://hl7.org/fhir/MessageHeader/messageheader-example-reportheader> a fhir:MessageHeader ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "messageheader-example-reportheader"] ;
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ] ;
     fhir:Meta.lastUpdated [ fhir:value "2020-11-29T02:03:28.045+00:00"^^xsd:dateTime ] ;
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-reporting-messageheader" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-reporting-messageheader>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <p>Reporting Data</p> \n          </div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/ph-library/StructureDefinition/us-ph-data-encrypted-extension" ] ;
     fhir:Extension.valueBoolean [ fhir:value "false"^^xsd:boolean ]
  ], [
     fhir:index 1 ;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/ph-library/StructureDefinition/us-ph-message-processing-category-extension" ] ;
     fhir:Extension.valueCode [ fhir:value "consequence" ]
  ] ;
  fhir:MessageHeader.eventCoding [
     fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/ph-library/CodeSystem/us-ph-codesystem-message-types" ] ;
     fhir:Coding.code [ fhir:value "cancer-report-message" ]
  ] ;
  fhir:MessageHeader.destination [
     fhir:index 0 ;
     fhir:MessageHeader.destination.name [ fhir:value "PHA endpoint" ] ;
     fhir:MessageHeader.destination.endpoint [ fhir:value "http://example.pha.org/fhir" ]
  ] ;
  fhir:MessageHeader.sender [
     fhir:link <http://hl7.org/fhir/Organization/example-cancer-org> ;
     fhir:Reference.reference [ fhir:value "Organization/example-cancer-org" ]
  ] ;
  fhir:MessageHeader.source [
     fhir:MessageHeader.source.name [ fhir:value "Cancer Organization" ] ;
     fhir:MessageHeader.source.software [ fhir:value "Backend Service App" ] ;
     fhir:MessageHeader.source.version [ fhir:value "3.1.45.AABB" ] ;
     fhir:MessageHeader.source.contact [
       fhir:ContactPoint.system [ fhir:value "phone" ] ;
       fhir:ContactPoint.value [ fhir:value "+1 (917) 123 4567" ]
     ] ;
     fhir:MessageHeader.source.endpoint [ fhir:value "http://example.healthcare.org/fhir" ]
  ] ;
  fhir:MessageHeader.reason [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/ph-library/CodeSystem/us-ph-codesystem-triggerdefinition-namedevents" ] ;
       fhir:Coding.code [ fhir:value "encounter-close" ]
     ]
  ] .

<http://hl7.org/fhir/Organization/example-cancer-org> a fhir:Organization .

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

<http://hl7.org/fhir/MessageHeader/messageheader-example-reportheader.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/MessageHeader/messageheader-example-reportheader.ttl> .