PostHog · Schema

SharingConfiguration

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
created_at string
enabled boolean
access_token string
settings object
password_required boolean
share_passwords array
View JSON Schema on GitHub

JSON Schema

posthog-sharingconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharingConfiguration",
  "title": "SharingConfiguration",
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "enabled": {
      "type": "boolean"
    },
    "access_token": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "settings": {
      "nullable": true
    },
    "password_required": {
      "type": "boolean"
    },
    "share_passwords": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SharePassword"
      },
      "readOnly": true
    }
  },
  "required": [
    "access_token",
    "created_at",
    "share_passwords"
  ]
}