changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "crate": {
+ "description": "Crate name",
+ "type": "string"
+ },
+ "versions": {
+ "items": {
+ "properties": {
+ "downloads": {
+ "description": "Download count for this version",
+ "type": "number"
+ },
+ "license": {
+ "description": "License identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "published_at": {
+ "description": "Publication timestamp",
+ "type": "string"
+ },
+ "rust_version": {
+ "description": "Minimum Rust version required",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "version": {
+ "description": "Version number",
+ "type": "string"
+ },
+ "yanked": {
+ "description": "Whether version is yanked",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "version",
+ "downloads",
+ "published_at",
+ "yanked",
+ "license",
+ "rust_version"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "crate",
+ "versions"
+ ],
+ "type": "object"
+}