{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretValueProperties", "title": "SecretValueProperties", "type": "object", "properties": { "encoding": { "type": "string", "default": "raw", "enum": [ "raw", "base64" ] }, "value": { "type": "string", "format": "password" }, "valueFrom": { "$ref": "#/components/schemas/ValueFromProperties" } } }