Response format

Success envelope and field semantics for user dictionary actions.

Successful actions return the same structure.

{
  "name": "my_dict",
  "action": "addword",
  "wordlist": [
    "word1",
    "word2"
  ],
  "modificationTime": 1772124021
}

Fields

Field
Type (JSON)
Notes

name

string

Dictionary name operated on. After rename, this is the new name.

action

string

Executed action name.

wordlist

string[]

Words affected or returned by the action.

modificationTime

integer

Unix time (seconds).

0 can be returned for destructive actions.

Last updated

Was this helpful?