Format integration data in FireForm

On this page:


Overview

Depending on the element type, FireForm data sent through integrations can be parsed out in various ways. This is useful when you need data to be formatted a certain way at your integration's end point. Below are the various ways you can format some of the most used element types before you display them.

Note:
For many of the element types, you can use an @Array tag to put the data into an array. Using the @Array tag places the string in array brackets. For lists that contain values delimited by a semicolon, the values will be split into individual elements in the array.

Form Entry metadata

You can parse out "Form Entry" metadata collected by FireForm in various ways, including by name, email address, UID, and username.

Raw data Output
"form_entry_FirstName" : "{FormEntry.FirstName}"
"form_entry_FirstName" : "Jane"
"form_entry_LastName" : "{FormEntry.LastName}"
"form_entry_LastName" : "Doe"
"form_entry_EmailAddress" : "{FormEntry.EmailAddress}"
"form_entry_EmailAddress" : "jdoe@iu.edu"
"form_entry_UID" : "{FormEntry.UID}"
"form_entry_UserName" : "jdoe"
"form_entry_UserName_array" : "{FormEntry.UserName@Array}"
"form_entry_UserName_array" : ["jdoe"]

People Picker

You can parse out "People Picker" data to pull username, UID, or both.

Raw data Output
"people_picker_object" : "{Element_3}"
"people_picker_object" : "jdoe"
"people_picker_object_uid" : "{Element_3:UID}"
"people_picker_object_uid" : "[redacted]"
"people_picker_object_array" : "{Element_3@Array}"
"people_picker_object_array" : ["jdoe"]

Person Content Display

You can parse out "Person Content Display" data to include all of the data, or just name data.

Raw data Output
"selected_person_object" : "{Element_5}"
{
"FirstName":"Jane",
"LastName":"Doe",
"MiddleName":"Mary",
"EmailAddress":"jdoe@iu.edu",
"UserName":"jdoe",
"UID":"[redacted]"
}
"people_picker_object_uid" : "{Element_3:UID}"
"people_picker_object_uid" : "[redacted]"
"people_picker_object_array" : "{Element_3@Array}"
"people_picker_object_array" : ["jdoe"]

Checkboxes, radio buttons, and dropdown elements

Checkboxes, radio buttons, and dropdown elements can be presented as the selected item or as an array.

Checkboxes

Checkboxes can be either the selected values or the selected values as an array.

Raw data Output
"checkboxes" : "{Element_1}"
"checkboxes" : "Apples;Pears;user_entered"
"checkboxes_array" : "{Element_1@Array}"
"checkboxes_array" : ["Apples","Pears","user_entered"]

Checkboxes (integrated)

Checkboxes (integrated) can be the selected values, the integration id, and/or the selected values as an array.

Raw data Output
"checkbox_integrated" : "{Element_20}"
"checkbox_integrated" : "12-Clinton;13-Crawford;14-Daviess"
"checkbox_integrated_id" : "{Element_20:IDElement}"
"checkbox_integrated_id" : "12;13;14"
"checkbox_integrated_label" : "{Element_20:LabelElement}"
"checkbox_integrated_label" : "Clinton;Crawford;Daviess",
"checkbox_integrated_array" : "{Element_20@Array}"
"checkbox_integrated_array" : ["12-Clinton","13-Crawford","14-Daviess"]
"checkbox_integrated_id_array" : "{Element_20:IDElement@Array}"
"checkbox_integrated_id_array" : ["12","13","14"]
"checkbox_integrated_label_array" : "{Element_20:LabelElement@Array}"
"checkbox_integrated_label_array" : ["Clinton","Crawford","Daviess"]

Radio buttons

Radio buttons can be either the selected value or the selected value as an array.

Raw data Output
"radiobuttons" : "{Element_6}"
"radiobuttons" : "Red"
"radiobuttons_array" : "{Element_6@Array}"
"radiobuttons_array" : ["Red"]

Dropdown elements can be either the selected value or the selected value as an array.

Raw data Output
"dropdown" : "{Element_7}"
"dropdown" : "Mystery"
"dropdown_array" : "{Element_7@Array}"
"dropdown_array" : ["Mystery"]

Dropdown (integrated) elements

Dropdown (integrated) elements can be either the selected value, the integration id, and/or the selected value as an array.

