PostHog · Schema

EvaluationConfigSetActiveKeyRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
key_id string UUID of an existing LLM provider key (state must be 'ok') to mark as the active key for running llm_judge evaluations team-wide.
View JSON Schema on GitHub

JSON Schema

posthog-evaluationconfigsetactivekeyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluationConfigSetActiveKeyRequest",
  "title": "EvaluationConfigSetActiveKeyRequest",
  "type": "object",
  "properties": {
    "key_id": {
      "type": "string",
      "format": "uuid",
      "description": "UUID of an existing LLM provider key (state must be 'ok') to mark as the active key for running llm_judge evaluations team-wide."
    }
  },
  "required": [
    "key_id"
  ]
}