PostHog · Schema

PatchedScoreDefinitionMetadata

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
name string Updated scorer name.
description string Updated scorer description.
archived boolean Whether the scorer is archived.
View JSON Schema on GitHub

JSON Schema

posthog-patchedscoredefinitionmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedScoreDefinitionMetadata",
  "title": "PatchedScoreDefinitionMetadata",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated scorer name.",
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "nullable": true,
      "description": "Updated scorer description."
    },
    "archived": {
      "type": "boolean",
      "description": "Whether the scorer is archived."
    }
  }
}