PostHog · Schema

TaskRunCommandResponse

Response from the agent server command endpoint.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
jsonrpc string JSON-RPC version
id object Request ID echoed back (string or number)
result object Command result on success
error object Error details on failure
View JSON Schema on GitHub

JSON Schema

posthog-taskruncommandresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskRunCommandResponse",
  "title": "TaskRunCommandResponse",
  "type": "object",
  "description": "Response from the agent server command endpoint.",
  "properties": {
    "jsonrpc": {
      "type": "string",
      "description": "JSON-RPC version"
    },
    "id": {
      "description": "Request ID echoed back (string or number)"
    },
    "result": {
      "type": "object",
      "additionalProperties": true,
      "description": "Command result on success"
    },
    "error": {
      "type": "object",
      "additionalProperties": true,
      "description": "Error details on failure"
    }
  },
  "required": [
    "jsonrpc"
  ]
}