PostHog · Schema

RevenueCurrencyPropertyConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
property string
static object
View JSON Schema on GitHub

JSON Schema

posthog-revenuecurrencypropertyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RevenueCurrencyPropertyConfig",
  "title": "RevenueCurrencyPropertyConfig",
  "additionalProperties": false,
  "properties": {
    "property": {
      "default": null,
      "title": "Property",
      "type": "string",
      "nullable": true
    },
    "static": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/CurrencyCode"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}