InputImageReference

Reference to an input image for generative operations

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
source object Source of the input image
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-inputimagereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InputImageReference",
  "title": "InputImageReference",
  "type": "object",
  "description": "Reference to an input image for generative operations",
  "required": [
    "source"
  ],
  "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"
        }
      }
    }
  }
}