{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-structure/adobe-photoshop-api-product-crop-request-structure.json", "name": "ProductCropRequest", "description": "ProductCropRequest from Adobe Photoshop API", "type": "object", "properties": { "inputs": { "type": "array", "items": { "$ref": "#/components/schemas/StorageInput" } }, "options": { "type": "object", "properties": { "padding": { "type": "double", "description": "Padding around the product subject." }, "unit": { "type": "string", "enum": [ "pixel", "percent" ], "description": "Unit for padding value." } } }, "outputs": { "type": "array", "items": { "$ref": "#/components/schemas/StorageOutput" } } }, "required": [ "inputs", "outputs" ] }