We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An issue has been identified on EUSM stage where whenever the plan is updated the goal comparator appends amp; to it.
amp;
The following change is required to resolve the issue:
{ "id": "complete_service_point_check", "description": "Complete check for a particular service point (100%) within the Jurisdiction", "priority": "medium-priority", "target": [ { "measure": "Percent of service points checked", "detail": { "detailQuantity": { "value": 100.0, "comparator": ">", **** "unit": "Percent" } }, "due": "2022-12-23" } ] }
to
{ "id": "complete_service_point_check", "description": "Complete check for a particular service point (100%) within the Jurisdiction", "priority": "medium-priority", "target": [ { "measure": "Percent of service points checked", "detail": { "detailQuantity": { "value": 100.0, "comparator": ">", ******* "unit": "Percent" } }, "due": "2022-12-23" } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An issue has been identified on EUSM stage where whenever the plan is updated the goal comparator appends
amp;
to it.The following change is required to resolve the issue:
to
The text was updated successfully, but these errors were encountered: