PropelAuth · Schema
PropelAuth Organization
Schema for a PropelAuth organization (tenant) as returned by the backend Org API.
AuthenticationIdentityB2BMulti-TenancyAuthorizationRBACSSOSCIMMCPAPI Keys
Properties
| Name | Type | Description |
|---|---|---|
| org_id | string | |
| name | string | |
| url_safe_org_name | string | |
| is_saml_configured | boolean | |
| is_saml_in_test_mode | boolean | |
| max_users | integernull | |
| metadata | object | |
| domain | stringnull | |
| domain_autojoin | boolean | |
| domain_restrict | boolean | |
| legacy_org_id | stringnull | |
| custom_role_mapping_name | stringnull | |
| can_setup_saml | boolean | |
| created_at | integer | Unix seconds. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/propelauth/propelauth-org-schema.json",
"title": "PropelAuth Organization",
"description": "Schema for a PropelAuth organization (tenant) as returned by the backend Org API.",
"type": "object",
"required": ["org_id", "name"],
"properties": {
"org_id": { "type": "string", "format": "uuid" },
"name": { "type": "string" },
"url_safe_org_name": { "type": "string" },
"is_saml_configured": { "type": "boolean" },
"is_saml_in_test_mode": { "type": "boolean" },
"max_users": { "type": ["integer", "null"] },
"metadata": { "type": "object", "additionalProperties": true },
"domain": { "type": ["string", "null"] },
"domain_autojoin": { "type": "boolean" },
"domain_restrict": { "type": "boolean" },
"legacy_org_id": { "type": ["string", "null"] },
"custom_role_mapping_name": { "type": ["string", "null"] },
"can_setup_saml": { "type": "boolean" },
"created_at": { "type": "integer", "description": "Unix seconds." }
}
}