JSON Identifier (for Content Creation)

Describes an identifier for a data mapping configuration, along with parameters used in a content creation operation and runtime parameters used in the data mapping configuration.

Structure

The structure consists of an object with the following name/value pairs:

  • identifier – File Store ID of the data mapping configuration (type of number)

  • defaults (optional) – default properties for Content Creation, consisting of an object with one or more name/value pairs:

    • duplex – whether the page sheet is duplex (type of boolean). Default: false.

    • tumble – whether to duplex pages as in a calendar (type of boolean). This requires duplex to be set to true. Default: false.

  • parameters (optional) – a set of runtime parameter names and their corresponding values, used in the data mapping configuration. The set consists of an object with one or more name/value pairs:

    • <name> – the name (name) and the value of the runtime parameter (type of either string, number, or boolean)

Example

The following is an example of this structure:

{
	"identifier": 12345,
	"defaults": {
		"duplex": "true",
		"tumble": "true"
	}
}