DFT Ballot - The specification is currently in ballot review and subject to change. It is not ready for limited roll-out or production level use. . . For a full list of available versions, see the Directory of published versions
Example-Endpoint
Endpoint |
id : ca-csd-example-endpoint |
meta |
profile : http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Endpoint |
extension |
url : https://profiles.ihe.net/ITI/mCSD/StructureDefinition/IHE.mCSD.PurposeOfUse |
value |
coding |
system : http://example.org/purpose-of-use |
code : downtime |
display : Downtime |
text : Downtime |
identifier |
system : http://example.org/endpoints |
value : EP-12345 |
status : active |
connectionType |
system : http://terminology.hl7.org/CodeSystem/endpoint-connection-type |
code : hl7-fhir-rest |
managingOrganization |
reference : Organization/ca-csd-example-organization |
display : Example Health Organization |
period |
start : 2024-01-01T00:00:00Z |
end : 2024-12-31T23:59:59Z |
payloadType |
coding |
system : http://terminology.hl7.org/CodeSystem/endpoint-payload-type |
code : any |
display : Any |
address : http://example.org/fhir |
<Endpoint xmlns="http://hl7.org/fhir"> <id value="ca-csd-example-endpoint" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Endpoint" /> </meta> <extension url="https://profiles.ihe.net/ITI/mCSD/StructureDefinition/IHE.mCSD.PurposeOfUse"> <valueCodeableConcept> <coding> <system value="http://example.org/purpose-of-use" /> <code value="downtime" /> <display value="Downtime" /> </coding> <text value="Downtime" /> </valueCodeableConcept> </extension> <identifier> <system value="http://example.org/endpoints" /> <value value="EP-12345" /> </identifier> <status value="active" /> <connectionType> <system value="http://terminology.hl7.org/CodeSystem/endpoint-connection-type" /> <code value="hl7-fhir-rest" /> </connectionType> <managingOrganization> <reference value="Organization/ca-csd-example-organization" /> <display value="Example Health Organization" /> </managingOrganization> <period> <start value="2024-01-01T00:00:00Z" /> <end value="2024-12-31T23:59:59Z" /> </period> <payloadType> <coding> <system value="http://terminology.hl7.org/CodeSystem/endpoint-payload-type" /> <code value="any" /> <display value="Any" /> </coding> </payloadType> <address value="http://example.org/fhir" /> </Endpoint>
{ "resourceType": "Endpoint", "id": "ca-csd-example-endpoint", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Endpoint" ] }, "extension": [ { "url": "https://profiles.ihe.net/ITI/mCSD/StructureDefinition/IHE.mCSD.PurposeOfUse", "valueCodeableConcept": { "coding": [ { "system": "http://example.org/purpose-of-use", "code": "downtime", "display": "Downtime" } ], "text": "Downtime" } } ], "identifier": [ { "system": "http://example.org/endpoints", "value": "EP-12345" } ], "status": "active", "connectionType": { "system": "http://terminology.hl7.org/CodeSystem/endpoint-connection-type", "code": "hl7-fhir-rest" }, "managingOrganization": { "reference": "Organization/ca-csd-example-organization", "display": "Example Health Organization" }, "period": { "start": "01/01/2024 00:00:00", "end": "12/31/2024 23:59:59" }, "payloadType": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/endpoint-payload-type", "code": "any", "display": "Any" } ] } ], "address": "http://example.org/fhir" }