@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/central-cancer-registry-reporting/Endpoint/example-healthcare-endpoint> a fhir:Endpoint ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-healthcare-endpoint"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "1" ] ;
     fhir:lastUpdated [ fhir:v "2020-11-29T02:03:28.045+00:00"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/ph-library/StructureDefinition/us-ph-endpoint"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/ph-library/StructureDefinition/us-ph-endpoint>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p>Healthcare Endpoint Sender and Receiver</p>  \n    </div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/healthcare.org/endpoint-identifier"^^xsd:anyURI ;
       fhir:l <http://example.org/healthcare.org/endpoint-identifier>
     ] ;
     fhir:value [ fhir:v "healthcare-endpoint-id" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:connectionType [
     fhir:system [
       fhir:v "http://terminology.hl7.org/CodeSystem/endpoint-connection-type"^^xsd:anyURI ;
       fhir:l <http://terminology.hl7.org/CodeSystem/endpoint-connection-type>
     ] ;
     fhir:code [ fhir:v "hl7-fhir-rest" ]
  ] ; # 
  fhir:name [ fhir:v "HealthCareSenderAndReceiver"] ; # 
  fhir:managingOrganization [
     fhir:l <http://hl7.org/fhir/us/central-cancer-registry-reporting/Organization/example-cancer-org> ;
     fhir:reference [ fhir:v "Organization/example-cancer-org" ]
  ] ; # 
  fhir:contact ( [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "endpointmanager@example.healthcare.org" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) ; # 
  fhir:period [
     fhir:start [ fhir:v "2020-11-20"^^xsd:date ]
  ] ; # 
  fhir:payloadType ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://hl7.org/fhir/resource-types"^^xsd:anyURI ;
         fhir:l <http://hl7.org/fhir/resource-types>
       ] ;
       fhir:code [ fhir:v "Bundle" ]
     ] )
  ] ) ; # 
  fhir:payloadMimeType ( [ fhir:v "application/fhir+xml"] [ fhir:v "application/fhir+json"] ) ; # 
  fhir:address [
     fhir:v "http://example.org/healthcare.org/fhir"^^xsd:anyURI ;
     fhir:l <http://example.org/healthcare.org/fhir>
  ] . # 

<http://hl7.org/fhir/us/central-cancer-registry-reporting/Organization/example-cancer-org> a fhir:Us .

# -------------------------------------------------------------------------------------

