PostHog · Schema

MinimalHedgehogConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
accessories array
color object
skin object
use_as_profile boolean
View JSON Schema on GitHub

JSON Schema

posthog-minimalhedgehogconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MinimalHedgehogConfig",
  "title": "MinimalHedgehogConfig",
  "additionalProperties": false,
  "properties": {
    "accessories": {
      "default": null,
      "title": "Accessories",
      "items": {
        "$ref": "#/components/schemas/HedgehogActorAccessoryOption"
      },
      "type": "array",
      "nullable": true
    },
    "color": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/HedgehogActorColorOption"
        }
      ],
      "nullable": true
    },
    "skin": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/HedgehogActorSkinOption"
        }
      ],
      "nullable": true
    },
    "use_as_profile": {
      "title": "Use As Profile",
      "type": "boolean"
    }
  },
  "required": [
    "use_as_profile"
  ],
  "type": "object"
}