FHIR Chat · Meta Operations · implementers

Stream: implementers

Topic: Meta Operations


view this post on Zulip Ernesto Garcia (Nov 24 2018 at 02:53):

Hello All,
We are working on implementing Meta Operations on Fhir. We found a xml to add a new meta:

POST /fhir/Patient/example/$meta-add
[Other headers]

<Parameters xmlns="http://hl7.org/fhir">
<parameter>
<name value="meta"/>
<valueMeta>
<tag>
<system value="http://example.org/codes/tags"/>
<code value="record-lost"/>
<display value="Patient File Lost"/>
</tag>
</valueMeta>
</parameter>
</Parameters>

However, we are looking for a JSON. Can anyone help us on validating if this json is valid for this operation and can also accomplish FHIR standard:

{
"Parameters": {
"parameter": {
"name": {
"value": "meta"
},
"valueMeta": {
"tag": {
"system": {
"value": "http://example.org/codes/tags"
},
"code": {
"value": "record-lost"
},
"display": {
"value": "Patient File Lost"
}
}
}
}
}
}

Thanks in advance for yor kind support.

Regards,
Ernesto Garcia.

view this post on Zulip Lloyd McKenzie (Nov 24 2018 at 03:16):

That JSON is not valid. An example of a valid instance is here: http://build.fhir.org/parameters-example.json.html


Last updated: Apr 12 2022 at 19:14 UTC