mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
33 lines
763 B
JSON
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" }
|
|
}
|
|
}
|