{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"value": {"type": "integer"},
"metadata": {"type": "string"},
"children": {
"type": "array",
"items": {"$ref": "#"}
}
},
"required": ["value"],
"additionalProperties": false
}