Stream: implementers
Topic: codeable concept+required value set +cardinality 1..1
Lital Inghel (Jan 10 2022 at 15:44):
in case of codeable concept with required value set and cardinality of 1..1- the FHIR output can have at least one coding element or only one?
I found this in the IG, but it doesn't refer to the cardinality and its influence-
https://www.hl7.org/fhir/terminologies.html
The following rules apply when required bindings are used with the CodeableConcept data type:
at least one Coding element SHALL be present
one of the Coding values SHALL be from the specified value set
text can be provided as well, and is always recommended, but is not an acceptable substitute for the required code
Lloyd McKenzie (Jan 10 2022 at 15:47):
You can have as many codings as you like and you can also have free text. However you MUST have one coding that is drawn from the value set. Cardinality says that the containing element can't be present unless the element is present (and valid). If minOccurs was 0, then you'd be free to omit the element entirely.
Last updated: Apr 12 2022 at 19:14 UTC