Clerk SignInToken object.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/clerk-com/main/json-schema/clerk-signintoken-schema.json", "title": "Clerk SignInToken", "description": "Clerk SignInToken object.", "type": "object", "additionalProperties": false, "properties": { "object": { "type": "string", "enum": [ "sign_in_token" ] }, "id": { "type": "string" }, "status": { "type": "string", "enum": [ "pending", "accepted", "revoked" ] }, "user_id": { "type": "string" }, "token": { "type": "string" }, "url": { "type": "string", "nullable": true }, "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", "status", "created_at", "updated_at" ] }