Request to read or modify layers within a PSD document
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LayerManageRequest", "title": "LayerManageRequest", "type": "object", "description": "Request to read or modify layers within a PSD document", "required": [ "inputs", "outputs" ], "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" } } } } } }