Glossary Entry Data Type

A single glossary entry representing a single translated term in multiple locales.

Properties
name data type description
id number Unique identifier
pos string Glossary entry's part of speech
description string
srcLang string The source locale for this specific entry
sourceReference string
glossaryTerms array of Glossary Term The full list of glossary terms
termsCount number Number of translated terms. A term is the glossary entry's representation for a specific locale
qualifiedName Qualified Name

Example

{
  "id" : 444555,
  "pos" : "verb",
  "description" : "...",
  "srcLang" : "en-US",
  "sourceReference" : "...",
  "glossaryTerms" : [ {
    "content" : "Una casa",
    "comment" : "...",
    "locale" : "es-ES",
    "lastModifiedDate" : 12345,
    "lastModifiedBy" : "homer"
  }, {
    "content" : "家",
    "comment" : "...",
    "locale" : "ja",
    "lastModifiedDate" : 12345,
    "lastModifiedBy" : "..."
  } ],
  "termsCount" : 2,
  "qualifiedName" : {
    "name" : "global/default"
  }
}