-
Notifications
You must be signed in to change notification settings - Fork 44
check_isa_schemas updated to new json validator. #591 #592
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
Conversation
proccaserra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
failure of tests is down to this schema which mandates "format" to be email.
"email" : { "type" : "string", "format" : "email"},
trying: "email" : { "type" : ["string", null], "format" : "email"}, does not fix it.
quick fix is relaxing requirement: "email" : { "type" : "string"}, but this is cheeky
alternative: fix test data so email is always present to json schema validation passes
worth having a chat with MetaboLights (@oyerulten) & users
…ot security issues
Deprecation warnings prs
proccaserra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me and all points addressed following our discussion. thx @knirirr
Dealing with some warnings related to JSON validation.