Auth0 · Schema
EncryptionKey
Encryption key
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| kid | string | Key ID |
| type | object | |
| state | object | |
| created_at | string | Key creation timestamp |
| updated_at | string | Key update timestamp |
| parent_kid | stringnull | ID of parent wrapping key |
| public_key | stringnull | Public key in PEM format |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EncryptionKey",
"title": "EncryptionKey",
"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"
}
}
}