Stream: IG creation
Topic: QA warning in Value set
Brian Reinhold (Mar 15 2019 at 10:05):
I have a warning from QA as follows in a value set
Name should be usable as an identifier for the module by machine processing applications such as code generation [name.matches('A-Z{0,254}')]
However the name is fine as one sees below (it contains only characters that would be found in the logical id)
<version value="0.2.0"/>
<name value="11073MDCnotObject"/>
<title value="11073 MDC Non-Object codes"/>
Anyone know what is causing that warning?
Stefan Karl (Mar 15 2019 at 11:53):
In FHIR R4 ValueSet has an invariant name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
, which means that name should start with an uppercase letter.
Rick Geimer (Mar 15 2019 at 12:01):
Good catch @Stefan Karl . @Brian Reinhold maybe change the name of that value set to "IEEE 11073 MDC Non-Object codes"
Grahame Grieve (Mar 15 2019 at 12:15):
that's the title - name would be IEEE11073... except I'd go for MDC....
Last updated: Apr 12 2022 at 19:14 UTC