62 lines
No EOL
1.1 KiB
JSON
62 lines
No EOL
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "RecursiveOuter",
|
|
"type": "object",
|
|
"properties": {
|
|
"direct": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/RecursiveOuter"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"indirect": {
|
|
"type": [
|
|
"object",
|
|
"null"
|
|
],
|
|
"required": [
|
|
"recursive"
|
|
],
|
|
"properties": {
|
|
"recursive": {
|
|
"$ref": "#/definitions/RecursiveOuter"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"definitions": {
|
|
"RecursiveOuter": {
|
|
"type": "object",
|
|
"properties": {
|
|
"direct": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/RecursiveOuter"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"indirect": {
|
|
"type": [
|
|
"object",
|
|
"null"
|
|
],
|
|
"required": [
|
|
"recursive"
|
|
],
|
|
"properties": {
|
|
"recursive": {
|
|
"$ref": "#/definitions/RecursiveOuter"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |