Clerk ActorToken object.
{ "$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" ] }