state.json
Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"state": {
"enum": ["none", "processing", "ready", "error"]
},
"description": {
"type": "string"
}
},
"required": [
"state"
]
}