WorkOS · Schema

AuthenticationChallengeVerifyResponse

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
challenge object The authentication challenge object.
valid boolean Whether the code was valid.
View JSON Schema on GitHub

JSON Schema

workos-authenticationchallengeverifyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationChallengeVerifyResponse",
  "title": "AuthenticationChallengeVerifyResponse",
  "type": "object",
  "properties": {
    "challenge": {
      "$ref": "#/components/schemas/AuthenticationChallenge",
      "description": "The authentication challenge object."
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the code was valid.",
      "example": true
    }
  },
  "required": [
    "challenge",
    "valid"
  ]
}