Stytch · Schema

api_session_v1_OIDCSSOFactor

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
id string The unique ID of an SSO Registration.
provider_id string Globally unique UUID that identifies a specific OIDC Connection.
external_id string The ID of the member given by the identity provider.
View JSON Schema on GitHub

JSON Schema

stytch-api-session-v1-oidcssofactor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_session_v1_OIDCSSOFactor",
  "title": "api_session_v1_OIDCSSOFactor",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique ID of an SSO Registration."
    },
    "provider_id": {
      "type": "string",
      "description": "Globally unique UUID that identifies a specific OIDC Connection."
    },
    "external_id": {
      "type": "string",
      "description": "The ID of the member given by the identity provider."
    }
  },
  "required": [
    "id",
    "provider_id",
    "external_id"
  ]
}