FHIR Chat · profiling choices · IG creation

Stream: IG creation

Topic: profiling choices


view this post on Zulip Sean McIlvenna (Jan 31 2020 at 18:30):

isn't this incorrect?

{
  "id": "Observation.valueQuantity",
  "path": "Observation.valueQuantity"
},

I thought it should be:

{
  "id": "Observation.value[x]",
  "path": "Observation.value[x]",
  "type": [{ "code": "Quantity" }]
},

but I see the former in official examples

view this post on Zulip Sean McIlvenna (Jan 31 2020 at 18:32):

at a minimum I would expect the correct way would be:

{
  "id": "Observation.valueQuantity",
  "path": "Observation.value[x]",
  "type": [{ "code": "Quantity" }]
},

view this post on Zulip Sean McIlvenna (Jan 31 2020 at 18:32):

where the path matches the exact path of what's in the spec's definition

view this post on Zulip Chris Moesel (Jan 31 2020 at 18:53):

Firely did a great blog on this: https://blog.fire.ly/2019/09/13/type-slicing-in-fhir-r4/

view this post on Zulip Grahame Grieve (Jan 31 2020 at 19:08):

it's different between differential and snapshot


Last updated: Apr 12 2022 at 19:14 UTC