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