{ "$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-fill-masked-areas-request-structure.json", "name": "FillMaskedAreasRequest", "description": "FillMaskedAreasRequest from Adobe Photoshop API", "type": "object", "properties": { "image": { "type": "object", "required": [ "source" ], "properties": { "source": { "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "description": "Pre-signed URL of the source image." } } } } }, "masks": { "type": "array", "items": { "type": "object", "required": [ "source" ], "properties": { "source": { "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "description": "Pre-signed URL of the mask image." } } } } } } }, "required": [ "image", "masks" ] }