Clerk · Schema

Clerk ActorToken

Clerk ActorToken object.

AuthenticationAuthorizationB2B SaaSCIAMIdentity ManagementMFAOAuthOpenID ConnectOrganizationsPasskeysSAMLSecuritySessionsSSOUser Management

Properties

Name Type Description
object string
id string
status string
user_id string
actor object
token string
url string
created_at integer Unix timestamp of creation.
updated_at integer Unix timestamp of last update.
View JSON Schema on GitHub

JSON Schema

clerk-actortoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/clerk-com/main/json-schema/clerk-actortoken-schema.json",
  "title": "Clerk ActorToken",
  "description": "Clerk ActorToken object.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "actor_token"
      ]
    },
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "accepted",
        "revoked"
      ]
    },
    "user_id": {
      "type": "string"
    },
    "actor": {
      "type": "object"
    },
    "token": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "created_at": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp of creation.\n"
    },
    "updated_at": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp of last update.\n"
    }
  },
  "required": [
    "object",
    "id",
    "user_id",
    "actor",
    "status",
    "created_at",
    "updated_at"
  ]
}