Stream: IG creation
Topic: IG Publisher warning
Brian Reinhold (Sep 20 2018 at 09:46):
I am getting this warning
ValueSet/11073MDCnotObject: ValueSet warning Name should be usable as an identifier for the module by machine processing applications such as code generation [name.matches('[A-Z]([A-Za-z0-9_]){0,254}')]
As far as I can tell the name satisfies the criteria (now that I removed the dash). Am I missing something?
Stefan Karl (Sep 20 2018 at 11:37):
The regex likes the name to start with an uppercase letter [A-Z].
Brian Reinhold (Sep 20 2018 at 15:11):
The regex likes the name to start with an uppercase letter [A-Z].
How did you figure that out? Is it stated any where or was it trial and error?
Stefan Karl (Sep 20 2018 at 15:16):
It's in the constraint name.matches('[A-Z]([A-Za-z0-9_]){0,254}')
which is defined for ValueSet and other conformance resources.
Last updated: Apr 12 2022 at 19:14 UTC