Payload schema
envRecord<string, string | null>
The entries set in THIS change (key → getSecret placeholder / literal; null unsets the key) — not the full resulting map.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"env": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "The entries set in THIS change (key → getSecret placeholder / literal; null unsets the key) — not the full resulting map."
}
},
"required": [
"env"
]
}