API Specifications v1.1

Specification Notes

  • This document defines an API which uses JSON for exchanging data.
  • All dates should follow ISO 8601 and be in UTC. Ex) 2011-11-16T14:26:15Z
  • All field/properties should follow the camelCasing convention.
  • Use UTF-8 encoding.

Facility Resource

The API exposes a representation of the health facilities in JSON.

Example Health Facility response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
    "facilities": {
        "facility": {
            "name": "Kakamega HC",
            "url": "http: //facilityregistry.org/api/v1/facilities/0X9OCW3JMV98EYOVN32SGN4II",
            "id": "0X9OCW3JMV98EYOVN32SGN4II",
            "active": true,
            "createdAt": "2011-11-16T14:26:15Z",
            "updatedAt": "2011-11-16T14:26:15Z",
            "coordinates": [
                -1.6917,
                29.525
            ],
            "identifiers": [
                {
                    "agency": "MOH",
                    "context": "DHIS",
                    "id": "123"
                },
                {
                    "agency": "UNICEF",
                    "context": "mtrac",
                    "id": "53adf"
                }
            ],
            "properties": {
                "numBeds": 55,
                "services": [
                    "XR",
                    "OBG",
                    "TR"
                ],
                "equipment": [
                    {
                        "id": 542,
                        "name": "Microscope"
                    },
                    {
                        "id": 942,
                        "name": "Vaccine Fridge"
                    }
                ],
                "manager": "Mrs. Liz",
                "hasMaternity": true,
                "medicalOfficer": "Dr.Mukombo"
            }
        }
    }
}

Core Properties

Each facility must contain the following core properties.

name - Name of the facility.

name: "Kakamega HC"

id - The internal system unique identifier. The id most be universally unique within the FRED registry.

id: '0X9OCW3JMV98EYOVN32SGN4II'

Note: the API does not providing a specific format for IDs. That is left up to the implementation.

url - URL link to the unique ID API resource for the facility

url: "http://facilityregistry.org/api/v1/facilities/0X9OCW3JMV98EYOVN32SGN4II.json"

External Facility Identifiers

One of the primary functions of the facility registry is facilitate a mapping of the different IDs used by different agencies to represent a particular facility.

Each external identifier consists of the following components:

  • agency: agency who created the code. ex) ministry of health, UNICEF, etc.
  • context: context/external system in which the agency is using the ID. eg) HMIS, DHIS2, HR
  • id: unique identifier
identifiers : [
      {agency: "MOH", context: "DHIS", id: "123"},
      {agency: "UNICEF", context: "mtrac", id: "53adf"},
      { .... }
]

coordinates

Geolocation represented by longitude and latitude coordinates in that order. All coordinates assume as WSG84 projection.

coordinates: [lng, lat]

active - indicates whether the facility is active or not.

active: {true/false}

createdAt - ISO 8601 timestamp of when the facility was created.

createdAt: "2011-11-16T14:26:15Z"

updatedAt - ISO 8601 timestamp of when the facility was last updated.

updatedAt: "2011-11-18T16:26:15Z"

Extended Properties

Extended properties are implementation specific properties in the properties block.

The property types that are supported are:

  • String – A series of textual characters
  • Integer – A whole number
  • Decimal
  • Boolean – A true or false value
  • Date: ISO 8601 format. eg) 2012-12-16T18:22:20Z
  • Lists - A list of one of the following data types * Simple data types such as the code mnemonic of selected value(s) (example: “apple”,”orange”) * Implementation specific complex data

Sample properties

"properties": {
    "numBeds": 55,
    "services": ["XR","OBG","TR"],
    "equipment": [
        {
            "id": 542,
            "name": "Microscope"
        },
        {
            "id": 942,
            "name": "Vaccine Fridge"
        }
    ],
    "manager": "Mrs. Liz"
    "hasMaternity": true,
},

Property field specification expectations

  • For each property field, the implementer specifies a stable code that should not be changed once defined. The implementation should warn the user if they attempt to modify the code.
  • The property field code should consist only of letters and number and not any special characters, spaces or punctuation to allow them to represent a good xml element. The API does not specify whether to define properties using camelCasing or lower_case, however, we encourage the implementation to be consistent in their formating.
  • Each property field should be unique
  • Specific properties for attachments and images are not supported in this version. It is possible to use a text string to represent a file path but that is implementation specific
  • Properties should follow the camelCasing naming convention

REST API

Versioning

All FRED API specifications published by the FRED team are assigned a unique version number in the format MAJOR.MINOR.REVISION. These version numbers follow semantic versioning pattern whereby:

  • REVISION is incremented for revisions to a MINOR version. These changes represent nonfunctional changes to the API.
  • MINOR version numbers are incremented when new functionality is introduced which is backwards compatible with existing functionality in the MAJOR version. MINOR versions numbers are semantically compatible with previous MINOR versions.
  • MAJOR version numbers are incremented when new functionality is introduced which is semantically incompatible with previous versions.
