changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "base": {
+ "type": "string"
+ },
+ "changed": {
+ "items": {
+ "$ref": "#/properties/new/items"
+ },
+ "type": "array"
+ },
+ "changedNextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "counts": {
+ "additionalProperties": false,
+ "properties": {
+ "changed": {
+ "type": "number"
+ },
+ "new": {
+ "type": "number"
+ },
+ "removed": {
+ "type": "number"
+ },
+ "unchanged": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "new",
+ "changed",
+ "removed",
+ "unchanged"
+ ],
+ "type": "object"
+ },
+ "new": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "aiConfidence": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "aiVerdict": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "browsers": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "kind": {
+ "enum": [
+ "new",
+ "changed"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "accepted",
+ "denied",
+ "ignored",
+ "pending"
+ ],
+ "type": "string"
+ },
+ "storyId": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "unstable": {
+ "type": "boolean"
+ },
+ "viewports": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "storyId",
+ "title",
+ "name",
+ "kind",
+ "status",
+ "browsers",
+ "viewports",
+ "aiVerdict",
+ "aiConfidence",
+ "unstable"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "newNextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "removed": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "browsers": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "lastBuildId": {
+ "format": "uuid",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "storyId": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "viewports": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "storyId",
+ "title",
+ "name",
+ "lastBuildId",
+ "browsers",
+ "viewports"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "removedNextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "base",
+ "counts",
+ "new",
+ "newNextCursor",
+ "changed",
+ "changedNextCursor",
+ "removed",
+ "removedNextCursor"
+ ],
+ "type": "object"
+}