Adobe Creative Suite · JSON Structure

Adobe Creative Suite Firefly Output Image Structure

A single generated image output from a Firefly generation job

Type: object Properties: 3
CreativeDesignGraphicsPhotographyVideo

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

Properties

image seed contentClass

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-output-image-structure.json",
  "name": "OutputImage",
  "description": "A single generated image output from a Firefly generation job",
  "type": "object",
  "properties": {
    "image": {
      "type": "object",
      "description": "Generated image reference",
      "properties": {
        "url": {
          "type": "string",
          "description": "Temporary signed URL to download the generated image",
          "example": "https://firefly-api-prod-origin.adobe.io/v2/assets/urn:firefly:image:abc123"
        }
      }
    },
    "seed": {
      "type": "int32",
      "description": "Seed value used to produce this particular output",
      "example": 42
    },
    "contentClass": {
      "type": "string",
      "description": "Content class detected or applied during generation",
      "enum": [
        "photo",
        "art"
      ],
      "example": "photo"
    }
  }
}