This page is part of the Making EHR Data MOre available for Research and Public Health (MedMorph) Healthcare Surveys Reporting Content IG (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: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/medmorph/StructureDefinition/us-ph-endpoint";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/medmorph/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.healthcare.org/enpoint-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:Reference.reference [ fhir:value "Organization/example-healthcare-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.healthcare.org/fhir"].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.