mirror of
https://github.com/NorfairKing/autodocodec.git
synced 2024-12-04 05:22:20 +03:00
25 lines
625 B
JSON
25 lines
625 B
JSON
{
|
|
"$ref": "#/$defs/recursive",
|
|
"$defs": {
|
|
"recursive": {
|
|
"anyOf": [
|
|
{
|
|
"$comment": "Int",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"$comment": "Recurse",
|
|
"required": [
|
|
"recurse"
|
|
],
|
|
"type": "object",
|
|
"properties": {
|
|
"recurse": {
|
|
"$ref": "#/$defs/recursive"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |