changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "description": {
+ "description": "Short description of the image",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "full_description": {
+ "description": "Full detailed description of the image",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "full_name": {
+ "description": "Full repository name (namespace/name)",
+ "type": "string"
+ },
+ "hub_user": {
+ "description": "Hub user or organization that owns the repository",
+ "type": "string"
+ },
+ "is_private": {
+ "description": "Whether the repository is private",
+ "type": "boolean"
+ },
+ "last_updated": {
+ "description": "ISO timestamp of last update",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pulls": {
+ "description": "Total number of pulls",
+ "type": "number"
+ },
+ "stars": {
+ "description": "Total number of stars",
+ "type": "number"
+ }
+ },
+ "required": [
+ "full_name",
+ "description",
+ "full_description",
+ "pulls",
+ "stars",
+ "last_updated",
+ "is_private",
+ "hub_user"
+ ],
+ "type": "object"
+}