Raw data Output
"dropdown_integrated" : "{Element_21}"
"dropdown_integrated" : "4-Benton"
"dropdown_integrated_id" : "{Element_21:IDElement}"
"dropdown_integrated_id" : "4"
"dropdown_integrated_label" : "{Element_21:LabelElement}"
"dropdown_integrated_label" : "Benton"
"dropdown_integrated_array" : "{Element_21@Array}"
"dropdown_integrated_array" : ["4-Benton"]
"dropdown_integrated_id_array" : "{Element_21:IDElement@Array}"
"dropdown_integrated_id_array" : ["4"]
"dropdown_integrated_label_array" : "{Element_21:LabelElement@Array}"
"dropdown_integrated_label_array" : ["Benton"]

Multi-select dropdown (integrated) elements

Multi-select dropdown (integrated) elements can be the selected values, their id, and/or the selected value as an array.

Raw data Output
"multi-select_dropdown_integrated" : "{Element_18}"
"multi-select_dropdown_integrated" : "4-Benton;11-Clay"
"multi_select_dropdown_integrated_id" : "{Element_18:IDElement}"
"multi_select_dropdown_integrated_id" : "4;11"
"multi_select_dropdown_integrated_label" : "{Element_18:LabelElement}"
"multi_select_dropdown_integrated_label" : "Benton;Clay"
"multi_select_dropdown_integrated_array" : "{Element_18@Array}"
"multi_select_dropdown_integrated_array" : ["4-Benton","11-Clay"]
"multi_select_dropdown_integrated_id_array" : "{Element_18:IDElement@Array}"
"multi_select_dropdown_integrated_id_array" : ["4","11"]
"multi_select_dropdown_integrated_label_array" : "{Element_18:LabelElement@Array}"
"multi_select_dropdown_integrated_label_array" : ["Benton","Clay"]

Pivot Sets

Pivot Sets can have their results displayed as the selection by the user or as an array with the user's selections.

Raw data Output
"pivotsets_object_value" : "{Element_8}"
"pivotsets_object_value" : "Flowering Dogwood"
"pivotsets_light_needs" : "{Element_8:light_needs}"
"pivotsets_light_needs" : "full sun, partial shade"
"pivotsets_light_needs_array" : "{Element_8:light_needs@Array}"
"pivotsets_light_needs_array" : ["full sun"," partial shade"]
"pivotsets_mature_height" : "{Element_8:mature_height}"
"pivotsets_mature_height" : "15-30 feet"

Numbers (integers)

Integers can be displayed as the number provided, a formatted version of the values, or an array containing the values.

Raw data Output
"integer" : "{Element_12}"
"integer" : "123"
"integer_formatted" : "{Element_12@Number:0,0.00}"
"integer_formatted" : "123.00"
"integer_array" : "{Element_12@Array}"
"integer_array" : ["123"]

Numbers (decimals)

Decimals can be displayed as their default value, a formatted version of the number, or as an array containing the value.

Raw data Output
"decimal" : "{Element_13}"
"decimal" : "123.65"
"decimal_formatted" : "{Element_13@Number:0,0.00}"
"decimal_formatted" : "123.65"
"decimal_array" : "{Element_13@Array}"
"decimal_array" : ["123.65"]

Currency

Currency elements can be displayed as the value entered, a formatted version of the value entered, or an array containing the value entered.

Raw data Output
"currency" : "{Element_11}"
"currency" : "$123.65"
"currency_formatted" : "{Element_11@Currency:00.00}"
"currency_formatted" : "$123.65"
"currency_array" : "{Element_11@Array}"
"currency_array" : ["$123.65"]

Payment

Raw data Output
"payment_basic_dd_object" : "{Element_14}"
"payment_basic_dd_object" : "[{"Name":"Sale Item 1","Amount":5.00}]"
"payment_basic_cb_object" : "{Element_15}"
"payment_basic_cb_object" : "[{"Name":"Sale Item 1","Amount":2.00},{"Name":"Sale Item 2","Amount":4.00}]"

Payment Freeform

Raw data Output
"payment_freeform_object" : "{Element_1}"
"payment_freeform_object" : "$123.65"
"payment_freeform_object_formatted" : "{Element_16@Number:0,0.00}"
"payment_freeform_object_formatted" : "$123.65"
"payment_freeform_object_array" : "{Element_16@Array}"
"payment_freeform_object_array" : ["$123.65"]

