{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-schema/adobe-photoshop-api-fill-masked-areas-request-schema.json", "title": "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" ] }