{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretItem", "title": "SecretItem", "type": "object", "description": "The secret item containing secret metadata.", "properties": { "id": { "type": "string", "description": "Secret identifier.", "example": "abc123" }, "attributes": { "$ref": "#/components/schemas/SecretAttributes" }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, "example": "example_value" }, "contentType": { "type": "string", "example": "example_value" }, "managed": { "type": "boolean", "readOnly": true, "example": true } } }