NamespaceList

List of platform namespaces

Cloud PlatformEnterpriseFinancial ServicesInsurancePlatform EngineeringKubernetes

Properties

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

JSON Schema

platform-services-namespace-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-namespace-list-schema.json",
  "title": "NamespaceList",
  "description": "List of platform namespaces",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of namespaces",
      "example": 12
    },
    "items": {
      "type": "array",
      "description": "List of namespace records",
      "items": {
        "$ref": "#/components/schemas/Namespace"
      }
    }
  }
}