Files
varsity/test/schemas/category-schema.json
2025-10-01 20:01:42 +00:00

22 lines
338 B
JSON

{
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"parent": {
"$ref": "./category-schema.json"
},
"children": {
"type": "array",
"items": {
"$ref": "./category-schema.json"
}
}
}
}