changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "autoResolution": {
+ "additionalProperties": false,
+ "properties": {
+ "decision": {
+ "enum": [
+ "intentional",
+ "bug"
+ ],
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "decision",
+ "reason"
+ ],
+ "type": "object"
+ },
+ "conflict": {
+ "additionalProperties": false,
+ "properties": {
+ "detail": {
+ "type": "string"
+ },
+ "kind": {
+ "enum": [
+ "known_bug_vs_intentional_evidence",
+ "signal_disagreement"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "detail"
+ ],
+ "type": "object"
+ },
+ "humanDecision": {
+ "additionalProperties": false,
+ "properties": {
+ "decidedAt": {
+ "type": "string"
+ },
+ "decision": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "via": {
+ "enum": [
+ "elicitation",
+ "resolve_case_tool"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "decision",
+ "decidedAt",
+ "via"
+ ],
+ "type": "object"
+ },
+ "id": {
+ "type": "string"
+ },
+ "matchedKnownBugs": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "relatedCaseIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "signals": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "affirmativeIntent": {
+ "additionalProperties": false,
+ "properties": {
+ "confidence": {
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "kind": {
+ "enum": [
+ "comment",
+ "docstring",
+ "todo",
+ "fixme"
+ ],
+ "type": "string"
+ },
+ "locator": {
+ "additionalProperties": false,
+ "properties": {
+ "endLine": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "file": {
+ "type": "string"
+ },
+ "startLine": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "file",
+ "startLine",
+ "endLine"
+ ],
+ "type": "object"
+ },
+ "text": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "text",
+ "locator",
+ "confidence"
+ ],
+ "type": "object"
+ },
+ "claim": {
+ "type": "string"
+ },
+ "detectedAt": {
+ "type": "string"
+ },
+ "evidenceText": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "locator": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "endLine": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "file": {
+ "type": "string"
+ },
+ "startLine": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "file",
+ "startLine",
+ "endLine"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "method": {
+ "type": "string"
+ },
+ "path": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "path"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ "source": {
+ "enum": [
+ "ingest",
+ "crawl",
+ "known_bug"
+ ],
+ "type": "string"
+ },
+ "topicKey": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "source",
+ "locator",
+ "topicKey",
+ "claim",
+ "evidenceText",
+ "detectedAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "enum": [
+ "auto_resolved",
+ "open",
+ "resolved_by_human"
+ ],
+ "type": "string"
+ },
+ "topicKey": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "topicKey",
+ "signals",
+ "matchedKnownBugs",
+ "status"
+ ],
+ "type": "object"
+}