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