Hi,
I created a patient and tried to POST an observation which was actually an observation of another patient in the Cerner itself but showing 422 Unprocessable entity issue.
X-request-id - 0aad0fa2-617d-4bf8-bcc0-22d23a6a7fa3
The Body is shown below:
{
"resourceType": "Observation",
"identifier": [
{
"value": "CE87caf4b7-9397-4667-9897-702218017c9e-197573326-2021121613403900"
}
],
"status": "final",
"category": [
{
"coding": [
{
"code": "vital-signs",
"display": "Vital Signs"
}
],
"text": "Vital Signs"
}
],
"code": {
"coding": [
{
"code": "703540",
"display": "Respiratory Rate",
"userSelected": true
}
],
"text": "Respiratory Rate"
},
"subject": {
"reference": "Patient/12770316"
},
"effectiveDateTime": "2021-12-16T13:40:38.000Z",
"performer": [
{
"extension": [
{
"valueCodeableConcept": {
"coding": [
{
"code": "LA",
"display": "legal authenticator"
}
],
"text": "legal authenticator"
},
}
],
"reference": "Practitioner/4122622"
}
],
"valueQuantity": {
"value": 12,
"unit": "br/min",
"code": "/min"
}
}
The error body is :
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "invalid",
"details": {
"text": "Unprocessable entity"
}
}
]
}
Can anyone help on this?
Thanks