25 lines
537 B
JSON
25 lines
537 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"id",
|
||
|
"name",
|
||
|
"started",
|
||
|
"build_path",
|
||
|
"playable",
|
||
|
"created_at",
|
||
|
"updated_at",
|
||
|
"status"
|
||
|
],
|
||
|
"properties": {
|
||
|
"id": { "type": "integer" },
|
||
|
"name": { "type": "string" },
|
||
|
"started": { "type": "boolean" } ,
|
||
|
"build_path": { "type": "string" },
|
||
|
"playable": { "type": "boolean" },
|
||
|
"created_at": { "type": "string" },
|
||
|
"updated_at": { "type": "string" },
|
||
|
"status": { "$ref": "ci_detailed_status.json" }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|