Support JSON Schema draft 2020-12 and use it by default (#294)
This commit is contained in:
parent
95475ad1b4
commit
3aa0e7fa3c
88 changed files with 369 additions and 210 deletions
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "OsStrings",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"owned": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
"$ref": "#/$defs/OsString"
|
||||
},
|
||||
"borrowed": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
"$ref": "#/$defs/OsString"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"owned",
|
||||
"borrowed"
|
||||
],
|
||||
"definitions": {
|
||||
"$defs": {
|
||||
"OsString": {
|
||||
"oneOf": [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue