PostHog · Schema

Mappings

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
name string
inputs_schema array
inputs object
filters object
View JSON Schema on GitHub

JSON Schema

posthog-mappings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Mappings",
  "title": "Mappings",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "inputs_schema": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InputsSchemaItem"
      }
    },
    "inputs": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/InputsItem"
      }
    },
    "filters": {
      "$ref": "#/components/schemas/HogFunctionFilters"
    }
  }
}