ContentPackageForm Data Type

Content staging package item.

Properties
name data type description
description string Form description
successNodeId string ID of the success node
version StagedObjectVersion Get object version.
name string
id string
errors array of StagedError Get list of errors related to this object.
languages array of string Form languages
successPageId string ID of the success page
data object Form data in JSON format

Example

{
  "description" : "...",
  "successNodeId" : "...",
  "version" : {
    "timestamp" : 12345,
    "versionNumber" : "...",
    "type" : "published",
    "publishAt" : 12345,
    "online" : true,
    "timeOff" : 12345
  },
  "name" : "...",
  "id" : "...",
  "errors" : [ {
    "error" : "...",
    "kind" : "EXCEPTION"
  }, {
    "error" : "...",
    "kind" : "DUPLICATION"
  } ],
  "languages" : [ "...", "..." ],
  "successPageId" : "...",
  "data" : { }
}