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