{
	"$id": "/inference/schemas/translation/output.json",
	"$schema": "http://json-schema.org/draft-06/schema#",
	"description": "Outputs of inference for the Translation task",
	"title": "TranslationOutput",
	"type": "object",
	"properties": {
		"translation_text": {
			"type": "string",
			"description": "The translated text."
		}
	},
	"required": ["translation_text"]
}
