Regenerate test schemas
This commit is contained in:
parent
4dde683358
commit
f5d2142714
62 changed files with 1135 additions and 1124 deletions
|
|
@ -2,26 +2,23 @@
|
|||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "OsStrings",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"borrowed": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
},
|
||||
"owned": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"borrowed",
|
||||
"owned"
|
||||
],
|
||||
"properties": {
|
||||
"owned": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
},
|
||||
"borrowed": {
|
||||
"$ref": "#/definitions/OsString"
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"OsString": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"required": [
|
||||
"Unix"
|
||||
],
|
||||
"properties": {
|
||||
"Unix": {
|
||||
"type": "array",
|
||||
|
|
@ -31,13 +28,13 @@
|
|||
"minimum": 0.0
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Unix"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"required": [
|
||||
"Windows"
|
||||
],
|
||||
"properties": {
|
||||
"Windows": {
|
||||
"type": "array",
|
||||
|
|
@ -47,7 +44,10 @@
|
|||
"minimum": 0.0
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Windows"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue