Kong · Schema
Image Status
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| error | string | An error related to the image invalid status. |
| status | string | The status of the image. |
| api_package_id | string | The API identifier which the image belongs to. |
| image_type | object | |
| created_at | object | |
| updated_at | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/APIPackageImage",
"title": "Image Status",
"type": "object",
"properties": {
"error": {
"description": "An error related to the image invalid status.",
"type": "string",
"example": null,
"nullable": true,
"readOnly": true
},
"status": {
"description": "The status of the image.",
"type": "string",
"example": "valid",
"enum": [
"uploading",
"validating",
"valid",
"invalid"
],
"readOnly": true,
"x-speakeasy-unknown-values": "allow"
},
"api_package_id": {
"description": "The API identifier which the image belongs to.",
"type": "string",
"format": "uuid",
"example": "123e4567-e89b-12d3-a456-426614174000",
"readOnly": true
},
"image_type": {
"allOf": [
{
"$ref": "#/components/schemas/ImageTypeSchema"
},
{
"readOnly": true
}
]
},
"created_at": {
"$ref": "#/components/schemas/CreatedAt"
},
"updated_at": {
"$ref": "#/components/schemas/UpdatedAt"
}
},
"additionalProperties": false,
"required": [
"status",
"error",
"api_package_id",
"image_type",
"created_at",
"updated_at"
]
}