changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "filesOut": {
+ "description": "How many files were produced, i.e. imagesIn x sizes.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "fit": {
+ "description": "How each image was fitted to its target box.",
+ "enum": [
+ "contain",
+ "cover",
+ "stretch"
+ ],
+ "type": "string"
+ },
+ "imagesIn": {
+ "description": "How many source images were supplied.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "outputs": {
+ "description": "Every produced file, so the archive can be checked without unzipping it.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "bytes": {
+ "description": "Output size in bytes.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "file": {
+ "description": "Path of the file inside the ZIP.",
+ "type": "string"
+ },
+ "height": {
+ "description": "Output height in px.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "source": {
+ "description": "Which input image this file came from.",
+ "type": "string"
+ },
+ "width": {
+ "description": "Output width in px.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "source",
+ "file",
+ "width",
+ "height",
+ "bytes"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "paddingColor": {
+ "description": "The letterbox colour, which only applies to fit 'contain'. Null for 'cover' and 'stretch', where nothing is padded.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "preset": {
+ "description": "The preset that was applied, echoed from the input.",
+ "type": "string"
+ },
+ "sizes": {
+ "description": "How many target sizes the chosen preset expands to.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "imagesIn",
+ "filesOut",
+ "sizes",
+ "preset",
+ "fit",
+ "paddingColor",
+ "outputs"
+ ],
+ "type": "object"
+}