Adobe Photoshop · Schema

PhotoshopActionsRequest

PhotoshopActionsRequest from Adobe Photoshop API

AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

Properties

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

JSON Schema

adobe-photoshop-api-photoshop-actions-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-schema/adobe-photoshop-api-photoshop-actions-request-schema.json",
  "title": "PhotoshopActionsRequest",
  "description": "PhotoshopActionsRequest from Adobe Photoshop API",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageInput"
      }
    },
    "options": {
      "type": "object",
      "required": [
        "actions"
      ],
      "properties": {
        "actions": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "href",
              "storage"
            ],
            "properties": {
              "href": {
                "type": "string",
                "description": "URL to the .atn Action file."
              },
              "storage": {
                "type": "string",
                "enum": [
                  "external",
                  "adobe",
                  "azure",
                  "dropbox"
                ]
              },
              "actionName": {
                "type": "string",
                "description": "Specific action name to run within the set."
              }
            }
          }
        }
      }
    },
    "outputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageOutput"
      }
    }
  },
  "required": [
    "inputs",
    "options",
    "outputs"
  ]
}