changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "icons": {
+ "description": "Array of icon objects with SVG data and dimensions",
+ "items": {
+ "properties": {
+ "full_name": {
+ "description": "Full icon identifier in prefix:name format",
+ "type": "string"
+ },
+ "height": {
+ "description": "Icon height in pixels",
+ "type": "number"
+ },
+ "name": {
+ "description": "Icon name within the collection",
+ "type": "string"
+ },
+ "svg_body": {
+ "description": "SVG markup content (inner body)",
+ "type": "string"
+ },
+ "width": {
+ "description": "Icon width in pixels",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "full_name",
+ "svg_body",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "prefix": {
+ "description": "Collection prefix (e.g., mdi, fa, heroicons)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "prefix",
+ "icons"
+ ],
+ "type": "object"
+}