PostHog · Schema

PendingInvite

Shape of each item in UserSerializer.pending_invites.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
target_email string
organization_id string
organization_name string
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-pendinginvite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PendingInvite",
  "title": "PendingInvite",
  "type": "object",
  "description": "Shape of each item in UserSerializer.pending_invites.",
  "properties": {
    "id": {
      "type": "string"
    },
    "target_email": {
      "type": "string",
      "format": "email"
    },
    "organization_id": {
      "type": "string"
    },
    "organization_name": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "created_at",
    "id",
    "organization_id",
    "organization_name",
    "target_email"
  ]
}