Content staging package item.
| name | data type | description |
|---|---|---|
| errors | array of StagedError | Get list of errors related to this object. |
| description | string | Form description |
| languages | array of string | Form languages |
| successPageId | string | ID of the success page |
| successNodeId | string | ID of the success node |
| data | object | Form data in JSON format |
| id | string | |
| version | StagedObjectVersion | Get object version. |
| name | string |
Example
{
"errors" : [ {
"error" : "...",
"kind" : "EXCEPTION"
}, {
"error" : "...",
"kind" : "NO_BINARY"
} ],
"description" : "...",
"languages" : [ "...", "..." ],
"successPageId" : "...",
"successNodeId" : "...",
"data" : { },
"id" : "...",
"version" : {
"timestamp" : 12345,
"versionNumber" : "...",
"type" : "published",
"publishAt" : 12345,
"online" : true,
"timeOff" : 12345
},
"name" : "..."
}