{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportEncryptionKeyResponseContent", "title": "ImportEncryptionKeyResponseContent", "type": "object", "description": "Encryption key", "additionalProperties": false, "required": [ "kid", "type", "state", "created_at", "updated_at" ], "properties": { "kid": { "type": "string", "description": "Key ID" }, "type": { "$ref": "#/components/schemas/EncryptionKeyType" }, "state": { "$ref": "#/components/schemas/EncryptionKeyState" }, "created_at": { "type": "string", "description": "Key creation timestamp", "format": "date-time" }, "updated_at": { "type": "string", "description": "Key update timestamp", "format": "date-time" }, "parent_kid": { "type": [ "string", "null" ], "description": "ID of parent wrapping key" }, "public_key": { "type": [ "string", "null" ], "description": "Public key in PEM format" } } }