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"
+ },
+ "props": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "default": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "options": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "description",
+ "default",
+ "options"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "subcomponents": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "props": {
+ "items": {
+ "$ref": "#/properties/props/items"
+ },
+ "type": "array"
+ },
+ "tagName": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "tagName",
+ "props"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "tagName": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "component",
+ "tagName",
+ "props",
+ "subcomponents",
+ "meta"
+ ],
+ "type": "object"
+}