{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EnvironmentInput", "title": "EnvironmentInput", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Environment name" }, "variables": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Key-value pairs of environment variables" } } }