{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SecretItem", "type": "object", "description": "The secret item containing secret metadata.", "properties": { "id": { "type": "string", "description": "Secret identifier." }, "tags": { "type": "object", "description": "Application specific metadata in the form of key-value pairs." }, "contentType": { "type": "string", "description": "Type of the secret value such as a password." }, "managed": { "type": "boolean", "description": "True if the secret's lifetime is managed by key vault." } } }