PostHog · Schema

OrganizationOAuthApplication

Serializer for organization-scoped OAuth applications (read-only).

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
client_id string
redirect_uris_list array
is_verified boolean True if this application has been verified by PostHog
created string
updated string
View JSON Schema on GitHub

JSON Schema

posthog-organizationoauthapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationOAuthApplication",
  "title": "OrganizationOAuthApplication",
  "type": "object",
  "description": "Serializer for organization-scoped OAuth applications (read-only).",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "client_id": {
      "type": "string",
      "maxLength": 100
    },
    "redirect_uris_list": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    },
    "is_verified": {
      "type": "boolean",
      "description": "True if this application has been verified by PostHog"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "required": [
    "created",
    "id",
    "redirect_uris_list",
    "updated"
  ]
}