Files
protocol-docs/schemas/resource_pack_schema.json
T
2026-06-18 16:55:47 +08:00

22 lines
508 B
JSON

{
"title": "AI Ball Resource Pack Schema",
"type": "object",
"required": ["pack_id", "version", "resources"],
"properties": {
"pack_id": { "type": "string" },
"version": { "type": "string" },
"resources": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "type", "path"],
"properties": {
"id": { "type": "string" },
"type": { "type": "string" },
"path": { "type": "string" }
}
}
}
}
}