Adobe Photoshop · Schema

ActionJSONRequest

ActionJSONRequest 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-action-json-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-action-json-request-schema.json",
  "title": "ActionJSONRequest",
  "description": "ActionJSONRequest from Adobe Photoshop API",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageInput"
      }
    },
    "options": {
      "type": "object",
      "required": [
        "actionJSON"
      ],
      "properties": {
        "actionJSON": {
          "type": "array",
          "description": "Array of Photoshop action descriptor objects.",
          "items": {
            "type": "object",
            "required": [
              "_obj"
            ],
            "properties": {
              "_obj": {
                "type": "string",
                "description": "Photoshop action descriptor type."
              }
            },
            "additionalProperties": true
          }
        },
        "additionalImages": {
          "type": "array",
          "description": "Additional images for compositing, referenced in actionJSON as ACTION_JSON_OPTIONS_ADDITIONAL_IMAGES_0, etc.",
          "items": {
            "$ref": "#/components/schemas/StorageInput"
          }
        }
      }
    },
    "outputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageOutput"
      }
    }
  },
  "required": [
    "options",
    "outputs"
  ]
}