ApiSchemas
ImageStatusReport
One shape from the contract, as it appears on the wire.
Used by agents.imageStatus, agents.rebake
JSON Schema
{
"type": "object",
"properties": {
"agentId": {
"type": "string",
"minLength": 1
},
"version": {
"type": "integer",
"minimum": 1
},
"status": {
"$ref": "#/components/schemas/ImageStatus"
},
"specHash": {
"type": "string",
"minLength": 1
},
"ref": {
"type": "string",
"minLength": 1
},
"bakedAt": {
"type": "string"
},
"error": {
"type": "string"
},
"attempts": {
"type": "integer",
"minimum": 0
}
},
"required": [
"agentId",
"version",
"status",
"specHash",
"attempts"
],
"additionalProperties": false
}