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

26 lines
713 B
JSON

{
"title": "AI Ball Call Script Schema",
"type": "object",
"required": ["content_id", "title", "duration_ms", "actions"],
"properties": {
"content_id": { "type": "string" },
"title": { "type": "string" },
"duration_ms": { "type": "integer" },
"actions": {
"type": "array",
"items": {
"type": "object",
"required": ["time_ms", "type", "value"],
"properties": {
"time_ms": { "type": "integer" },
"type": { "type": "string" },
"value": { "type": "string" },
"duration_ms": { "type": "integer" },
"intensity": { "type": "number" },
"silent_alt": { "type": "string" }
}
}
}
}
}