Data Syntax

Content Configuration can be graphic, barcode, number, date, or text. Syntax can be used to reference a variable data and also support conditional inclusion logic.

The variable data identifiers used in the referenced tags are defined in the Package Version Configuration's Assembly Template as Fields. In order to use Fields, as a Content author you must be familiar with the purpose of the Fields.

Assembly Template Reference

Data in the source file may not be formatted in the desired presentation format. The data "markers" may contain an optional "format" attribute which will adjust the incoming data to match the desired presentation format.

Example:
<comms-data>$Data{"Id":"Premium","Type":"Decimal","Format":"($#,##0.00)"}</comms-data>
<comms-data>$Data {"Id":"PolicyExpiry","Type":"Date","Format":"MM-dd-yyyy"}</comms-data>

The content may contain "markers" that indicate places where data will be substituted for the markers. The marker is expressed as an HTML custom tag: <comms-data/> that contains a JSON object named "$Data". The JSON $Data object has an Id attribute. The Id attribute is the name of the Field defined in the Assembly Template.

Example:

<comms-data>$Data{"Id":"OwnerName"}</comms-data>
<comms-data>$Data{"Id":"CancelledCheque", "Type":"Image"}</comms-data>
 <comms-data>$Data{"Id":"PaymentInfo", "Barcode":"QR"}</comms-data>