LayerManageRequest

Request to read or modify layers within a PSD document

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
inputs array
outputs array
options object
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-layermanagerequest-schema.json Raw ↑
{
  "$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"
          }
        }
      }
    }
  }
}