ApiSchemas
ImageState
One shape from the contract, as it appears on the wire.
Used by agents.create, agents.promote, agents.update, agents.upsert, agents.versions
JSON Schema
{
"type": "object",
"properties": {
"status": {
"$ref": "#/components/schemas/ImageStatus"
},
"ref": {
"type": "string",
"minLength": 1
},
"specHash": {
"type": "string",
"minLength": 1
},
"bakedAt": {
"type": "string"
},
"error": {
"type": "string"
}
},
"required": [
"status",
"specHash"
],
"additionalProperties": false
}