{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "KeyAttributes", "type": "object", "description": "The attributes of a key.", "properties": { "enabled": { "type": "boolean", "description": "Whether the key is enabled." }, "nbf": { "type": "integer", "description": "Not before date in UTC (Unix time)." }, "exp": { "type": "integer", "description": "Expiry date in UTC (Unix time)." }, "created": { "type": "integer", "description": "Creation time in UTC (Unix time)." }, "updated": { "type": "integer", "description": "Last updated time in UTC (Unix time)." }, "recoveryLevel": { "type": "string", "description": "The recovery level currently in effect." }, "recoverableDays": { "type": "integer", "description": "The soft-delete data retention days." }, "exportable": { "type": "boolean", "description": "Whether the private key can be exported." }, "hsmPlatform": { "type": "string", "description": "The underlying HSM platform." } } }