SuperTokens · Schema

TenantResponse

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
status string
createdNew boolean
tenant object
View JSON Schema on GitHub

JSON Schema

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