Adobe Photoshop · Schema

DocumentManifestRequest

DocumentManifestRequest from Adobe Photoshop API

AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

Properties

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

JSON Schema

adobe-photoshop-api-document-manifest-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-document-manifest-request-schema.json",
  "title": "DocumentManifestRequest",
  "description": "DocumentManifestRequest from Adobe Photoshop API",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageInput"
      }
    },
    "options": {
      "type": "object",
      "properties": {
        "thumbnails": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "image/png",
                "image/jpeg"
              ],
              "description": "Format for layer thumbnails."
            }
          }
        }
      }
    }
  },
  "required": [
    "inputs"
  ]
}