UNPKG

qweb-client

Version:

qweb client.

37 lines 943 B
{ "info": { "title": "机构及子机构列表(按机构层级分)", "author": "Leon", "description": "按机构层级列出当前机构及子机构,仅机构账号可用", "auth": true }, "request": {}, "response": { "type": "array", "description": "二维数组,第一维数组的下标代表级别,对应的元素为该级别的机构列表。", "item": { "type": "array", "description": "机构列表", "items": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Za-z0-9]{32}$", "description": "机构ID" }, "name": { "type": "string", "pattern": "^.{1,20}$", "description": "机构名称" } }, "additionalProperties": false, "required": [ "id", "name" ] } } } }