changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "component": {
+ "type": "string"
+ },
+ "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"
+ },
+ "total": {
+ "type": "number"
+ },
+ "variantsAvailable": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "component",
+ "total",
+ "variantsAvailable",
+ "meta"
+ ],
+ "type": "object"
+}