ContainerMap

The set of named containers in the Workload. Container names must be valid RFC1123 Label Names.

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications
View JSON Schema on GitHub

JSON Schema

application-research-containermap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerMap",
  "title": "ContainerMap",
  "type": "object",
  "description": "The set of named containers in the Workload. Container names must be valid RFC1123 Label Names.",
  "minProperties": 1,
  "propertyNames": {
    "minLength": 2,
    "maxLength": 63,
    "pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
  },
  "additionalProperties": {
    "$ref": "#/components/schemas/Container"
  }
}