changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "component": {
+ "type": "string"
+ },
+ "issues": {
+ "additionalProperties": false,
+ "properties": {
+ "known": {
+ "additionalProperties": false,
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "total": {
+ "type": "number"
+ },
+ "urls": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "total",
+ "urls",
+ "note"
+ ],
+ "type": "object"
+ },
+ "live": {
+ "additionalProperties": false,
+ "properties": {
+ "results": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "createdAt": {
+ "type": "string"
+ },
+ "labels": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "repo": {
+ "type": "string"
+ },
+ "state": {
+ "enum": [
+ "open",
+ "closed"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "url",
+ "repo",
+ "state",
+ "createdAt",
+ "labels"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "total",
+ "results"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "live",
+ "known"
+ ],
+ "type": "object"
+ },
+ "meta": {
+ "additionalProperties": false,
+ "properties": {
+ "dataFetchedAt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "designersUrl": {
+ "type": "string"
+ },
+ "sourceUrls": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "stability": {
+ "enum": [
+ "beta",
+ "stable"
+ ],
+ "type": "string"
+ },
+ "versions": {
+ "additionalProperties": false,
+ "properties": {
+ "bootstrapItalia": {
+ "type": "string"
+ },
+ "designSystem": {
+ "type": "string"
+ },
+ "designTokensItalia": {
+ "type": "string"
+ },
+ "devKitItalia": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "designSystem",
+ "bootstrapItalia",
+ "devKitItalia",
+ "designTokensItalia"
+ ],
+ "type": "object"
+ },
+ "warnings": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "dataFetchedAt",
+ "sourceUrls",
+ "warnings",
+ "stability"
+ ],
+ "type": "object"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "component",
+ "name",
+ "issues",
+ "meta"
+ ],
+ "type": "object"
+}