PostHog · Schema

_LogsServiceActiveRule

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
rule_id string
rule_name string
summary_string string
View JSON Schema on GitHub

JSON Schema

posthog-logsserviceactiverule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsServiceActiveRule",
  "title": "_LogsServiceActiveRule",
  "type": "object",
  "properties": {
    "rule_id": {
      "type": "string",
      "format": "uuid"
    },
    "rule_name": {
      "type": "string"
    },
    "summary_string": {
      "type": "string"
    }
  },
  "required": [
    "rule_id",
    "rule_name",
    "summary_string"
  ]
}