Resources
For endpoints, see API
Available resource types
| RESOURCE_TYPE | Description |
|---|---|
| patientInfo | Holds all resources for patients |
| communicationNeed | Information about patients communication needs |
CodeAndSystem
The data type "CodeAndSystem" is used for fields where a code system is used. For example code and languages in the communicationNeed-resource.
On create/update requests, only string value of the code is required, and the server will add values for display and codeSystem.
| Field | Type | Required | Description |
|---|---|---|---|
| code | String | x | The code value |
| display | String | Human readable display value | |
| codeSystem | String | Code system |
For example would this post
{
"languages": ["NOR", "SWE"]
}
return this response
{
"languages": [
{
"code": "NOR",
"display": "Norsk",
"codeSystem": "VOLVEN_3303"
},
{
"code": "SWE",
"display": "Svensk",
"codeSystem": "VOLVEN_3303"
}
]
}