PostHog · Schema

TaskRunStartRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
pending_user_message string Initial or follow-up user message to include in the run prompt.
pending_user_artifact_ids array Identifiers for run artifacts that should be attached to the next user message delivered to the sandbox.
View JSON Schema on GitHub

JSON Schema

posthog-taskrunstartrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskRunStartRequest",
  "title": "TaskRunStartRequest",
  "type": "object",
  "properties": {
    "pending_user_message": {
      "type": "string",
      "description": "Initial or follow-up user message to include in the run prompt."
    },
    "pending_user_artifact_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 128
      },
      "description": "Identifiers for run artifacts that should be attached to the next user message delivered to the sandbox."
    }
  }
}