changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "description": "List of themes (groups/categories)",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Group description",
+ "type": "string"
+ },
+ "id": {
+ "description": "Group UUID",
+ "type": "string"
+ },
+ "image_url": {
+ "description": "Group image URL",
+ "type": "string"
+ },
+ "name": {
+ "description": "Group name/slug",
+ "type": "string"
+ },
+ "package_count": {
+ "description": "Number of packages in group",
+ "type": "number"
+ },
+ "title": {
+ "description": "Group display title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}