{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://desirecore.net/schemas/config-center/providers-index.schema.json", "title": "ProvidersIndex", "description": "compute/providers/_index.json 与 compute/coding-plans/_index.json 共用。指定 Provider 加载顺序。", "type": "object", "required": ["order"], "properties": { "description": { "type": "string" }, "order": { "type": "array", "description": "Provider 加载顺序,元素为对应 JSON 文件的 basename(不含 .json)", "items": { "type": "string", "minLength": 1 }, "uniqueItems": true } }, "additionalProperties": false }