Location
Based on the FHIR-model for Location.
Fields
| Name | Type | Beskrivelse | Merknader |
|---|---|---|---|
| name | String | The location name | |
| resourceType | String | The resource type (Location) | |
| id | String | The location id | Assigned by the Location Registry, can't be set explicitly |
| mode | String | Only Instance is supported, and set by default |
|
| managingOrganization | Reference | Reference to the organization owning/managing the location | Contains a full resource url |
| contact | ExtendedContactDetail | contact information for the location, e.g addresses or phone numer | |
| position | object | Longitude and latitude of the location | |
| hoursOfOperation | Availability | Opening hours for the location | |
| status | Code | Flag indicating if the location is active or not |
JSON structure
{
"resourceType" : "Location", // from Resource: id
"name" : "<string>", // Name of the location as used by humans
"mode" : "<code>", // instance | kind
"contact" : [{ ExtendedContactDetail }], // Official contact details for the location
"position" : { // The absolute geographic location
"longitude" : <decimal>, // Longitude with WGS84 datum
"latitude" : <decimal>, // Latitude with WGS84 datum
},
"managingOrganization" : { Reference(Organization) }, // Organization responsible for provisioning and upkeep
"hoursOfOperation" : [{ Availability }], // What days/times during a week is this location usually open (including exceptions)
"status" : "<code>" // active | suspended | inactive
}