A single generated image output from a Firefly generation job
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OutputImage", "title": "OutputImage", "type": "object", "description": "A single generated image output from a Firefly generation job", "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": "integer", "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" } } }