{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-suite/refs/heads/main/json-structure/adobe-creative-suite-photoshop-layer-manage-request-structure.json", "name": "LayerManageRequest", "description": "Request to read or modify layers within a PSD document", "type": "object", "properties": { "inputs": { "type": "array", "items": { "$ref": "#/components/schemas/JobInput" } }, "outputs": { "type": "array", "items": { "$ref": "#/components/schemas/JobOutput" } }, "options": { "type": "object", "properties": { "layers": { "type": "array", "description": "Layer operations to apply", "items": { "$ref": "#/components/schemas/Layer" } } } } }, "required": [ "inputs", "outputs" ] }