changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "collections": {
+ "description": "Array of collection metadata objects",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author name or null if not specified",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "category": {
+ "description": "Collection category or null if not specified",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "license": {
+ "description": "License title or null if not specified",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Human-readable collection name",
+ "type": "string"
+ },
+ "prefix": {
+ "description": "Collection prefix identifier",
+ "type": "string"
+ },
+ "total_icons": {
+ "description": "Number of icons in the collection",
+ "type": "number"
+ }
+ },
+ "required": [
+ "prefix",
+ "name",
+ "total_icons",
+ "category",
+ "author",
+ "license"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of available collections",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "collections"
+ ],
+ "type": "object"
+}