token-challenge.json 504 B

123456789101112131415161718
  1. {
  2. "type": "object",
  3. "description": "Token object",
  4. "required": ["requires_2fa", "challenge_token"],
  5. "additionalProperties": false,
  6. "properties": {
  7. "requires_2fa": {
  8. "description": "Whether this token request requires two-factor authentication",
  9. "example": true,
  10. "type": "boolean"
  11. },
  12. "challenge_token": {
  13. "description": "Challenge Token used in subsequent 2FA verification",
  14. "example": "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCJ9.ey...xaHKYr3Kk6MvkUjcC4",
  15. "type": "string"
  16. }
  17. }
  18. }