changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "backgroundColor": {
+ "description": "Background colour written into the manifest.",
+ "type": "string"
+ },
+ "manifest": {
+ "description": "A complete web app manifest as JSON text, ready to serve as site.webmanifest.",
+ "type": "string"
+ },
+ "maskablePadding": {
+ "description": "Whether the maskable icon was padded to survive Android's safe-zone crop.",
+ "type": "boolean"
+ },
+ "snippet": {
+ "description": "The <link> and <meta> tags to paste into the page head, matching the files that were generated.",
+ "type": "string"
+ },
+ "sourceHeight": {
+ "description": "Source image height in px.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "sourceWidth": {
+ "description": "Source image width in px.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "squaredSide": {
+ "description": "Side length of the square canvas the source was fitted onto, in px.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "table": {
+ "description": "Every generated file and what it is for, so the set can be checked without unzipping it.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "file": {
+ "description": "Generated filename.",
+ "type": "string"
+ },
+ "sizes": {
+ "description": "Pixel dimensions the file covers.",
+ "type": "string"
+ },
+ "usedFor": {
+ "description": "Which browser, platform or surface asks for this file.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "file",
+ "sizes",
+ "usedFor"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "themeColor": {
+ "description": "Theme colour written into the manifest and meta tags.",
+ "type": "string"
+ },
+ "warning": {
+ "description": "A quality caution about the source image, chiefly that it was not square or too small. Null when there is nothing to flag.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "manifest",
+ "snippet",
+ "table",
+ "sourceWidth",
+ "sourceHeight",
+ "squaredSide",
+ "maskablePadding",
+ "themeColor",
+ "backgroundColor",
+ "warning"
+ ],
+ "type": "object"
+}