Stytch · Schema

api_organization_v1_SSORegistration

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
connection_id string Globally unique UUID that identifies a specific SSO `connection_id` for a Member.
external_id string The ID of the member given by the identity provider.
registration_id string The unique ID of an SSO Registration.
sso_attributes object An object for storing SSO attributes brought over from the identity provider.
View JSON Schema on GitHub

JSON Schema

stytch-api-organization-v1-ssoregistration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_organization_v1_SSORegistration",
  "title": "api_organization_v1_SSORegistration",
  "type": "object",
  "properties": {
    "connection_id": {
      "type": "string",
      "description": "Globally unique UUID that identifies a specific SSO `connection_id` for a Member."
    },
    "external_id": {
      "type": "string",
      "description": "The ID of the member given by the identity provider."
    },
    "registration_id": {
      "type": "string",
      "description": "The unique ID of an SSO Registration."
    },
    "sso_attributes": {
      "type": "object",
      "additionalProperties": true,
      "description": "An object for storing SSO attributes brought over from the identity provider."
    }
  },
  "required": [
    "connection_id",
    "external_id",
    "registration_id"
  ]
}