Adobe Creative Suite · JSON Structure

Adobe Creative Suite Photoshop Layer Manage Request Structure

Request to read or modify layers within a PSD document

Type: object Properties: 3 Required: 2
CreativeDesignGraphicsPhotographyVideo

LayerManageRequest is a JSON Structure definition published by Adobe Creative Suite, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

inputs outputs options

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}