Auth0 · Schema

ImportEncryptionKeyResponseContent

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
View JSON Schema on GitHub

JSON Schema

auth0-importencryptionkeyresponsecontent-schema.json Raw ↑
{
  "$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"
    }
  }
}