You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got a question which uses valueStrings (just as an example - don't do this in production):
{
"linkId": "HeightUnit-01",
"type": "choice",
"text": "Please indicate what units of measurement (centimeters or inches) that you recorded your height in.",
"answerOption": [
{
"valueString": "cm"
},
{
"valueString": "inches"
}
],
"required": true
},
But LHCForms answers it with a Coding:
{
"linkId": "HeightUnit-01",
"text": "Please indicate what units of measurement (centimeters or inches) that you recorded your height in.",
"answer": [
{
"valueCoding": {
"display": "inches"
}
}
]
},
This makes the IG publisher somewhat unhappy and it considers this to be an error: Option list has no option values of type coding
The text was updated successfully, but these errors were encountered:
Thank you for reporting this and especially for pointing out how it is impacting you. I was looking a the some of the code for that last week and noticing again that it was not quite right, but since fixing it will affect many parts of the code, I was reluctant to attempt the fix just then. However, your report helps to make this a priority. It might take us a few weeks to get a fixed version out, though.
I've got a question which uses valueStrings (just as an example - don't do this in production):
But LHCForms answers it with a Coding:
This makes the IG publisher somewhat unhappy and it considers this to be an error:
Option list has no option values of type coding
The text was updated successfully, but these errors were encountered: