"status": "active"
"managingOrganization": {
"reference": "Organization/f001"
}
"physicalType": {
"coding": [
{
"code": "wi",
"system": "http://hl7.org/fhir/location-physical-type",
"display": "Wing"
}
]
}
"name": "South Wing, second floor"
"operationalStatus":
"telecom": [
{
"use": "work",
"system": "phone",
"value": "2328"
},
{
"use": "work",
"system": "fax",
"value": "2329"
},
{
"system": "email",
"value": "second wing admissions"
},
{
"use": "work",
"system": "url",
"value": "http://sampleorg.com/southwing"
}
]
"alias":
"endpoint": [
{
"reference": "Endpoint/example"
}
]
"mode": "instance"
"address": {
"postalCode": "9105 PZ",
"city": "Den Burg",
"use": "work",
"line": [
"Galapagosweg 91, Building A"
],
"country": "NLD"
}
"position": {
"latitude": 42.25475478,
"altitude": 0,
"longitude": -83.6945691
}
"identifier": [
{
"value": "B1-S.F2"
}
]
"type":
"partOf":
"description": "Second floor of the Old South Wing, formerly in use by Psychiatry"
{
"status": "active",
"managingOrganization": {
"reference": "Organization/f001"
},
"physicalType": {
"coding": [
{
"code": "wi",
"system": "http://hl7.org/fhir/location-physical-type",
"display": "Wing"
}
]
},
"name": "South Wing, second floor",
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/location-alias",
"valueString": "Burgers University Medical Center, South Wing, second floor"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/location-alias",
"valueString": "BU MC, SW, F2"
}
],
"resourceType": "Location",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Burgers UMC, South Wing, second floor</div>"
},
"telecom": [
{
"use": "work",
"system": "phone",
"value": "2328"
},
{
"use": "work",
"system": "fax",
"value": "2329"
},
{
"system": "email",
"value": "second wing admissions"
},
{
"use": "work",
"system": "url",
"value": "http://sampleorg.com/southwing"
}
],
"endpoint": [
{
"reference": "Endpoint/example"
}
],
"mode": "instance",
"address": {
"postalCode": "9105 PZ",
"city": "Den Burg",
"use": "work",
"line": [
"Galapagosweg 91, Building A"
],
"country": "NLD"
},
"position": {
"latitude": 42.25475478,
"altitude": 0,
"longitude": -83.6945691
},
"identifier": [
{
"value": "B1-S.F2"
}
],
"id": "1",
"description": "Second floor of the Old South Wing, formerly in use by Psychiatry"
}
{
"resourceType" : "Location",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Unique code or number identifying the location to its users
"status" : "<code>", // active | suspended | inactive
"operationalStatus" : { Coding }, // The Operational status of the location (typically only for a bed/room)
"name" : "<string>", // Name of the location as used by humans
"alias" : ["<string>"], // A list of alternate names that the location is known as, or was known as in the past
"description" : "<string>", // Additional details about the location that could be displayed as further information to identify the location beyond its name
"mode" : "<code>", // instance | kind
"type" : { CodeableConcept }, // Type of function performed
"telecom" : [{ ContactPoint }], // Contact details of the location
"address" : { Address }, // Physical location
"physicalType" : { CodeableConcept }, // Physical form of the location
"position" : { // The absolute geographic location
"longitude" : <decimal>, // R! Longitude with WGS84 datum
"latitude" : <decimal>, // R! Latitude with WGS84 datum
"altitude" : <decimal> // Altitude with WGS84 datum
},
"managingOrganization" : { Reference(Organization) }, // Organization responsible for provisioning and upkeep
"partOf" : { Reference(Location) }, // Another Location this one is physically part of
"endpoint" : [{ Reference(Endpoint) }] // Technical endpoints providing access to services operated for the location
}
The following search parameters can be used to query Location resources. Just submit them like so:
https://api.1up.health/fhir/stu3/Location?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
address | text | address |
address-city | text | address.city |
address-country | text | address.country |
address-postalcode | text | address.postalCode |
address-state | text | address.state |
address-use | text | address.use |
endpoint | reference | endpoint |
identifier | text | identifier |
name | text | name, alias |
near | text | position |
near-distance | quantity | position |
operational-status | text | operationalStatus |
organization | reference | managingOrganization |
partof | reference | partOf |
status | text | status |
type | text | type |