SuperTokens · Schema

TenantRequest

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
tenantId string
emailPasswordEnabled boolean
passwordlessEnabled boolean
thirdPartyEnabled boolean
coreConfig object
View JSON Schema on GitHub

JSON Schema

supertokens-tenantrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantRequest",
  "title": "TenantRequest",
  "type": "object",
  "properties": {
    "tenantId": {
      "type": "string"
    },
    "emailPasswordEnabled": {
      "type": "boolean"
    },
    "passwordlessEnabled": {
      "type": "boolean"
    },
    "thirdPartyEnabled": {
      "type": "boolean"
    },
    "coreConfig": {
      "type": "object"
    }
  }
}