Glossary Results Data Type

Wrapper for list of Glossary entries and a list of warning messages after saving/updating

Properties
name data type description
glossaryEntries array of Glossary Entry The list of created / updated glossary entries
warnings array of string A list of warnings generated when performing the operation

Example

{
  "glossaryEntries" : [ {
    "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"
    }
  }, {
    "id" : 444556,
    "pos" : "noun",
    "description" : "...",
    "srcLang" : "...",
    "sourceReference" : "...",
    "glossaryTerms" : [ {
      "content" : "家",
      "comment" : "...",
      "locale" : "ja",
      "lastModifiedDate" : 12345,
      "lastModifiedBy" : "..."
    }, {
      "content" : "家",
      "comment" : "...",
      "locale" : "ja",
      "lastModifiedDate" : 12345,
      "lastModifiedBy" : "..."
    } ],
    "termsCount" : 12345,
    "qualifiedName" : {
      "name" : "..."
    }
  } ],
  "warnings" : [ "...", "..." ]
}