Text (integrated)

Text (integrated) element types can be displayed as the value submitted, the integration id, or an array which can include either or both.

Raw data Output
"text_integrated" : "{Element_17}"
"text_integrated" : "2-Allen"
"text_integrated_id" : "{Element_17:IDElement}"
"text_integrated_id" : "2"
"text_integrated_label" : "{Element_17:LabelElement}"
"text_integrated_label" : "Allen"
"text_integrated_array" : "{Element_17@Array}"
"text_integrated_array" : ["2-Allen"]
"text_integrated_id_array" : "{Element_17:IDElement@Array}"
"text_integrated_id_array" : ["2"]
"text_integrated_label_array" : "{Element_17:LabelElement@Array}"
"text_integrated_label_array" : ["Allen"]

Smart Text (integrated)

Smart Text (integrated) element types can be displayed as the value submitted, the integration ids, or an array which can include either or both.

Raw data Output
"smarttext_integrated" : "{Element_19}"
"smarttext_integrated" : "20-Elkhart;53-Monroe"
"smarttext_integrated_id" : "{Element_19:IDElement}"
"smarttext_integrated_id" : "20;53"
"smarttext_integrated_label" : "{Element_19:LabelElement}"
"smarttext_integrated_label" : "Elkhart;Monroe"
"smarttext_integrated_array" : "{Element_19@Array}"
"smarttext_integrated_array" : ["20-Elkhart","53-Monroe"]
"smarttext_integrated_id_array" : "{Element_19:IDElement@Array}"
"smarttext_integrated_id_array" : ["20","53"]
"smarttext_integrated_label_array" : "{Element_19:LabelElement@Array}"
"smarttext_integrated_label_array" : ["Elkhart","Monroe"]

Dynamic Content

Dynamic Content elements can be displayed as the values of the Dynamic Content or the Dynamic Content values can be displayed as an array.

Raw data Output
"dynamic_content_integrated" : "{Element_40}"
"dynamic_content_integrated": 
"County:Adams;County
Code:1|County:Allen;County
Code:2|County:Bartholomew;County
Code:3|County:Benton;County
Code:4|County:Blackford;County
Code:5|County:Boone;County
Code:6|County:Brown;County
Code:7|County:Carroll;County
Code:8|County:Cass;County
Code:9|County:Clark;County
Code:10|County:Clay;County
Code:11|County:Clinton;County
Code:12|County:Crawford;County
Code:13|County:Daviess;County
Code:14|County:Dearborn;County
Code:15|County:Decatur;County
Code:16|County:DeKalb;County
Code:17|County:Delaware;County
Code:18|County:Dubois;County
Code:19|County:Elkhart;County
Code:20|County:Monroe;County Code:53"
"dynamic_content_integrated_array" : "{Element_40@Array}"
"dynamic_content_integrated_array": 
"County:Adams;County
Code:1|County:Allen;County
Code:2|County:Bartholomew;County
Code:3|County:Benton;County
Code:4|County:Blackford;County
Code:5|County:Boone;County
Code:6|County:Brown;County
Code:7|County:Carroll;County
Code:8|County:Cass;County
Code:9|County:Clark;County
Code:10|County:Clay;County
Code:11|County:Clinton;County
Code:12|County:Crawford;County
Code:13|County:Daviess;County
Code:14|County:Dearborn;County
Code:15|County:Decatur;County
Code:16|County:DeKalb;County
Code:17|County:Delaware;County
Code:18|County:Dubois;County
Code:19|County:Elkhart;County
Code:20|County:Monroe;County Code:53"

File Attachment

File Attachment elements can be formatted to display the attachment name, the file extension, and/or the file size.

Raw data Output
"file_attachment_name" : "{Element_22}"
"file_attachment_name" : "Indiana_county_numbers_names.pdf"
"file_attachment_file_extension" : "{Element_22:FileExtension}"
"file_attachment_file_extension" : ".pdf"
"file_attachment_file_size" : "{Element_22:FileSize}"
"file_attachment_file_size" : "73027"

Text (Short)

Text (Short) can display the element values as input, as an array, or you can use escape JSON to format the text.

Raw data Output
"text_short": "{Element_23}"
"text_short": "This is a short text example"
"text_short_escape": "{Element_23@escape-json}"
"text_short_escape": "This is a short text example"
"text_short_array": "{Element_23@Array}"
"text_short_array": ["This is a short text example"]

