DeploymentList

Paginated list of deployment records

Cloud PlatformEnterpriseFinancial ServicesInsurancePlatform EngineeringKubernetes

Properties

Name Type Description
total integer Total number of deployments
items array List of deployment records
View JSON Schema on GitHub

JSON Schema

platform-services-deployment-list-schema.json Raw ↑
{
  "$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-list-schema.json",
  "title": "DeploymentList",
  "description": "Paginated list of deployment records",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of deployments",
      "example": 45
    },
    "items": {
      "type": "array",
      "description": "List of deployment records",
      "items": {
        "$ref": "#/components/schemas/Deployment"
      }
    }
  }
}