-
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
help wantedExtra attention is neededExtra attention is neededjsonschema-featureMissing fundamental support for a particular JSON schema featureMissing fundamental support for a particular JSON schema feature
Description
This is a completely unrealistic schema (I hope), but I'm just curious, do you think it is possible to handle this case and produce no diff?
let lhs = json! {{
"anyOf": [
{"properties": {"foo": {"type": "integer"}}},
{"properties": {"foo": {"type": "string"}}}
]
}};
let rhs = json! {{
"properties": {
"foo": {
"type": ["integer", "string"]
}
}
}};
untitaker
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededjsonschema-featureMissing fundamental support for a particular JSON schema featureMissing fundamental support for a particular JSON schema feature