Stream: implementers
Topic: slice by extension
Chris Grenz (Sep 15 2016 at 14:11):
Here: http://hl7-fhir.github.io/profiling.html#discriminator there is an example (in the table, 4th line) of slicing by an extension. Except that the discriminator is: item.extension("http://acme.org/extensions/test").code
and Extension doesn't have a code
child element. What's it all mean?
Chris Grenz (Sep 15 2016 at 14:11):
Should it be item.extension("http://acme.org/extensions/test").valueCode
?
Chris Grenz (Sep 15 2016 at 14:12):
On a related note, shoulditem.extension("http://acme.org/extensions/test").value
be valid?
Brian Postlethwaite (Sep 16 2016 at 22:23):
Yes, I believe .value
should be valid
Chris Grenz (Sep 17 2016 at 13:11):
So is item.extension("http://acme.org/extensions/test").code
correct or a defect that should be corrected?
Last updated: Apr 12 2022 at 19:14 UTC