Location (DRAFT)

Description

The FHIR Location resource profile defines units or departments within an organization or facility.

  • Doesn't have a business identifier.
  • This property contains the reference to his parent which is a facility.

See JSON structures below for examples.

References

  • Appears in PractitionerRole.location references.

Snapshot

idΣ0..1id
id0..1string
extensionI0..*Extension
versionIdΣ0..1id
lastUpdatedΣ0..1instant
sourceΣ0..1uri
profileS Σ1..1canonical(StructureDefinition)
securityΣ I0..*CodingBinding
tagΣ I0..*Coding
implicitRulesΣ ?!0..1uri
language0..1codeBinding
textI0..1Narrative
containedI0..*Resource
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
identifierΣ I0..*Identifier
statusS Σ ?!1..1codeBinding
operationalStatusΣ I0..1CodingBinding
nameS Σ1..1string
aliasS2..2string
descriptionΣ0..1markdown
modeΣ0..1codeBinding
typeΣ0..*CodeableConceptBinding
contact0..*ExtendedContactDetail
address0..1Address
formΣ0..1CodeableConcept
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
longitude1..1decimal
latitude1..1decimal
altitude0..1decimal
id0..1string
extensionI0..*Extension
referenceS Σ I1..1string
typeΣ0..1uriBinding
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemS Σ0..1uriFixed Value
versionΣ0..1string
codeS Σ I1..1codeBindingFixed Value
displayΣ I0..1string
userSelectedΣ0..1boolean
textΣ0..1string
systemΣ0..1uri
valueΣ I0..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
displayΣ I0..1string
partOfI0..1Reference(Location)
characteristic0..*CodeableConcept
hoursOfOperation0..*Availability
virtualService0..*VirtualServiceDetail
endpointI0..*Reference(Endpoint)

Click here for information about the base FHIR Location specification.

JSON structure

These are templates for the FHIR Location. See table below for values description.

Department structure:

{
    "resourceType": "Location",
    "id": "{id}",
    "meta": {
        "profile":  [
            "http://fhir.akinox.com/r4b/StructureDefinition/Location"
        ]
    },
    "status": "active",
    "name": "{name}",
    "alias":  [
        "{nameFr}",
        "{nameEn}"
    ],
    "managingOrganization": {
        "reference": "{managingOrganizationReference}",
        "identifier": {
            "type": {
                "coding":  [
                    {
                        "system": "http://akinox.com/fhir/ValueSet/akinox-identifier-type",
                        "code": "MSSS"
                    }
                ]
            },
            "system": "urn:oid:2.16.124.10.101.1.60.101",
            "value": "{managingOrganizationMsssCode}"
        }
    }
}

Description of the values

Property Description
{id} This is the logical identifier. It's a short type.
{name} Name of the location.
{nameFr} French name of the location.
{nameEn} English name of the location.
{managingOrganization} Literal reference containing the locations's parent logical identifier i.e. Organization/0dc32dbb-8ff9-42b8-8484-0cae64f0aef0 .
{managingOrganizationMsssCode} This is the business identifier of the managing organization. It is the facility code for the Ministry of Health and Social Services (Ministère de la Santé et des Services Sociaux). varchar(9) max. Only present in facility structures.

Notes on typical FHIR errors

  • If you remove the meta.profile, there will be an error on the FHIR validation.