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
}
Eksempel
{
"id": "123",
"name": "Orkdal Sjukehus",
"description": "Orkdal sjukehus",
"status": "active",
"managingOrganization": {
"reference": "https://orgreg.dev.grunndata.nhn.no/Organization/883974832"
},
"contact": [
{
"telecom": [
{
"system": "phone",
"value": "06800"
}
]
}
],
"address": {
"line": [
"Sjukehusvegen 3"
],
"city": "Orkanger",
"state": "Orkanger",
"postalCode": "7300",
"country": "Norge"
},
"position": {
"longitude": 9.845852851867678,
"latitude": 63.29225453267288
}
}