Add test case
This commit is contained in:
Родитель
5a152c303c
Коммит
50aa32b7d8
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"one": "123",
|
||||
"optional": "345",
|
||||
"nullable": "456",
|
||||
"arrOne": [
|
||||
"123",
|
||||
"234"
|
||||
],
|
||||
"arrNullable": [
|
||||
"123",
|
||||
null,
|
||||
"234"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"one": "123",
|
||||
"nullable": null
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"one": {
|
||||
"type": "string",
|
||||
"format": "integer"
|
||||
},
|
||||
"optional": {
|
||||
"$ref": "#/properties/one"
|
||||
},
|
||||
"nullable": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/one"
|
||||
}
|
||||
]
|
||||
},
|
||||
"arrOne": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/properties/one"
|
||||
}
|
||||
},
|
||||
"arrNullable": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/properties/nullable"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"one",
|
||||
"nullable"
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче