Adobe Photoshop · Schema

StorageInput

StorageInput from Adobe Photoshop API

AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

Properties

Name Type Description
href string Pre-signed GET URL or Creative Cloud asset path.
storage string Storage type for the input file.
View JSON Schema on GitHub

JSON Schema

adobe-photoshop-api-storage-input-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-storage-input-schema.json",
  "title": "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"
  ]
}