{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretReference", "title": "SecretReference", "type": "object", "description": "Reference to a secret in a secret store", "properties": { "source": { "type": "string", "description": "The ID of an Applications.Core/SecretStore resource" }, "key": { "type": "string", "description": "The key for the secret in the secret store" } }, "required": [ "source", "key" ] }