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
In the schema we have missingInfoReason is required if politicalExposureStatus is unknown
missingInfoReason
politicalExposureStatus
unknown
missingInfoReason is currently a field in the 'PEP Status' object and details is an array of these objects.
details
Because the missing info field is within an array this requirement can't be validated used JSON conditionals.
We could move missingInfoReason into politicalExposure and then it would be easy to use dependentRequired to enforce this requirement https://json-schema.org/understanding-json-schema/reference/conditionals#dependentRequired
politicalExposure
dependentRequired
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the schema we have
missingInfoReason
is required ifpoliticalExposureStatus
isunknown
missingInfoReason
is currently a field in the 'PEP Status' object anddetails
is an array of these objects.Because the missing info field is within an array this requirement can't be validated used JSON conditionals.
We could move
missingInfoReason
intopoliticalExposure
and then it would be easy to usedependentRequired
to enforce this requirement https://json-schema.org/understanding-json-schema/reference/conditionals#dependentRequiredThe text was updated successfully, but these errors were encountered: