Adobe Creative Suite · JSON Structure

Adobe Creative Suite Firefly Object Composite Request Structure

Request body for generating an object composite in a scene

Type: object Properties: 7 Required: 3
CreativeDesignGraphicsPhotographyVideo

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

Properties

prompt negativePrompt contentClass image mask numVariations seeds

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-object-composite-request-structure.json",
  "name": "ObjectCompositeRequest",
  "description": "Request body for generating an object composite in a scene",
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Text description of the object to generate and composite",
      "maxLength": 1024,
      "example": "example_value"
    },
    "negativePrompt": {
      "type": "string",
      "description": "Text describing what to avoid in the generated object",
      "maxLength": 1024,
      "example": "example_value"
    },
    "contentClass": {
      "type": "string",
      "enum": [
        "photo",
        "art"
      ],
      "example": "photo"
    },
    "image": {
      "$ref": "#/components/schemas/InputImageReference"
    },
    "mask": {
      "$ref": "#/components/schemas/InputImageReference"
    },
    "numVariations": {
      "type": "int32",
      "minimum": 1,
      "maximum": 4,
      "default": 1,
      "example": 1920
    },
    "seeds": {
      "type": "array",
      "items": {
        "type": "int32"
      }
    }
  },
  "required": [
    "prompt",
    "image",
    "mask"
  ]
}