changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "artifact_id": {
+ "description": "artifactId queried",
+ "type": "string"
+ },
+ "count": {
+ "description": "Number of versions returned",
+ "type": "number"
+ },
+ "group_id": {
+ "description": "groupId queried",
+ "type": "string"
+ },
+ "versions": {
+ "description": "Published versions with release dates",
+ "items": {
+ "properties": {
+ "released": {
+ "description": "ISO 8601 release timestamp or null if unavailable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "version": {
+ "description": "Version string",
+ "type": "string"
+ }
+ },
+ "required": [
+ "version",
+ "released"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "group_id",
+ "artifact_id",
+ "count",
+ "versions"
+ ],
+ "type": "object"
+}