PostHog · Schema

OrganizationBasic

Serializer for `Organization` model with minimal attributes to speeed up loading and transfer times. Also used for nested serializers.

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
slug string
logo_media_id string
membership_level object
members_can_use_personal_api_keys boolean
is_active boolean Set this to 'No' to temporarily disable an organization.
is_not_active_reason string (optional) reason for why the organization has been de-activated. This will be displayed to users on the web app.
is_pending_deletion boolean Set to True when org deletion has been initiated. Blocks all UI access until the async task completes.
View JSON Schema on GitHub

JSON Schema

posthog-organizationbasic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationBasic",
  "title": "OrganizationBasic",
  "type": "object",
  "description": "Serializer for `Organization` model with minimal attributes to speeed up loading and transfer times.\nAlso used for nested serializers.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 64
    },
    "slug": {
      "type": "string",
      "maxLength": 48,
      "pattern": "^[-a-zA-Z0-9_]+$"
    },
    "logo_media_id": {
      "type": "string",
      "format": "uuid",
      "nullable": true,
      "readOnly": true
    },
    "membership_level": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EffectiveMembershipLevelEnum"
        }
      ],
      "nullable": true,
      "readOnly": true
    },
    "members_can_use_personal_api_keys": {
      "type": "boolean"
    },
    "is_active": {
      "type": "boolean",
      "nullable": true,
      "title": "Active",
      "description": "Set this to 'No' to temporarily disable an organization."
    },
    "is_not_active_reason": {
      "type": "string",
      "nullable": true,
      "title": "De-activated reason",
      "description": "(optional) reason for why the organization has been de-activated. This will be displayed to users on the web app.",
      "maxLength": 200
    },
    "is_pending_deletion": {
      "type": "boolean",
      "nullable": true,
      "description": "Set to True when org deletion has been initiated. Blocks all UI access until the async task completes."
    }
  },
  "required": [
    "id",
    "logo_media_id",
    "membership_level",
    "name",
    "slug"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/posthog-organizationbasic"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.