JobInput

Reference to an input file stored in cloud storage

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
href string URL or path to the input file in cloud storage
storage string Cloud storage provider type
type string MIME type of the input file
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-jobinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobInput",
  "title": "JobInput",
  "type": "object",
  "description": "Reference to an input file stored in cloud storage",
  "required": [
    "href",
    "storage"
  ],
  "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"
    }
  }
}