Hugging Face · Schema

TranslationResponse

Properties

Name Type Description
translation_text string The translated text
View JSON Schema on GitHub

JSON Schema

hugging-face-translationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TranslationResponse",
  "title": "TranslationResponse",
  "type": "object",
  "properties": {
    "translation_text": {
      "type": "string",
      "description": "The translated text",
      "example": "example_value"
    }
  }
}