REST Model of a content maintenance action request
| name | data type | description |
|---|---|---|
| action | ContentMaintenanceAction | Maintenance action |
| types | array of ContentMaintenanceType | Object types for restricting the action |
| clearPublishCache | boolean | True to clear the publish cache for dirted objects |
| attributes | array of string | Attributes for restricted dirting (only the dirted attributes will be updated) |
| nodes | array of number | Node IDs for node restriction |
| contentRepositories | array of number | ContentRepository IDs for restriction |
| start | number | Start timestamp for cdate restriction |
| end | number | End timestamp for cdate restriction |
Example
{
"action" : "publishDelayed",
"types" : [ "form", "file" ],
"clearPublishCache" : true,
"attributes" : [ "...", "..." ],
"nodes" : [ 12345, 12345 ],
"contentRepositories" : [ 12345, 12345 ],
"start" : 12345,
"end" : 12345
}