DeepL · Schema

DeepL Glossary

A custom glossary used to enforce terminology in DeepL translations.

Artificial IntelligenceDeep LearningGlossariesLocalizationMachine LearningMachine TranslationTranslation

Properties

Name Type Description
glossary_id string
name string
ready boolean
source_lang string
target_lang string
creation_time string
entry_count integer
View JSON Schema on GitHub

JSON Schema

deepl-glossary.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deepl/json-schema/deepl-glossary.json",
  "title": "DeepL Glossary",
  "description": "A custom glossary used to enforce terminology in DeepL translations.",
  "type": "object",
  "properties": {
    "glossary_id": {"type": "string"},
    "name": {"type": "string"},
    "ready": {"type": "boolean"},
    "source_lang": {"type": "string"},
    "target_lang": {"type": "string"},
    "creation_time": {"type": "string", "format": "date-time"},
    "entry_count": {"type": "integer"}
  },
  "required": ["glossary_id", "name"]
}