Stream: implementers
Topic: Incident catalog
P.Salazar (Feb 12 2021 at 10:09):
Hi all,
My team and I were wondering what resource may be used to implement an "incident" catalog to provide a list of incident (ex:
asleep, vomit, rejected...) to send a PATCH to update some fields in Observationa and Task resource.
At first, we thought to use Parameters as here (pls; consider that this is a suggestion. It is possible to find any error in the sintax):
{
"resourceType": "Bundle",
"id": "277d4311-7a26-43ca-951c-5518d06a9b0b",
"type": "searchset",
"total": 1,
"entry": [
{
"resource": {
"resourceType": "Parameters",
"parameter": [
{
"name": "2",
"part": [
{
"name": "Rechazado",
"valueCodeableConcept": {
"coding": [
{
"system": "His",
"code": "3",
"display": "Rechazado"
}
]
}
},
{
"name": "Dormido",
"valueCodeableConcept": {
"coding": [
{
"system": "His",
"code": "1",
"display": "Dormido"
}
]
}
}
]
}
]
},
"search": {
"mode": "match"
}
}
]
}
Thank in advance :)
Lloyd McKenzie (Feb 12 2021 at 14:14):
An incident catalog would typically be a CodeSystem. Parameters is used for invoking operations and in messaging, but it's not a resource that's ever expected to be stored and is not queryable.
Last updated: Apr 12 2022 at 19:14 UTC