{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SecretBundle", "type": "object", "description": "A secret consisting of a value, id and its attributes.", "properties": { "value": { "type": "string", "description": "The secret value." }, "id": { "type": "string", "description": "The secret id." }, "contentType": { "type": "string", "description": "The content type of the secret." }, "tags": { "type": "object", "description": "Application specific metadata in the form of key-value pairs." }, "kid": { "type": "string", "description": "If this is a secret backing a KV certificate, then this field specifies the corresponding key backing the KV certificate." }, "managed": { "type": "boolean", "description": "True if the secret's lifetime is managed by key vault. If this is a secret backing a certificate, then managed will be true." } } }