Location
Basert på FHIR-modellen for Location.
Inkluderer disse feltene:
| Feltnavn | Type | Beskrivelse | Merknader |
|---|---|---|---|
| name | String | Navnet på lokasjonen | |
| resourceType | String | Typen ressurs (Location) | |
| id | String | Id på lokasjonen | Tildeles av server, kan ikke settes eksplisitt |
| mode | String | Kun Instance som er støttet, men denne trengs ikke angis eksplisitt |
|
| managingOrganization | Reference | Referanse til organisasjonen som eier lokasjonen | Vil inneholde full url til ressursen |
| contact | ExtendedContactDetail | kontaktinformasjon for lokasjonen, for eksempel adresser og telefonnummer | |
| position | object | Lengdegrad og breddegrad for lokasjonen | |
| hoursOfOperation | Availability | Åpningstider for lokasjonen | |
| status | Code | Status for om lokasjonen er aktiv eller inaktiv |
Struktur
{
"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
}