Allianz Future Cloud Platform · Schema
Deployment
A service deployment record on the platform
Cloud PlatformEnterpriseFinancial ServicesInsurancePlatform EngineeringKubernetes
Properties
| Name | Type | Description |
|---|---|---|
| deployment_id | string | Unique identifier for the deployment |
| service_id | string | Service this deployment belongs to |
| version | string | Version being deployed |
| image | string | Container image with tag |
| status | string | Current deployment status |
| strategy | string | Deployment strategy used |
| deployed_at | string | Timestamp when the deployment completed |
| deployed_by | string | Actor that triggered the deployment |
| initiated_at | string | Timestamp when the deployment was initiated |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/allianz-future-cloud-platform/refs/heads/main/json-schema/platform-services-deployment-schema.json",
"title": "Deployment",
"description": "A service deployment record on the platform",
"type": "object",
"properties": {
"deployment_id": {
"type": "string",
"description": "Unique identifier for the deployment",
"example": "dep-500789"
},
"service_id": {
"type": "string",
"description": "Service this deployment belongs to",
"example": "svc-500123"
},
"version": {
"type": "string",
"description": "Version being deployed",
"example": "2.5.1"
},
"image": {
"type": "string",
"description": "Container image with tag",
"example": "allianz/policy-service:2.5.1"
},
"status": {
"type": "string",
"description": "Current deployment status",
"enum": [
"in_progress",
"succeeded",
"failed",
"rolled_back"
],
"example": "succeeded"
},
"strategy": {
"type": "string",
"description": "Deployment strategy used",
"enum": [
"rolling",
"blue_green",
"canary"
],
"example": "rolling"
},
"deployed_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the deployment completed",
"example": "2026-04-15T14:30:00Z"
},
"deployed_by": {
"type": "string",
"description": "Actor that triggered the deployment",
"example": "argo-cd"
},
"initiated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the deployment was initiated",
"example": "2026-04-19T10:30:00Z"
}
}
}