Adobe Photoshop · JSON Structure

Adobe Photoshop Api Storage Input Structure

StorageInput from Adobe Photoshop API

Type: object Properties: 2 Required: 2
AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

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

Properties

href storage

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-photoshop/refs/heads/main/json-structure/adobe-photoshop-api-storage-input-structure.json",
  "name": "StorageInput",
  "description": "StorageInput from Adobe Photoshop API",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "description": "Pre-signed GET URL or Creative Cloud asset path.",
      "example": "https://image.adobe.io/example"
    },
    "storage": {
      "type": "string",
      "enum": [
        "external",
        "adobe",
        "azure",
        "dropbox"
      ],
      "description": "Storage type for the input file.",
      "example": "external"
    }
  },
  "required": [
    "href",
    "storage"
  ]
}