{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PngExportFormat", "type": "object", "description": "PNG export format options", "properties": { "type": { "type": "string" }, "export_quality": { "type": "string" }, "width": { "type": "integer", "description": "Output width in pixels" }, "height": { "type": "integer", "description": "Output height in pixels" }, "lossless": { "type": "boolean", "description": "Whether to use lossless compression" }, "transparent_background": { "type": "boolean", "description": "Whether to use a transparent background" }, "as_single_image": { "type": "boolean", "description": "Whether to export all pages as a single image" }, "pages": { "type": "array", "description": "Page indices to export" } } }