changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "aiReview": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "intended": {
+ "type": "number"
+ },
+ "regressions": {
+ "type": "number"
+ },
+ "reviewed": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "regressions",
+ "intended",
+ "reviewed"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "autoAcceptChanges": {
+ "type": "boolean"
+ },
+ "branch": {
+ "type": "string"
+ },
+ "buildId": {
+ "format": "uuid",
+ "type": "string"
+ },
+ "changedNextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "changedStories": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "aiClassification": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiConfidence": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiFlagReason": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiIntroducedBy": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiSummary": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiVerdict": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "browser": {
+ "type": "string"
+ },
+ "changedPct": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "decision": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "diffResultId": {
+ "format": "uuid",
+ "type": "string"
+ },
+ "isNew": {
+ "type": "boolean"
+ },
+ "name": {
+ "type": "string"
+ },
+ "storyId": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "unstable": {
+ "type": "boolean"
+ },
+ "viewport": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "diffResultId",
+ "storyId",
+ "title",
+ "name",
+ "viewport",
+ "browser",
+ "changedPct",
+ "decision",
+ "isNew",
+ "unstable",
+ "aiVerdict",
+ "aiClassification",
+ "aiIntroducedBy",
+ "aiConfidence",
+ "aiSummary",
+ "aiFlagReason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "commitSha": {
+ "type": "string"
+ },
+ "counts": {
+ "additionalProperties": false,
+ "properties": {
+ "changed": {
+ "type": "number"
+ },
+ "failed": {
+ "type": "number"
+ },
+ "total": {
+ "type": "number"
+ },
+ "unchanged": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "changed",
+ "failed",
+ "unchanged"
+ ],
+ "type": "object"
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "failedNextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "failedStories": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "browser": {
+ "type": "string"
+ },
+ "error": {
+ "type": "string"
+ },
+ "errorTruncated": {
+ "type": "boolean"
+ },
+ "kind": {
+ "enum": [
+ "render",
+ "interaction"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "storyId": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "viewport": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "storyId",
+ "title",
+ "name",
+ "viewport",
+ "browser",
+ "error",
+ "errorTruncated",
+ "kind"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "gateStatus": {
+ "type": "string"
+ },
+ "prNumber": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "status": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "buildId",
+ "commitSha",
+ "branch",
+ "prNumber",
+ "status",
+ "gateStatus",
+ "autoAcceptChanges",
+ "createdAt",
+ "counts",
+ "aiReview",
+ "changedStories",
+ "changedNextCursor",
+ "failedStories",
+ "failedNextCursor"
+ ],
+ "type": "object"
+}