/
githubmirror
/
LeetCodeAnimation
Обзор
Документация
Войти
/
githubmirror
/
LeetCodeAnimation
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tools/schema/manifest.schema.json
67 строк
1 KB
吴师兄
docs: streamline repository root layout
10 июн 2026, 11:06
10 июн 2026, 11:06
e3001f4
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LeetCodeAnimation Manifest", "description": "Synchronized index for LeetCode animation pages and repository assets.", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "leetcodeId", "sourcePid", "slug", "titleZh", "difficulty", "categoryZh", "topicsZh", "status", "repoPath", "gifPath", "siteUrl" ], "properties": { "leetcodeId": { "type": "integer", "minimum": 1 }, "sourcePid": { "type": "string", "pattern": "^lc[0-9]+$" }, "slug": { "type": "string", "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$" }, "titleZh": { "type": "string", "minLength": 1 }, "difficulty": { "type": "string", "enum": ["easy", "medium", "hard"] }, "categoryZh": { "type": "string", "minLength": 1 }, "topicsZh": { "type": "array", "items": { "type": "string", "minLength": 1 }, "minItems": 1 }, "status": { "type": "string", "enum": ["site-animation", "repo-only", "planned"] }, "repoPath": { "type": ["string", "null"] }, "gifPath": { "type": ["string", "null"] }, "siteUrl": { "type": "string" } } } }