HealthcareService
Based on the FHIR-model for HealthcareService.
The HealthcareService resource represents the services offered by the associated organization. The type of service is defined by OID 8663: Tjenestetyper for kommunal helse- og omsorgstjeneste mv., but the Location Registry currently only supports the following health care service types:
| Code | Norwegian name | Description |
|---|---|---|
| KA02 | Legevakt | Health care primary service |
| KF01 | Helsestasjons- og skolehelsetjeneste | Healthcare service for children and youth (0-20 years), provided by public schools |
| KF0103 | Helsestasjon for ungdom | Healthcare service for youth |
Fields
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | Id på helsetjenesten | Assigned by the Location Registry, can't be set explicitly |
| resourceType | String | The resource type (HealthcareService) | |
| Type | CodableConcept | The type of healthcare service | |
| Location | Reference | Reference to the location where the healthcare service is provided | Assigned by the Location Registry, can't be set explicitly |
| name | string | Healthcare service name | |
| extraDetails | markdown | Additional information about the healthcare service, if needed | |
| availability | Availability | opening hours of the healthcare service, if they differ from the location availability | |
| contact | ExtendedContactDetail | contact information for the healthcare service, e.g phone numer or home page |
JSON structure
{
"resourceType": "HealthcareService",
// from Resource: id
"active" : "<boolean>", // Whether this HealthcareService record is in active use
"type" : [{ CodeableConcept }], // Type of service that may be delivered or performed
"location" : [{ Reference(Location) }], // Location(s) where service may be provided
"name" : "<string>", // Description of service as presented to a consumer while searching
"extraDetails" : "<markdown>", // Extra details about the service that can't be placed in the other fields
"availability" : [{ Availability }] // Times the healthcare service is available (including exceptions)
"contact" : [{ ExtendedContactDetail }], // Official contact details for the HealthcareService
}