-
-
Notifications
You must be signed in to change notification settings - Fork 75
Closed
Labels
Description
The migration changes definitions to $def at the top, but it does not change the references.
draft-04
{
"type": "array",
"items": { "$ref": "#/definitions/positiveInteger" },
"definitions": {
"positiveInteger": {
"type": "integer",
"exclusiveMinimum": 0
}
}
}migration to draft-2019-09
{
"type": "array",
"items": { "$ref": "#/definitions/positiveInteger" }, #wrong
"$defs": {
"positiveInteger": {
"type": "integer",
"exclusiveMinimum": 0
}
}
}Reactions are currently unavailable