PostHog · Schema

BulkUpdateTagsResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
updated array
skipped array
View JSON Schema on GitHub

JSON Schema

posthog-bulkupdatetagsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkUpdateTagsResponse",
  "title": "BulkUpdateTagsResponse",
  "type": "object",
  "properties": {
    "updated": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BulkUpdateTagsItem"
      }
    },
    "skipped": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BulkUpdateTagsError"
      }
    }
  },
  "required": [
    "skipped",
    "updated"
  ]
}