...
A JSON object containing some details of the Flex document plus a list of the transactions.A typical record:
Code Block |
---|
{ "tsskip": "2019-05-16T12:54:18.6476328Z", "success": true, "error": null, "mode": "FULL", "source": { "segmentsTotal": 1, "segmentsErrors": 0, "header": { "pushAll": null, "pushAllDeleteSegments": null, "chgStatusTarget": null, "chgStatusSource": null, "chgBookmarkTarget": null, "chgBookmarkSource": null, "major": "alpha", "minor": "2000" } }, "updates": { "total": 0, "totalAdded": 0, "totalUpdated": 0, "totalRemoved": 0, "texts": {}, "textsMeta": {} } } |
The main properties are:
...
Date of operation
...
Provides information on the flex file content which was pushed: Number of segments and texts as well as instructions (in the header node).
...
0,
"take": 6,
"total": 6,
"id": 10683,
"name": "Sample document.wbflex",
"filterName": "SRX",
"pid": 3623,
"pname": "JAWS-417",
"src": { "v": "en-GB", "t": "English (United Kingdom)" },
"trgs": [ { "v": "fr-FR", "t": "French (France)" }
],
"rows": [ ..... ]
} |
Comments on some properties:
- id - The document ID
- name: The document name
- filterName: The filter configuration's name that applies to this document. The configuration is assigned when creating the Flex document.
- pid: The project ID
- pname: The project name
- src: The source language information
- trgs: The target language(s) information
- rows: The list of transactions. Each element in rows is a transaction.
For a detailed description of properties please refer to: apps/wbflex/documents/{id}/log/report
EXAMPLES
A typical document:-