PostHog · Schema

PatchedPersistedFolder

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
type object
protocol string
path string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedpersistedfolder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedPersistedFolder",
  "title": "PatchedPersistedFolder",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "type": {
      "$ref": "#/components/schemas/PersistedFolderTypeEnum"
    },
    "protocol": {
      "type": "string",
      "maxLength": 64
    },
    "path": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}