Adobe Creative Suite · JSON Structure

Adobe Creative Suite Firefly Input Image Reference Structure

Reference to an input image for generative operations

Type: object Properties: 1 Required: 1
CreativeDesignGraphicsPhotographyVideo

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

Properties

source

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-firefly-input-image-reference-structure.json",
  "name": "InputImageReference",
  "description": "Reference to an input image for generative operations",
  "type": "object",
  "properties": {
    "source": {
      "type": "object",
      "description": "Source of the input image",
      "properties": {
        "url": {
          "type": "string",
          "description": "Publicly accessible URL of the input image",
          "example": "https://my-bucket.s3.amazonaws.com/source-image.jpg"
        },
        "uploadId": {
          "type": "string",
          "description": "Upload ID for a previously uploaded image via the Firefly upload API"
        }
      }
    }
  },
  "required": [
    "source"
  ]
}