PostHog · Schema

ApproveRunRequestInput

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
snapshots array
approve_all boolean
commit_to_github boolean
View JSON Schema on GitHub

JSON Schema

posthog-approverunrequestinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApproveRunRequestInput",
  "title": "ApproveRunRequestInput",
  "type": "object",
  "properties": {
    "snapshots": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApproveSnapshotInput"
      }
    },
    "approve_all": {
      "type": "boolean"
    },
    "commit_to_github": {
      "type": "boolean"
    }
  }
}