{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurationDataPlaneGroupEnvironmentField", "title": "Configuration Data-Plane Group Environment Field", "description": "Environment variable name and value to set for a data-plane group.", "type": "object", "properties": { "name": { "description": "Name of the environment variable field to set for the data-plane group. Must be prefixed by KONG_.\n", "type": "string", "format": "^KONG_[a-zA-Z_]+[a-zA-Z0-9_]*", "example": "KONG_LOG_LEVEL", "maxLength": 120, "minLength": 6 }, "value": { "description": "Value assigned to the environment variable field for the data-plane group.", "type": "string", "example": "info", "maxLength": 120, "minLength": 1 } }, "required": [ "name", "value" ] }