PostHog · Schema

PatchedExternalDataSourceBulkUpdateSchemas

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
schemas array Schema updates to apply in a single batch.
View JSON Schema on GitHub

JSON Schema

posthog-patchedexternaldatasourcebulkupdateschemas-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedExternalDataSourceBulkUpdateSchemas",
  "title": "PatchedExternalDataSourceBulkUpdateSchemas",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExternalDataSourceBulkUpdateSchema"
      },
      "description": "Schema updates to apply in a single batch."
    }
  }
}