-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Fix NoSuchMethodError in Fhir validation #138
Comments
@dubdabasoduba it seems the validator is having an issue validating resources that have the According to https://www.hl7.org/fhir/domainresource-definitions.html#DomainResource.text alternative names are If I replace text in the failing resources with any of the alternatives above, the validation works. Can we work with this modification on the resources or must we use |
@Wambere when you say replace does this mean altering the resource itself? |
@dubdabasoduba instead of
I switched it to
|
@Wambere as we discussed earlier we can update the validator to replace |
@dubdabasoduba after thinking about how to go about this, I now think it makes more sense for the validator to "notify" the user that they need to make that change instead of itself trying to make that change, since this would involve making changes to a PR. |
@Wambere I was thinking of an inconsequential update, where the validator just changes it before validating and does not persist it in memory. Since the servers will most of the time return the resources with this property added. If the data was copied from the server then it will have this data updated by the server or the resource generator on the tooling repo |
Fix the error below
source
The text was updated successfully, but these errors were encountered: