FillImageRequest

FillImageRequest from Adobe API

AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

Properties

Name Type Description
image object
mask object
prompt string Text describing what to generate in the masked region.
numVariations integer
View JSON Schema on GitHub

JSON Schema

adobe-firefly-api-fill-image-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-cloud/refs/heads/main/json-schema/adobe-firefly-api-fill-image-request-schema.json",
  "title": "FillImageRequest",
  "description": "FillImageRequest from Adobe API",
  "type": "object",
  "properties": {
    "image": {
      "$ref": "#/components/schemas/ImageReference"
    },
    "mask": {
      "$ref": "#/components/schemas/ImageReference"
    },
    "prompt": {
      "type": "string",
      "description": "Text describing what to generate in the masked region.",
      "example": "A beautiful sunset over the ocean"
    },
    "numVariations": {
      "type": "integer",
      "minimum": 1,
      "maximum": 4,
      "default": 1,
      "example": 42
    }
  },
  "required": [
    "image",
    "mask"
  ]
}