Text (Long)

Text (Long) can display the element values as input, as an array, or you can use escape JSON to format the text.

Raw data Output
"text_long": "{Element_24}"
"text_long": "This is a long text example - how is the encoding? ~!@#$%^&*()_+`[]\{}|;':",./<>?"
"text_long_escape": "{Element_24@escape-json}"
"text_long_escape": "This is a long text example - how is the encoding? \r\n\r\n~!@#$%^&*()_+`[]\\{}|;':\",./<>?"
"text_long_array": "{Element_24@Array}"
"text_long_array": ["This is a long text example - how is the encoding? ~!@#$%^&*()_+`[]\{}|;':",./<>?"]

Phone Types

Phone and Phone International element types can be formatted to display the phone number input and/or whether it is a domestic or international phone number.

Raw data Output
"phone_us_only": "{Element_25}"
"phone_us_only": "123-456-7890"
"phone_us_type": "{Element_25:PhoneNumberType}"
"phone_us_type": "US"
"phone_international_only": "{Element_26}"
"phone_international_only": "+123456789012345"
"phone_international_type": "{Element_26:PhoneNumberType}"
"phone_international_type": "International"
"phone_both": "{Element_27}"
"phone_both": "123-456-7890"

Address Types

Address element types can have their data presented as the full address and/or the address type (US or International).

Raw data Output
"address_us_only": "{Element_28}"
"address_us_only": "{"AddressType":"US","Attention":null,"AddressLine1":"1234
Line 1","AddressLine2":"9876 Line 2","AddressLine3":null,"City":"Test
City","State":"Arizona","ZipCode":"12345-6789","Country":"United States"}"
"address_us_type": "{Element_28:AddressType}"
"address_us_type": "US"
"address_international_only": "{Element_29}"
"address_international_only":
"{"AddressType":"International","Attention":null,"AddressLine1":"1234 Line
1","AddressLine2":"9876 Line 2","AddressLine3":"4569 Line
3","City":null,"State":null,"ZipCode":null,"Country":"Saint Barthelemy"}"
"address_both": "{Element_30}"
"address_both": "{"AddressType":"US","Attention":"Test
User","AddressLine1":"1234 Line 1","AddressLine2":"9876 Line
2","AddressLine3":null,"City":"Test
City","State":"Colorado","ZipCode":"12345-6789","Country":"United States"}"

Statements

Raw data Output
"statement_major" : "{Element_35}"
"statement_major" : "This is a statement which I would like to emphasize."
"statement_minor" : "{Element_36}"
"statement_minor" : "This is a statement which has not been emphasized."

Date and Date + Time

The Date and Date + Time elements can display the information in different formats.

Raw data Output
"date": "{Element_31}"
"08/10/2023"
"date_formatted": "{Element_31@Date:dddd, MMMM dd}"
"Thursday, August 10"
"date_time": "{Element_32}"
"08/10/2023 12:45 PM"
"date_time_formatted": "{Element_32@Date:yyyy/MM/dd HH:mm:ss}"
"2023/08/10 12:45:00"

Yes/No

Values can be displayed as "Yes"/"No", "True"/"False", or "1"/"0" pairs.

Raw data Output
"yes_no": "{Element_20}"
"Yes"
"yes_no_true_false": "{Element_20@Boolean:s}"
"true"
"yes_no_1_0": "{Element_20@Boolean:n}"
"1"

Raw data example

{
"submitted_person_object" : "{Element_2}",
"submitted_person_FirstName" : "{Element_2:FirstName}",
"submitted_person_LastName" : "{Element_2:LastName}",
"submitted_person_EmailAddress" : "{Element_2:EmailAddress}",
"submitted_person_UserName" : "{Element_2:UserName}",
"submitted_person_UID" : "{Element_2:UID}",
"submitted_person_UserName_array" : "{Element_2:UserName@Array}",
"people_picker_object" : "{Element_3}",
"people_picker_object_uid" : "{Element_3:UID}",
"people_picker_object_array" : "{Element_3@Array}",
"selected_person_object" : "{Element_5}",
"selected_person_Name" : "{Element_5:LastName}, {Element_5:FirstName}",
"selected_person_UserName_array" : "{Element_5:UserName@Array}",
"checkboxes" : "{Element_1}",
"checkboxes_array" : "{Element_1@Array}",
"radiobuttons" : "{Element_6}",
"radiobuttons_array" : "{Element_6@Array}",
"dropdown" : "{Element_7}",
"dropdown_array" : "{Element_7@Array}",
"pivotsets_object" : "{Element_8}",
"pivotsets_light_needs" : "{Element_8:light_needs}",
"pivotsets_light_needs_array" : "{Element_8:light_needs@Array}",
"pivotsets_mature_height" : "{Element_8:mature_height}",
"integer" : "{Element_12}",
"integer_formatted" : "{Element_12@Number:0,0.00}",
"integer_array" : "{Element_12@Array}",
"decimal" : "{Element_13}",
"decimal_formatted" : "{Element_13@Number:0,0.00}",
"decimal_array" : "{Element_13@Array}",
"currency" : "{Element_11}",
"currency_formatted" : "{Element_11@Currency:00.00}",
"currency_array" : "{Element_11@Array}",
"payment_basic_dd_object" : "{Element_14}",
"payment_basic_cb_object" : "{Element_15}",
"payment_freeform_object" : "{Element_16}",
"text_integrated" : "{Element_17}",
"text_integrated_id" : "{Element_17:IDElement}",
"text_integrated_label" : "{Element_17:LabelElement}",
"text_integrated_array" : "{Element_17@Array}",
"text_integrated_id_array" : "{Element_17:IDElement@Array}",
"text_integrated_label_array" : "{Element_17:LabelElement@Array}",
"dropdown_integrated" : "{Element_21}",
"dropdown_integrated_id" : "{Element_21:IDElement}",
"dropdown_integrated_label" : "{Element_21:LabelElement}",
"dropdown_integrated_array" : "{Element_21@Array}",
"dropdown_integrated_id_array" : "{Element_21:IDElement@Array}",
"dropdown_integrated_label_array" : "{Element_21:LabelElement@Array}",
"multi-select_dropdown_integrated" : "{Element_18}",
"multi_select_dropdown_integrated_id" : "{Element_18:IDElement}",
"multi_select_dropdown_integrated_label" : "{Element_18:LabelElement}",
"multi_select_dropdown_integrated_array" : "{Element_18@Array}",
"multi_select_dropdown_integrated_id_array" : "{Element_18:IDElement@Array}",
"multi_select_dropdown_integrated_label_array" : "{Element_18:LabelElement@Array}",
"smarttext_integrated" : "{Element_19}",
"smarttext_integrated_id" : "{Element_19:IDElement}",
"smarttext_integrated_label" : "{Element_19:LabelElement}",
"smarttext_integrated_array" : "{Element_19@Array}",
"smarttext_integrated_id_array" : "{Element_19:IDElement@Array}",
"smarttext_integrated_label_array" : "{Element_19:LabelElement@Array}",
"checkbox_integrated" : "{Element_20}",
"checkbox_integrated_id" : "{Element_20:IDElement}",
"checkbox_integrated_label" : "{Element_20:LabelElement}",
"checkbox_integrated_array" : "{Element_20@Array}",
"checkbox_integrated_id_array" : "{Element_20:IDElement@Array}",
"checkbox_integrated_label_array" : "{Element_20:LabelElement@Array}",
"dynamic_content_integrated" : "{Element_40}",
"dynamic_content_integrated_array" : "{Element_40@Array}",
"file_attachment_name" : "{Element_22}",
"file_attachment_file_extension" : "{Element_22:FileExtension}",
"file_attachment_file_size" : "{Element_22:FileSize}",
"text_short": "{Element_23}",
"text_short_escape": "{Element_23@escape-json}",
"text_short_array": "{Element_23@Array}",
"text_long": "{Element_24}",
"text_long_escape": "{Element_24@escape-json}",
"text_long_array": "{Element_24@Array}",
"phone_us_only": "{Element_25}",
"phone_us_type": "{Element_25:PhoneNumberType}",
"phone_international_only": "{Element_26}",
"phone_international_type": "{Element_26:PhoneNumberType}",
"phone_both": "{Element_27}",
"address_us_only": "{Element_28}",
"address_us_type": "{Element_28:AddressType}",
"address_international_only": "{Element_29}",
"address_both": "{Element_30}",
"kfs_account": "{Element_34}",
"statement_major" : "{Element_35}",
"statement_minor" : "{Element_36}",
"agreement" : "{Element_37}",
"pre-populated" : "{Element_38}",
"date": "{Element_31}",
"date_formatted": "{Element_31@Date:dddd, MMMM dd}",
"date_time": "{Element_32}",
"date_time_formatted": "{Element_32@Date:yyyy/MM/dd HH:mm:ss}",
"yes_no" : "{Element_33}",
"yes_no_true_false": "{Element_33@Boolean:s}",
"yes_no_1_0": "{Element_33@Boolean:n}"
}

Output example

Below is the output for the raw data example above.

{
"submitted_person_object" : "{"FirstName":"Jane","LastName":"Doe","MiddleName":"Mary","EmailAddress":"jdoe@iu.edu","UserName":"jdoe","UID":"[redacted]"}",
"submitted_person_FirstName" : "Jane",
"submitted_person_LastName" : "Doe",
"submitted_person_EmailAddress" : "jdoe@iu.edu",
"submitted_person_UserName" : "jdoe",
"submitted_person_UID" : "[redacted]",
"submitted_person_UserName_array" : ["jdoe"],
"people_picker_object" : "jdoe",
"people_picker_object_uid" : "[redacted]",
"people_picker_object_array" : ["jdoe"],
"selected_person_object" : "{"FirstName":"Jane","LastName":"Doe","MiddleName":"Mary","EmailAddress":"jdoe@iu.edu","UserName":"jdoe","UID":"[redacted]"}",
"selected_person_Name" : "Doe, Jane",
"selected_person_UserName_array" : ["jdoe"],
"checkboxes" : "Apples;Pears;user_entered",
"checkboxes_array" : ["Apples","Pears","user_entered"],
"radiobuttons" : "Red",
"radiobuttons_array" : ["Red"],
"dropdown" : "Mystery",
"dropdown_array" : ["Mystery"],
"pivotsets_object" : "Flowering Dogwood",
"pivotsets_light_needs" : "full sun, partial shade",
"pivotsets_light_needs_array" : ["full sun"," partial shade"],
"pivotsets_mature_height" : "15-30 feet",
"integer" : "123",
"integer_formatted" : "123.00",
"integer_array" : ["123"],
"decimal" : "123.65",
"decimal_formatted" : "123.65",
"decimal_array" : ["123.65"],
"currency" : "$123.65",
"currency_formatted" : "$123.65",
"currency_array" : ["$123.65"],
"payment_basic_dd_object" : "[{"Name":"Sale Item 1","Amount":5.00}]",
"payment_basic_cb_object" : "[{"Name":"Sale Item 1","Amount":2.00},{"Name":"Sale Item 2","Amount":4.00}]",
"payment_freeform_object" : "$123.65",
"payment_freeform_object_formatted" : "$123.65",
"payment_freeform_object_array" : ["$123.65"],
"text_integrated" : "2-Allen",
"text_integrated_id" : "2",
"text_integrated_label" : "Allen",
"text_integrated_array" : ["2-Allen"],
"text_integrated_id_array" : ["2"],
"text_integrated_label_array" : ["Allen"],
"dropdown_integrated" : "4-Benton",
"dropdown_integrated_id" : "4",
"dropdown_integrated_label" : "Benton",
"dropdown_integrated_array" : ["4-Benton"],
"dropdown_integrated_id_array" : ["4"],
"dropdown_integrated_label_array" : ["Benton"],
"multi-select_dropdown_integrated" : "4-Benton;11-Clay",
"multi_select_dropdown_integrated_id" : "4;11",
"multi_select_dropdown_integrated_label" : "Benton;Clay",
"multi_select_dropdown_integrated_array" : ["4-Benton","11-Clay"],
"multi_select_dropdown_integrated_id_array" : ["4","11"],
"multi_select_dropdown_integrated_label_array" : ["Benton","Clay"],
"smarttext_integrated" : "20-Elkhart;53-Monroe",
"smarttext_integrated_id" : "20;53",
"smarttext_integrated_label" : "Elkhart;Monroe",
"smarttext_integrated_array" : ["20-Elkhart","53-Monroe"],
"smarttext_integrated_id_array" : ["20","53"],
"smarttext_integrated_label_array" : ["Elkhart","Monroe"],
"checkbox_integrated" : "12-Clinton;13-Crawford;14-Daviess",
"checkbox_integrated_id" : "12;13;14",
"checkbox_integrated_label" : "Clinton;Crawford;Daviess",
"checkbox_integrated_array" : ["12-Clinton","13-Crawford","14-Daviess"],
"checkbox_integrated_id_array" : ["12","13","14"],
"checkbox_integrated_label_array" : ["Clinton","Crawford","Daviess"],
"dynamic_content_integrated" : "County:Adams;County Code:1|County:Allen;County Code:2|County:Bartholomew;County Code:3|County:Benton;County Code:4|County:Blackford;County Code:5|County:Boone;County Code:6|County:Brown;County Code:7|County:Carroll;County Code:8|County:Cass;County Code:9|County:Clark;County Code:10|County:Clay;County Code:11|County:Clinton;County Code:12|County:Crawford;County Code:13|County:Daviess;County Code:14|County:Dearborn;County Code:15|County:Decatur;County Code:16|County:DeKalb;County Code:17|County:Delaware;County Code:18|County:Dubois;County Code:19|County:Elkhart;County Code:20|County:Monroe;County Code:53",
"dynamic_content_integrated_array" : ["County:Adams;County Code:1|County:Allen;County Code:2|County:Bartholomew;County Code:3|County:Benton;County Code:4|County:Blackford;County Code:5|County:Boone;County Code:6|County:Brown;County Code:7|County:Carroll;County Code:8|County:Cass;County Code:9|County:Clark;County Code:10|County:Clay;County Code:11|County:Clinton;County Code:12|County:Crawford;County Code:13|County:Daviess;County Code:14|County:Dearborn;County Code:15|County:Decatur;County Code:16|County:DeKalb;County Code:17|County:Delaware;County Code:18|County:Dubois;County Code:19|County:Elkhart;County Code:20|County:Monroe;County Code:53"],
"file_attachment_name" : "Indiana_county_numbers_names.pdf",
"file_attachment_file_extension" : ".pdf",
"file_attachment_file_size" : "73027",
"text_short": "This is a short text example",
"text_short_escape": "This is a short text example",
"text_short_array": ["This is a short text example"],
"text_long": "This is a long text example - how is the encoding? 
~!@#$%^&*()_+`[]\{}|;':",./<>?",
"text_long_escape": "This is a long text example - how is the encoding? \r\n\r\n~!@#$%^&*()_+`[]\\{}|;':\",./<>?",
"text_long_array": ["This is a long text example - how is the encoding? 
~!@#$%^&*()_+`[]\{}|;':",./<>?"],
"phone_us_only": "123-456-7890",
"phone_us_type": "US",
"phone_international_only": "+123456789012345",
"phone_international_type": "International",
"phone_both": "123-456-7890",
"address_us_only": "{"AddressType":"US","Attention":null,"AddressLine1":"1234 Line 1","AddressLine2":"9876 Line 2","AddressLine3":null,"City":"Test City","State":"Arizona","ZipCode":"12345-6789","Country":"United States"}",
"address_us_type": "US",
"address_international_only": "{"AddressType":"International","Attention":null,"AddressLine1":"1234 Line 1","AddressLine2":"9876 Line 2","AddressLine3":"4569 Line 3","City":null,"State":null,"ZipCode":null,"Country":"Saint Barthelemy"}",
"address_both": "{"AddressType":"US","Attention":"Test User","AddressLine1":"1234 Line 1","AddressLine2":"9876 Line 2","AddressLine3":null,"City":"Test City","State":"Colorado","ZipCode":"12345-6789","Country":"United States"}",
"kfs_account": "1912400",
"statement_major" : "This is a statement which I would like to emphasize.",
"statement_minor" : "This is a statement which has not been emphasized.",
"agreement" : "Agreed:This is an agreement I have to agree to",
"pre-populated" : "Here is my test text for pre-poulated field",
"date": "08/10/2023",
"date_formatted": "Thursday, August 10",
"date_time": "08/10/2023 12:45 PM",
"date_time_formatted": "2023/08/10 12:45:00",
"yes_no" : "Yes",
"yes_no_true_false": "true",
"yes_no_1_0": "1"
}

This is document biyi in the Knowledge Base.
Last modified on 2024-05-30 09:52:15.