PostHog · Schema

InterestingNote

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
text string
line_refs string
View JSON Schema on GitHub

JSON Schema

posthog-interestingnote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterestingNote",
  "title": "InterestingNote",
  "type": "object",
  "properties": {
    "text": {
      "type": "string"
    },
    "line_refs": {
      "type": "string"
    }
  },
  "required": [
    "line_refs",
    "text"
  ]
}