PostHog · Schema

OrganizationDomain

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
domain string
is_verified boolean Determines whether a domain is verified or not.
verified_at string
verification_challenge string
jit_provisioning_enabled boolean
sso_enforcement string
has_saml boolean Returns whether SAML is configured for the instance. Does not validate the user has the required license (that check is performed in other places).
saml_entity_id string
saml_acs_url string
saml_x509_cert string
has_scim boolean Returns whether SCIM is configured and enabled for this domain.
scim_enabled boolean
scim_base_url string
scim_bearer_token string
View JSON Schema on GitHub

JSON Schema

posthog-organizationdomain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationDomain",
  "title": "OrganizationDomain",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "domain": {
      "type": "string",
      "maxLength": 128
    },
    "is_verified": {
      "type": "boolean",
      "description": "Determines whether a domain is verified or not.",
      "readOnly": true
    },
    "verified_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "verification_challenge": {
      "type": "string",
      "readOnly": true
    },
    "jit_provisioning_enabled": {
      "type": "boolean"
    },
    "sso_enforcement": {
      "type": "string",
      "maxLength": 28
    },
    "has_saml": {
      "type": "boolean",
      "description": "Returns whether SAML is configured for the instance. Does not validate the user has the required license (that check is performed in other places).",
      "readOnly": true
    },
    "saml_entity_id": {
      "type": "string",
      "nullable": true,
      "maxLength": 512
    },
    "saml_acs_url": {
      "type": "string",
      "nullable": true,
      "maxLength": 512
    },
    "saml_x509_cert": {
      "type": "string",
      "nullable": true
    },
    "has_scim": {
      "type": "boolean",
      "description": "Returns whether SCIM is configured and enabled for this domain.",
      "readOnly": true
    },
    "scim_enabled": {
      "type": "boolean"
    },
    "scim_base_url": {
      "type": "string",
      "nullable": true,
      "readOnly": true
    },
    "scim_bearer_token": {
      "type": "string",
      "nullable": true,
      "readOnly": true
    }
  },
  "required": [
    "domain",
    "has_saml",
    "has_scim",
    "id",
    "is_verified",
    "scim_base_url",
    "scim_bearer_token",
    "verification_challenge",
    "verified_at"
  ]
}