Gets the word count details for jobs in all or selected languages.
Info |
---|
NOTE: Replace */list by /api/jobs/wordcounts/list in the URLs below. |
URLS
The following methods are available to search, count, print and aggregate your data.
...
*/list
Retrieve and query items with all or selected fields. Supports pagination.
Parameters like query string, data fields and pagination are included in the request body.
...
*/list/full
...
*/list/count
...
*/list/aggregations
...
*/list/items/{id}
...
*/list/fields
...
*/list/print
...
*/list/autocomplete
...
*/list/queries/*
...
*/list/layouts/*
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
This is wordcount row data that will
...
include many properties, including:
jobid | The numeric job id (unique for Standard and Codyt respectively) | int |
did | The document id. | int |
locs | The source locale. | string |
loct | The target locale. | string |
// Global counts | ||
words | Total words. | int? |
chars | Total characters | int? |
pages | Total pages | int? |
minutes | Total minutes to work or worked | int? |
wordsExcluded | Total words not included in this word count. For information purposes. | int? |
charsTranslated | Total characters of translated content | int? |
wordsTranslated | Total words of translated content | int? |
// Pretranslated words | ||
wdPretransIdentical | Total pretranslated words, whether pretranslations are 100%, 110% or MT. | int? |
wdPretransIdenticalCtx | Among wdPretransIdentical, the 110% pretranslated words. Also called perfect or in-context match. | int? |
wdPretransIdenticalPrevCtx | Among wdPretransIdentical, the 110% pretranslated words, leveraged from the previous document version. | int? |
wdPretransIdenticalPrev | Among wdPretransIdentical, the 100% pretranslated words, leveraged from the previous document version. | int? |
wdPretransIdenticalMT | Among wdPretransIdentical, the machine translated words | int? |
wdPretransFuzzy | <100% pretranslated words | |
wd110 | Total of 110% pretranslations. Equals sum of wdPretransIdenticalCtx + wdPretransIdenticalPrevCtx | int |
wd100 | Total of 100% pretranslations. Equals wdPretransIdentical - wdPretransIdenticalCtx - wdPretransIdenticalPrevCtx | int |
// Fuzzy matches (not used for pre-translation) and repetitions | ||
wdMatch1 | Total words falling into interval #1. The intervals (minimum % to maximum %) are configured in the project word count profile. | int? |
wdMatch2 | Total words falling into interval #2. | int? |
wdMatch3 | Total words falling into interval #3. | int? |
wdMatch4 | Total words falling into interval #4. | int? |
wdMatch5 | Total words falling into interval #5. | int? |
// Advanced. These properties are for information only | ||
tags | Total amount of markup | int? |
spaces | Total count of whitespace characters | int? |
punctuation | Total punctuation characters | int? |
nonAsianWords | Total non-Asian words | int? |
asianCharacters | Total Asian characters (Japanese, Chinese, Korean signs) | int? |
...