CodeSystem
Based on the model for service types, converted to the FHIR representation.
Fields
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | Id, internal to the Location registry | Id used by the LocationRegistry |
| url | String | The url to the code system | |
| status | string | Flag indicating if the code system is active | |
| name | String | Code system name | |
| description | String | Code description | |
| concept | Object | List of codes | |
| code | String | Code value | |
| display | String | Code display name | |
| definition | String | Code description | |
| system | String | Code system url |
JSON structure
{
"resourceType": "CodeSystem",
"id": "<string>",
"url": "<string>",
"name": "<string>",
"status": "<string>",
"description": "<string>",
"concept": [
{
"code": "<string>",
"display": "<string>",
"definition": "<string>",
"designation": [
{
"use": {
"system": "<string>",
"code": "<string>",
"display": "<string>"
}
}
]
}
]
}