/api/v1/facilities.json

All prior versions still supported by the code should be exposed by its own URL.

Authentication

Will be supported initially by HTTP Basic Authentication.

In the future, support for HTTP Digest Authentication in addition to OAuth 2.0 will be considered.

HTTP Responses

  • 200 OK - All Indicates that the specified action was successfully completed. A 200 response indicates that the registry did successfully perform the operation and the response contains the final result of the action.
  • 201 Created - Indicates that a request was successful and as a result, a resource has been created
  • 401 Unauthorized - Raised when the client attempts to perform an operation against a resource which requires authorization. This error code indicates a challenge for client credentials.
  • 403 Forbidden - Indicates that the client does not have the necessary permission to perform the specified operation against the requested resource.
  • 404 Not Found - Indicates that a resource was not found or is not available.
  • 405 Not Allowed - Indicates that the requested operation is not allowed on the current resource (for example: DELETE on a collection)
  • 409 Conflict - Indicates that the facility registry has detected a conflict in the operation and has refused to perform the operation.
  • 410 Gone - Indicates that a resource did exist but has been permanently removed.
  • 415 Unsupported Media Type - Indicates that the content supplied in the request is not supported by the facility registry.
  • 500 Internal Server Error - Indicates that the server encountered an error while attempting to execute the desired action.

Error Messages

should we get rid of this?

Returns HTTP Response 401 or 404 along with a human readable error message.

Optional Verbose Error messages

JSON

{
  “message”: “human readable error message”,
  “moreInfo” : “http://api.facilityreOBgistry.org/errors/12345"
}

REST Resources

Get Facilities

GET  /facilities.json

200 OK - Returns facility results response object

Parameters

  • allProperties - boolean field (default true) specifying that all the copre and extended properties should be returned.
/facilities.json?allProperties={true/false}

Sorting

  • sortAsc - Sort ascending
  • sortDesc - Sort descending
/facilities.json?sortAsc={property1}

Sorting is currently limited to one field

Pagination

  • limit - Number of records to return in a result. Default = 25
  • offset - Offset of the search result. Default = 0
  • limit=off - Disables pagination. Pagination on by default.
/facilities.json?limit=25&offset=50

Partial Response

  • fields - specifies which fields should be returned in the response.
/facilities.json?fields=name,id,properties:numBeds

This would return just the specified properties of name, id and numBeds (in the properties sub-object) in a partial response. This is very helpful in optimizing performance in bandwidth constrained settings. All properties in the facility registry are accessible by this method including the core properties and those in the property sub-object.

Filtering Facilities

  • {propertyName} - name of the property you want to filter by
/facilities.json?{propertyName}={filterValue}
  • Supports only exact matches of the filter value
  • One value per instance of parameter
  • Name of a parameter must exactly match the name of the property (core or extended) on which it filters data
  • Instances of the same parameter are OR and different are AND.

For example: ?properties.services=OBG&properties.services=ER would filter all facilities offering OBG OR ER, where as ?identifiers.id=2030&identifiers.agency=MOH would filter facilities with an identifier 2030 AND identifier assigned by MOH.

Filter by Active status

  • active - filter facilities based on whether they are active or not.
/facilities.json?active={true/false}

Filter by Updated Since

  • updatedSince - return facilities updated since a particular date expressed in ISO 8601 format.
/facilities.json?updatedSince=2011-11-16T00:00:00Z

Create a Facility

POST /facilities.json

201 Created - Header location set to the url of the new resource

If a duplicate is detected (up to the implementation) a 409 is returned

Note

Need to define JSON input status

PUT, DELETE - Not supported

HTTP Response: 405 Not Allowed

Return an individual facility

GET /facilities/{id}.json

POST:: Error, not supported

Delete a facility

DELETE /facilities/{id}.json

200 OK - Returns id of the deleted facility.

When the facility registry receives a request to obsolete a facility, the facility registry SHALL validate that the facility exists. If the requested target of deletion does not exist, the facility registry SHALL respond with an HTTP 404 error.

If the facility resource exists, the facility registry SHALL delete the facility resource such that the record is no longer discoverable to consumers. The process by which the facility registry marks the facility as deleted is not specified in this document, and is left to implementers to determine the most appropriate method.

Once the record is deleted, the facility registry SHALL return an HTTP 200 response with the URL of the deleted facility.

PUT: Update facility if exists, if not error. Success: HTTP 200, JSON collection

GET: Returns facility