Stream: implementers
Topic: Task Resource input
Mike Ross (Jun 15 2016 at 21:12):
I'm creating a FHIR Task Resource for a project, and I'm trying to figure out where I put some of the details of the task. The "input" field is a collection of name/values to help detail what is needed for the task. Is this the proper location to specify an associated Diagnosis or Procedure for the task? I'm also looking at putting the Clinical Notes in this section. Below is an example of what I am attempting.
"input": [
{
"name": "Diagnosis",
"valueCoding": {
"system": "ICD10",
"code": "ICD-M53.9",
"display": "OTHER UNSPECIFIED BACK DISORDERS"
}
},
{
"name": "Procedure",
"valueCoding": {
"system": "CPT",
"code": "CPT-73000",
"display": "X-Ray, Clavicle"
}
},
{
"name": "ClinicalNotes",
"valueString": "Please X-Ray the right clavicle"
}
]
Also, are these input values "extensions"? Or is the name/value* all that is needed?
Mike Ross (Jun 15 2016 at 21:12):
http://hl7.org/fhir/2016May/task.html
John Moehrke (Jun 15 2016 at 21:37):
(deleted)
Keith Boone (Jun 16 2016 at 06:26):
I think they should be all that is needed, or at least that was my intent
Mike Ross (Jun 16 2016 at 15:47):
Thanks, Keith.
Last updated: Apr 12 2022 at 19:14 UTC