add initial protocol docs and schemas
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user