Adobe Creative Suite · JSON Structure

Adobe Creative Suite Photoshop Job Input Structure

Reference to an input file stored in cloud storage

Type: object Properties: 3 Required: 2
CreativeDesignGraphicsPhotographyVideo

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

Properties

href storage type

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-creative-suite/refs/heads/main/json-structure/adobe-creative-suite-photoshop-job-input-structure.json",
  "name": "JobInput",
  "description": "Reference to an input file stored in cloud storage",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "description": "URL or path to the input file in cloud storage",
      "example": "https://my-storage.blob.core.windows.net/images/input.psd"
    },
    "storage": {
      "type": "string",
      "description": "Cloud storage provider type",
      "enum": [
        "adobe",
        "external",
        "azure",
        "dropbox"
      ],
      "example": "external"
    },
    "type": {
      "type": "string",
      "description": "MIME type of the input file",
      "example": "image/vnd.adobe.photoshop"
    }
  },
  "required": [
    "href",
    "storage"
  ]
}