adapters.schema.json 1.2 KB

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "required": ["adapters"],
  5. "properties": {
  6. "adapters": {
  7. "type": "array",
  8. "items": {
  9. "type": "object",
  10. "required": ["adapter_id", "adapter_name", "category", "asset_js_path", "maintainer", "description"],
  11. "properties": {
  12. "adapter_id": { "type": "string", "description": "唯一标识,建议格式:学校ID_序号" },
  13. "adapter_name": { "type": "string", "description": "适配器中文名称" },
  14. "category": {
  15. "type": "string",
  16. "enum": ["BACHELOR_AND_ASSOCIATE", "POSTGRADUATE", "GENERAL_TOOL"],
  17. "description": "分类:本科/专科、研究生、通用工具"
  18. },
  19. "asset_js_path": { "type": "string", "description": "适配脚本相对路径(如 school.js)" },
  20. "import_url": { "type": "string", "description": "系统登录URL(教务系统必填)" },
  21. "maintainer": { "type": "string", "description": "维护者 GitHub 用户名或姓名" },
  22. "description": { "type": "string", "description": "简要说明" }
  23. }
  24. }
  25. }
  26. }
  27. }