changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "images": {
+ "description": "List of matching Docker Hub repositories",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Short description of the repository",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "is_automated": {
+ "description": "Whether this is an automated build",
+ "type": "boolean"
+ },
+ "is_official": {
+ "description": "Whether this is an official Docker repository",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Repository name (e.g., namespace/name)",
+ "type": "string"
+ },
+ "pulls": {
+ "description": "Number of pulls",
+ "type": "number"
+ },
+ "stars": {
+ "description": "Number of stars",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "description",
+ "stars",
+ "pulls",
+ "is_official",
+ "is_automated"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of matching repositories",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "images"
+ ],
+ "type": "object"
+}