Adobe Creative Suite · JSON Structure

Adobe Creative Suite Firefly Generation Status Structure

Current status and results of a Firefly generation job

Type: object Properties: 6
CreativeDesignGraphicsPhotographyVideo

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

Properties

jobId status created modified outputs errors

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-generation-status-structure.json",
  "name": "GenerationStatus",
  "description": "Current status and results of a Firefly generation job",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string",
      "description": "Unique identifier of the generation job",
      "example": "urn:firefly:jobs:abc123def456"
    },
    "status": {
      "type": "string",
      "description": "Current status of the generation job",
      "enum": [
        "pending",
        "running",
        "succeeded",
        "failed"
      ],
      "example": "succeeded"
    },
    "created": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the job was created",
      "example": "example_value"
    },
    "modified": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the job was last modified",
      "example": "example_value"
    },
    "outputs": {
      "type": "array",
      "description": "Generated output images or videos (present on success)",
      "items": {
        "$ref": "#/components/schemas/OutputImage"
      }
    },
    "errors": {
      "type": "array",
      "description": "Errors encountered during generation (present on failure)",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  }
}