{
	"$id": "/inference/schemas/text-to-audio/output.json",
	"$schema": "http://json-schema.org/draft-06/schema#",
	"description": "Outputs of inference for the Text To Audio task",
	"title": "TextToAudioOutput",
	"type": "object",
	"properties": {
		"audio": {
			"description": "The generated audio waveform.",
			"comment": "type=binary"
		},
		"sampling_rate": {
			"type": "number",
			"description": "The sampling rate of the generated audio waveform."
		}
	},
	"required": ["audio", "sampling_rate"]
}
