changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "board": {
+ "additionalProperties": false,
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "repos": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "openIssuesUrl": {
+ "type": "string"
+ },
+ "repo": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "repo",
+ "openIssuesUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "repos",
+ "note"
+ ],
+ "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"
+ },
+ "projectBoard": {
+ "additionalProperties": false,
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "note"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "board",
+ "projectBoard",
+ "meta"
+ ],
+ "type": "object"
+}