Files
AFFiNE-Mirror/packages/frontend/routes/schema.json
2025-04-23 09:49:11 +00:00

33 lines
763 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "AFFiNE Routes Schema",
"definitions": {
"route": {
"type": "string",
"description": "route path"
},
"children": {
"type": "object",
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"required": ["route", "children"],
"properties": {
"route": { "$ref": "#/definitions/route" },
"children": { "$ref": "#/definitions/children" }
}
}
]
}
}
},
"properties": {
"route": { "$ref": "#/definitions/route" },
"children": { "$ref": "#/definitions/children" }
}
}