22 lines
508 B
JSON
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" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|