changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "failed": {
+ "type": "number"
+ },
+ "summary": {
+ "additionalProperties": false,
+ "properties": {
+ "aborted": {
+ "type": "number"
+ },
+ "failed": {
+ "type": "number"
+ },
+ "partial": {
+ "type": "number"
+ },
+ "succeeded": {
+ "type": "number"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "succeeded",
+ "failed",
+ "aborted",
+ "partial"
+ ],
+ "type": "object"
+ },
+ "tasks": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "aborted": {
+ "type": "boolean"
+ },
+ "attempts": {
+ "type": "number"
+ },
+ "attribution": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "files": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "untracked": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "files",
+ "untracked"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "cwd": {
+ "type": "string"
+ },
+ "diff": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "patch": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "statusTruncated": {
+ "type": "boolean"
+ },
+ "truncated": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "status",
+ "statusTruncated",
+ "patch",
+ "truncated"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "error": {
+ "type": "string"
+ },
+ "exitCode": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "isError": {
+ "type": "boolean"
+ },
+ "liveLog": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "outputTruncated": {
+ "type": "boolean"
+ },
+ "parsed": {
+ "additionalProperties": false,
+ "properties": {
+ "agentMessage": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "commands": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "command": {
+ "type": "string"
+ },
+ "exitCode": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "command",
+ "exitCode"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "errors": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "fileChanges": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "kind": {
+ "type": "string"
+ },
+ "path": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "path",
+ "kind"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "parseErrors": {
+ "type": "number"
+ },
+ "sawCompletion": {
+ "type": "boolean"
+ },
+ "sessionId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "turnCount": {
+ "type": "number"
+ },
+ "unknownEvents": {
+ "type": "number"
+ },
+ "usage": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "cachedInputTokens": {
+ "type": "number"
+ },
+ "inputTokens": {
+ "type": "number"
+ },
+ "outputTokens": {
+ "type": "number"
+ },
+ "reasoningOutputTokens": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "inputTokens",
+ "cachedInputTokens",
+ "outputTokens",
+ "reasoningOutputTokens"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "warnings": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "sessionId",
+ "agentMessage",
+ "fileChanges",
+ "commands",
+ "usage",
+ "errors"
+ ],
+ "type": "object"
+ },
+ "resumeReasons": {
+ "items": {
+ "enum": [
+ "timeout",
+ "transient-turn-failure",
+ "no-completion-marker"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "runId": {
+ "type": "string"
+ },
+ "schemaVersion": {
+ "type": "number"
+ },
+ "status": {
+ "enum": [
+ "success",
+ "partial",
+ "failed",
+ "aborted"
+ ],
+ "type": "string"
+ },
+ "stderr": {
+ "type": "string"
+ },
+ "taskIndex": {
+ "type": "number"
+ },
+ "timedOut": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "taskIndex",
+ "cwd",
+ "schemaVersion",
+ "status",
+ "parsed",
+ "diff",
+ "exitCode",
+ "timedOut",
+ "aborted",
+ "stderr",
+ "liveLog",
+ "isError"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "tasks",
+ "total",
+ "failed",
+ "summary"
+ ],
+ "type": "object"
+}