PostHog · Schema

QuarantineInput

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
identifier string
reason string
expires_at string
View JSON Schema on GitHub

JSON Schema

posthog-quarantineinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QuarantineInput",
  "title": "QuarantineInput",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "maxLength": 512
    },
    "reason": {
      "type": "string",
      "maxLength": 255
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  },
  "required": [
    "identifier",
    "reason"
  ]
}