Formatting Date and Time
Data Syntax
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":"PolicyHolder"}</comms-data>
Presentation Formatting
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":"PolicyExpiry","Type":"Date","Format":"MM-dd-yyyy"}</comms-data>
Date Formatting
- Data
JSON does not support a date type. Data must be provided as a string value. It must be in the format of yyyy-MM-dd following the ISO standard where the first four characters are year followed by a dash followed by 2-digit month followed by a dash followed by 2-digit day. If the incoming 'date' is not in this pattern the subsequent 'format' attribute will be ignored and the data will be displayed as provided.
- Masking Characters
Mask | Purpose | Special Conditions & Notes |
---|---|---|
M | Displays the month as a number without a leading zero. | |
MM | Displays the month as a number with a leading zero when appropriate. | |
MMM | Displays the month as an abbreviation (Jan to Dec). | First letter capitalized. |
MMMM | Displays the month as a full name (January to December). | First letter capitalized. |
MMMMM | Displays the month as a single letter (J to D). | First letter capitalized. |
d | Displays the day as a number without a leading zero. | |
dd | Displays the day as a number with a leading zero when appropriate. | |
E | Displays the day of week as an abbreviation (Sun to Sat). | First letter capitalized. |
EEEE | Displays the day of week as a full name (Sunday to Saturday). | First letter capitalized. |
EEEEE | Displays the day of week as a single letter (S to S). | First letter capitalized. |
yy | Displays the year as a two-digit number. | |
yyyy | Displays the year as a four-digit number. |
Note:
Any other non-numeric character within the mask will be treated as a string literal unless listed below.The following existing numeric masks will also apply in the same manner as previously described when mingled with date masks.
Mask | Purpose | Special Conditions & Notes |
---|---|---|
'text' | Any alphanumeric strings between two single quotes will be displayed verbatim |
This is a variation from similar patterns which requires double quotes. The variation is adopted to facilitate JSON and HTML syntax that is being used. Note: Any non-numeric character within the mask will be treated as a string literal unless listed as a "special character" in this list. |
Note:
Additional masking characters defined at in the Numeric section do not apply to date mask strings (e.g. #, ?, 0 have no special meaning).Examples
If date value in incoming data is 2021-01-23 the output for each format example is as follows:
Format Structure | Output |
---|---|
MM dd yyyy | 01 23 2021 |
MMMM | January |
MMMM dd | January 23 |
DateTime Format
DateTime
Communication Cloud Service supports "DateTime" type field. The input date timestamp feed must follow the ISO standard data format as shown in below table so that the Communication Cloud Service can apply the time formatting.
Following is the syntax to define time formatting functionality within a <comms-data> tag:
Syntax
<comms-data>$Data{"Id":"RequestDateTimeStamp",
"Type":"DateTime", "Format":"yyyy-MM-dd-'T'-HH-mm-ss-SSS
z"}</comms-data>
String Input Structure | Parsed as | Notes |
---|---|---|
####-##-##T##:##:##.#### | yyyy-MM-ddTHH:mm:ss.SSSZ | Communication Cloud Service supports only ISO standard data format. |
Masking Characters
DateTime format
Mask | Purpose | Special Conditions & Notes |
---|---|---|
H | Displays the hour as a number (1-24) without a leading zero | |
HH | Displays the hour as a number with a leading zero when appropriate (01-24) | |
h | Displays the hour as twelve hour clock (1-12) without leading zero as a number | |
hh | Displays twelve hour clock (01-12) with a leading zero when appropriate | |
m | Displays the minute as a number without a leading zero | |
mm | Displays the minute as a number with a leading zero when appropriate | |
s | Displays the second as a number without a leading zero | |
ss | Displays the second as a number with a leading zero when appropriate | |
S | Displays the millisecond as a number without a leading zero | |
SSS | Displays the millisecond as a number with a leading zero when appropriate | |
z | Displays the abbreviated time zone | Example: UTC |
zzzz | Displays the time zone name | Example: Coordinated Universal Time |
Z | Displays the zone-offset | Example: +HH:mm or - HH:mm +HH or -HH |
a | Displays the abbreviated 12 hour time format | Example: AM or PM |
O | Displays the localized zone-offset | Example: GMT+8 |
OOOO | Displays the localized zone-offset | Example: GMT+08:00 |
VV | Displays the time zone location information |
Example: America/New_York Note: Currently since only UTC ISO 8601 format is supported as a valid input so configuration of this mask must be in conjunction with "TimeZone" attribute only otherwise Communication Cloud Service will show up the offset information. Time Zone IDs |
Note:
Any other non-numeric character within the mask will be treated as a string literal.Examples
Following are some of the examples to illustrate how Communication Cloud Service formats the time data according to the defined configuration and the way how input is passed to the service:
Examples of DateTime
Input | Format | Output |
---|---|---|
2022-01-31T02:35:22:234Z | yyyy-MM-dd'T'-H-mm-ss-SSS z | 2022-01-31T-2-35-22-234 UTC |
2022-01-31T02:35:22:234Z | yyyy-MM-dd'T'-HH-mm-ss-SSS z | 2022-01-31T-02-35-22-234 UTC |
2022-01-31T22:05:22:234Z | yyyy-MM-dd'T'-HH-m-ss-SSS z | 2022-01-31T-22-5-22-234 UTC |
2022-01-31T22:05:22:234Z | yyyy-MM-dd'T'-HH-mm-ss-SSS z | 2022-01-31T-22 -05-22-234 UTC |
2022-01-31T22:35:02:234Z | yyyy-MM-dd'T'-HH-mm-s-SSS z | 2022-01-31T-23-35-2-234 UTC |
2022-01-31T22:35:02:234Z | yyyy-MM-dd'T'-HH-mm-ss-SSS z | 2022-01-31T-23-35-02-234 UTC |
2022-01-31T22:35:22:004Z | yyyy-MM-dd'T'-HH-mm-ss-Sz | 2022-01-31T-23-35-02-4UTC |
2022-01-31T22:35:22:004Z | yyyy-MM-dd'T'HH:mm';'ss:SSSz | 2022-01-31T23:35:02:004UTC |
2022-01-31T22:35:22:234Z | yyyy-MM-dd'T':HH-mm | 2022-01-31T:22-35 |
2022-01-31T22:35:22:234Z | yyyy-MM-dd'T'-HH-mm:SSS z | 2022-01-31T-23-35:234 UTC |
2022-01-31T02:05:22:234Z | yyyy-MM-dd'T':H:m:s:SSS z | 2022-01-31T:2:5:2:234 UTC |
2022-01-31T22:35:22:004Z | yyyy-MM-dd-'T'-HH-mm-ss-S | 2022-01-31-T-22-35-22-4 |
2022-01-31T22:35:22:004Z | yyyy-MM-dd-'T'-HH-mm-ss-SSS | 2022-01-31-T-22-35-22-004 |
2022-01-31T22:35:22:444Z | yyyy-MM-dd-'T'-H-m-s-S | 2022-01-31-T-22-35-22-444 |
2022-01-31T22:35:22:234Z | MMddyyyyHHmmSS | 01312022223522 |
2022/01/31T22:35:22:234Z | MMddyyyyHHmmSS | CCS throws an error since the input contains "/" symbol which is not an accepted one for parsing |
2023-01-31T11:35:26:234PST | yyyy-MM-dd'T'-HH-mm-ss-SSS z | CCS throws an error since the input contains PST wording which is not expected for parsing |
2022-01-31T22:05:22:234Z | yyyy-MM-dd'T'-HH-m-ss-SSS zzzz | 2022-01-31T-02-35-22-234 Universal Time Coordinated |
2022-01-31T22:35:22:234Z | yyyy-MM-dd'T'-H-m-s-SSS z | 2022-01-31T-22-35-22-234 UTC |
2022-01-31T22:35:22:234Z | yyyy-MM-dd HH:mm a | 2022-01-31 10:35 PM |
2022-01-31T22:35:22:234Z | yyyy-MM-dd HH:mm a Z | 2022-01-31T-02-35-22-234 +0000 |
{
"$$Id": "SamplePackage",
"Fields": [{
"Name": "InputTimeStamp",
"Path": "$.InputTimeStamp"
}]
}
Content: <comms-data>$Data{"Id":"InputTimeStamp", "Type":"DateTime", "Format":"MMM dd yyy HH' hrs 'mm' mins 'ss' seconds'"}</comms-data>
Preview Data: { "InputTimeStamp":"2024-04-17T04:22:58.175Z" }
Output: Apr 17 2024 04 hrs 22 mins 58 seconds
Content: <comms-data>$Data{"Id":"InputTimeStamp", "Type":"DateTime", "Format":"MMM dd yyyy'T'HH:mm VV", "TimeZone":"Libya"}
Preview Data: { "InputTimeStamp":"2024-04-17T04:22:58.175Z" }
Output: Apr 17 2024T06:22 Libya
Content: <comms-data>$Data{"Id":"InputTimeStamp", "Type":"DateTime", "Format":"yyyy-MM-dd'T'HH:mm:ss.SSSz"}</comms-data>
Preview Data: { "InputTimeStamp":"2024-04-17T04:22:58Z" }
Output: 2024-04-17T04:22:58.000Z