{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SandboxEnvironmentVariableUpdate", "title": "SandboxEnvironmentVariableUpdate", "properties": { "key": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Key", "description": "The name of the environment variable." }, "value": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Value", "description": "The value of the environment variable." }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Description", "description": "An optional description of the environment variable." } }, "additionalProperties": false, "type": "object" }