root_index.schema.json 770 B

1234567891011121314151617181920
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "required": ["schools"],
  5. "properties": {
  6. "schools": {
  7. "type": "array",
  8. "items": {
  9. "type": "object",
  10. "required": ["id", "name", "initial", "resource_folder"],
  11. "properties": {
  12. "id": { "type": "string", "description": "唯一标识,学校保持全大写,建议使用唯一域名" },
  13. "name": { "type": "string", "description": "学校或工具的中文全称" },
  14. "initial": { "type": "string", "pattern": "^[A-Z]$", "description": "名称首字母(大写),用于排序" },
  15. "resource_folder": { "type": "string", "description": "资源文件夹名称,建议与id一致" }
  16. }
  17. }
  18. }
  19. }
  20. }