Time Management of pages
| name | data type | description |
|---|---|---|
| futurePublisher | User | the future publisher (i.e.: the user that planned to publish something) |
| futureUnpublisher | User | the future unpublisher (i.e.: the user that planned to unpublish something) |
| at | number | Get the timestamp at which the page will be published |
| version | PageVersion | Page Version that will be published at the timestamp |
| offlineAt | number | Time at which the page will be taken offline |
| queuedPublish | QueuedTimeManagement | Queued time management for publishing the page |
| queuedOffline | QueuedTimeManagement | Queued time management for taking the page offline |
Example
{
"futurePublisher" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
}, {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
} ],
"login" : "...",
"password" : "..."
},
"futureUnpublisher" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
}, {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
} ],
"login" : "...",
"password" : "..."
},
"at" : 12345,
"version" : {
"number" : "...",
"timestamp" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
},
"offlineAt" : 12345,
"queuedPublish" : {
"at" : 12345,
"version" : {
"number" : "...",
"timestamp" : 12345,
"editor" : { }
},
"user" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
},
"queuedOffline" : {
"at" : 12345,
"version" : {
"number" : "...",
"timestamp" : 12345,
"editor" : { }
},
"user" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
}
}