changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "all_formats": {
+ "additionalProperties": false,
+ "properties": {
+ "avif": {
+ "type": "number"
+ },
+ "jxl": {
+ "type": "number"
+ },
+ "webp": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "avif",
+ "webp",
+ "jxl"
+ ],
+ "type": "object"
+ },
+ "format": {
+ "type": "string"
+ },
+ "percent_smaller_than_jpeg": {
+ "type": "number"
+ },
+ "quality": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "format",
+ "quality",
+ "percent_smaller_than_jpeg",
+ "all_formats",
+ "source"
+ ],
+ "type": "object"
+}