A JSON object that represents a version the history of a segment text. Whenever, a text is edited (by a different user than the previous one) the system logs the change.
PROPERTIES
ty | The type of revision:
| string | |||
current | True if this event refers to the current version. The properties are then those of the current version. For example, if the text in val is the current actual text versionof the segment. False if this is an older version. | bool | val | The text. | string |
loc | The locale of the textfor which the change was done. | string | |||
dt | Date of change. | datetime | |||
uid | The person ID who edited this version. Null if text was not edited by a user but is either empty or a pretranslationset by machine or connected user has no right to see the user details. | int?ed | |||
Last editor type (none, pretranslation, human edit...). See list of possible values. | int | tsk | Optional task code. If the comment was added in the framework of a job, then this includes the task code of the job. Otherwise null. | string? | |
flgdt | Only set when current is true. Last change of either status or bookmark. | datetime? | |||
flgpid | Only set when current is true. User who changed status or bookmark. | int? | |||
Properties used only with "text" events | |||||
val | The text. | string | |||
ed | Last editor type (none, pretranslation, human edit...). See list of possible values. | int? | |||
Properties used only with "flags" events | |||||
st | The status: 0 = none, 1 = OK/green, 2 = error/red | int | |||
bk | The bookmark value: 0 = none, 1 = blue, 2 = red | int |
EXAMPLES
Code Block |
---|
{ "ty": "text", "current": true, "val": "Corrected translation", "tsk": null, "ed": 1, "dt": "2017-04-07T07:39:11.2253404Z", "uid": null, "loc": "en" }, { "ty": "text", "loccurrent": true, "enval",: "Corrected translation", "tsk": null, "ed": 1, "flgdtdt": "2017-04-07T07:5039:4111.6683829Z2253404Z", "uid": "flgpid": 7 } { "current": false, "valnull, "loc": "en" }, { "ty": "Testword1flags", "tsk "current": nulltrue, "ed "tsk": 1null, "dt": "2017-02-14T09:4742:5950.0990044Z0220044Z", "uid": 37, "loc": "en", "flgdt "st": null1, "flgpid "bk": null0 } }, |