{
	"$id": "/inference/schemas/text-to-image/output.json",
	"$schema": "http://json-schema.org/draft-06/schema#",
	"description": "Outputs of inference for the Text To Image task",
	"title": "TextToImageOutput",
	"type": "object",
	"properties": {
		"image": {
			"description": "The generated image returned as raw bytes in the payload."
		}
	},
	"required": ["image"]
}
