muse-glimmer-json-api / response_schema.json
yogeshjog's picture
Upload response_schema.json with huggingface_hub
1c04470 verified
Raw
History Blame Contribute Delete
725 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Muse JSON API Response",
"type": "object",
"additionalProperties": false,
"required": [
"status",
"type",
"data",
"message",
"error",
"meta"
],
"properties": {
"status": {
"type": "integer",
"minimum": 100,
"maximum": 599
},
"type": {
"enum": [
"code",
"error",
"media",
"multimodal",
"response",
"tool_call",
"vision"
]
},
"data": {},
"message": {
"type": "string"
},
"error": {
"type": [
"object",
"null"
]
},
"meta": {
"type": "object"
}
}
}