Auth0 · Schema

CreatePublicKeyDeviceCredentialRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
device_name string Name for this device easily recognized by owner.
type object
value string Base64 encoded string containing the credential.
device_id string Unique identifier for the device. Recommend using Android_ID on Android and client_id string client_id of the client (application) this credential is for.
View JSON Schema on GitHub

JSON Schema

auth0-createpublickeydevicecredentialrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePublicKeyDeviceCredentialRequestContent",
  "title": "CreatePublicKeyDeviceCredentialRequestContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "device_name",
    "type",
    "value",
    "device_id"
  ],
  "properties": {
    "device_name": {
      "type": "string",
      "description": "Name for this device easily recognized by owner.",
      "minLength": 1
    },
    "type": {
      "$ref": "#/components/schemas/DeviceCredentialPublicKeyTypeEnum"
    },
    "value": {
      "type": "string",
      "description": "Base64 encoded string containing the credential.",
      "minLength": 1
    },
    "device_id": {
      "type": "string",
      "description": "Unique identifier for the device. Recommend using <a href=\"http://developer.android.com/reference/android/provider/Settings.Secure.html#ANDROID_ID\">Android_ID</a> on Android and <a href=\"https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/index.html#//apple_ref/occ/instp/UIDevice/identifierForVendor\">identifierForVendor</a>.",
      "maxLength": 36,
      "pattern": "^[-A-Fa-f0-9]+$"
    },
    "client_id": {
      "type": "string",
      "description": "client_id of the client (application) this credential is for.",
      "format": "client-id"
    }
  }
}