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

: Healthcare Organization Endpoint - 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/Endpoint/example-healthcare-endpoint> a fhir:Endpoint ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-healthcare-endpoint"] ;
  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/ph-library/StructureDefinition/us-ph-endpoint" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/us/ph-library/StructureDefinition/us-ph-endpoint>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p>Healthcare Endpoint Sender and Receiver</p>  \n    </div>"
  ] ;
  fhir:Endpoint.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://example.org/healthcare.org/endpoint-identifier" ] ;
     fhir:Identifier.value [ fhir:value "healthcare-endpoint-id" ]
  ] ;
  fhir:Endpoint.status [ fhir:value "active"] ;
  fhir:Endpoint.connectionType [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/endpoint-connection-type" ] ;
     fhir:Coding.code [ fhir:value "hl7-fhir-rest" ]
  ] ;
  fhir:Endpoint.name [ fhir:value "HealthCareSenderAndReceiver"] ;
  fhir:Endpoint.managingOrganization [
     fhir:link <http://hl7.org/fhir/Organization/example-cancer-org> ;
     fhir:Reference.reference [ fhir:value "Organization/example-cancer-org" ]
  ] ;
  fhir:Endpoint.contact [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "email" ] ;
     fhir:ContactPoint.value [ fhir:value "endpointmanager@example.healthcare.org" ] ;
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] ;
  fhir:Endpoint.period [
     fhir:Period.start [ fhir:value "2020-11-20"^^xsd:date ]
  ] ;
  fhir:Endpoint.payloadType [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/resource-types" ] ;
       fhir:Coding.code [ fhir:value "Bundle" ]
     ]
  ] ;
  fhir:Endpoint.payloadMimeType [
     fhir:value "application/fhir+xml" ;
     fhir:index 0
  ], [
     fhir:value "application/fhir+json" ;
     fhir:index 1
  ] ;
  fhir:Endpoint.address [ fhir:value "http://example.org/healthcare.org/fhir"] .

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

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

<http://hl7.org/fhir/Endpoint/example-healthcare-endpoint.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Endpoint/example-healthcare-endpoint.ttl> .