Table of Contents |
---|
Entity & other comparison
...
https://www.hl7.org/fhir/organization.html
HL7 | e-Health | Result |
---|---|---|
Organization | [legal_entities] | |
"identifier" : [{ Identifier }] | id | uuid | not null | Ok |
"active" : <boolean> | status | enum('active','closed') | not null | Ok |
"type" : [{ CodeableConcept }] | type | varchar | not null | Ok |
"name" : "<string>" | name | varchar | not null | Ok |
"alias" : ["<string>"], // A list of alternate names that the organization is known as, or was known as in the past | ??? | Small problem |
"telecom" : [{ ContactPoint }] | phones | jsonb[] | Ok |
"telecom" : [{ ContactPoint }] | email | varchar | Ok |
"partOf" : { Reference(Organization) }, | ??? | Problem |
"contact" : [{ // Contact for the organization for a certain purpose}] | [employees] | Ok |
→"purpose" : { CodeableConcept }, // The type of contact | [employees].employee_type | Ok |
→"name" : { HumanName }, // A name associated with the contact | [employees].[parties].first_name + last_name | Ok |
→"telecom" : [{ ContactPoint }], // Contact details (telephone, email, etc.) for a contact | [employees].[parties].phones | Ok |
→"address" : { Address } // Visiting or postal addresses for the contact | [employees].[parties].??? | Small problem |
"endpoint" : [{ Reference(Endpoint) }] | redirect_uri ??? | Small problem |
Location
https://www.hl7.org/fhir/location.html
HL7 | e-Health | Result |
---|---|---|
Location | [divisions] | |
"identifier" : [{ Identifier }] | id | uuid | not null | Ok |
"status" : "<code>", // active | suspended | inactive | status | varchar | not null | Ok |
"operationalStatus" : { Coding }, // The Operational status of the location (typically only for a bed/room) | ??? | Small problem |
"name" : "<string>", // Name of the location as used by humans | name | varchar | not null | Ok |
"alias" : ["<string>"], // A list of alternate names that the location is known as, or was known as in the past | ??? | Small problem |
"description" : "<string>", // Additional details about the location that could be displayed as further information to identify the location beyond its name | ??? | Small problem |
"mode" : "<code>", // instance | kind | ??? | Small problem |
"type" : { CodeableConcept }, // Type of function performed | type | varchar | not null | Ok |
"telecom" : [{ ContactPoint }], // Contact details of the location | phones | jsonb[] | not null email | varchar | Ok |
"address" : { Address }, // Physical location | addresses | jsonb | not null | Ok |
"physicalType" : { CodeableConcept }, // Physical form of the location | ??? | Ok |
"position" : { // The absolute geographic location | location | geometry | Ok |
→"longitude" : <decimal>, // R! Longitude with WGS84 datum | location | geometry | Ok |
→"latitude" : <decimal>, // R! Latitude with WGS84 datum | location | geometry | Ok |
→"altitude" : <decimal> // Altitude with WGS84 datum | location | geometry | Ok |
"managingOrganization" : { Reference(Organization) }, // Organization responsible for provisioning and upkeep | legal_entity_id | uuid | not null | Ok |
"partOf" : { Reference(Location) }, // Another Location this one is physically part of | ??? | Small problem |
"endpoint" : [{ Reference(Endpoint) }] // Technical endpoints providing access to services operated for the location | redirect_uri ??? | Small problem |
Practitioner
https://www.hl7.org/fhir/practitioner.html
HL7 | e-Health | Result |
---|---|---|
Practitioner | [employees] | |
"identifier" : [{ Identifier }] | id | uuid | not null | Ok |