ServicePortMap

The set of named network ports published by the service. Port names must be valid RFC1123 Label Names.

Application DependenciesCloud-NativeIntegrationResearchSpecificationsWorkload Specifications
View JSON Schema on GitHub

JSON Schema

application-research-serviceportmap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServicePortMap",
  "title": "ServicePortMap",
  "type": "object",
  "description": "The set of named network ports published by the service. Port names must be valid RFC1123 Label Names.",
  "propertyNames": {
    "minLength": 2,
    "maxLength": 63,
    "pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
  },
  "additionalProperties": {
    "$ref": "#/components/schemas/ServicePort"
  }
}