addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / properties / fit
Added value: +{
+ "default": "contain",
+ "description": "Resize fit mode (contain=fit within, cover=fill & crop, fill=stretch)",
+ "enum": [
+ "contain",
+ "cover",
+ "fill",
+ "inside",
+ "outside"
+ ],
+ "type": "string"
+}
addedInput schema / properties / format
Added value: +{
+ "default": "png",
+ "description": "Output image format",
+ "enum": [
+ "png",
+ "jpeg",
+ "webp",
+ "avif"
+ ],
+ "type": "string"
+}
addedInput schema / properties / height
Added value: +{
+ "description": "Target height in pixels",
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "number"
+}
addedInput schema / properties / image
Added value: +{
+ "description": "Base64-encoded image (PNG, JPEG, WebP, AVIF, TIFF, GIF supported)",
+ "type": "string"
+}
addedInput schema / properties / quality
Added value: +{
+ "default": 80,
+ "description": "Output quality (1-100, for lossy formats)",
+ "maximum": 100,
+ "minimum": 1,
+ "type": "number"
+}
addedInput schema / properties / width
Added value: +{
+ "description": "Target width in pixels",
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "number"
+}
addedInput schema / required
Added value: +[
+ "image"
+]