Content staging package item.
| name | data type | description |
|---|---|---|
| name | string | |
| errors | array of StagedError | Get list of errors related to this object. |
| formType | string | Form type |
| description | string | Form description |
| languages | array of string | Form languages |
| externalId | string | External ID |
| externalHash | string | External Hash |
| data | object | Form data in JSON format |
| version | StagedObjectVersion | Get object version. |
| id | string |
Example
{
"name" : "...",
"errors" : [ {
"error" : "...",
"kind" : "OTHER"
}, {
"error" : "...",
"kind" : "NO_BINARY"
} ],
"formType" : "...",
"description" : "...",
"languages" : [ "...", "..." ],
"externalId" : "...",
"externalHash" : "...",
"data" : { },
"version" : {
"timestamp" : 12345,
"versionNumber" : "...",
"type" : "scheduled",
"publishAt" : 12345,
"online" : true,
"timeOff" : 12345
},
"id" : "..."
}