Understanding the Web to Lead Form Data Model
If you're integrating a Web to Lead form with Salesforce, it's important to understand the underlying data model that defines how information is captured and submitted. This guide explains the configuration points in the data structure and offers a quick-reference matrix for the fields to help you make informed decisions as you configure your form.
Steps to Export and Modify Your Form Data
Once you have a clear understanding of the data model, you can easily export the form schema and modify it as needed for your integration. Follow these steps to export and modify your form's schema:
-
Access the Form Schema:
Navigate to the form that you want to work with. Click the gear icon next to the form name to open the form's settings.
-
Export the Form Schema:
From the settings menu, select "Export Form Schema." This will display the complete data of the form in a structured format, typically in JSON.
-
Copy the Form Schema to Clipboard:
Once the form schema is displayed, you’ll see a "Copy to Clipboard" button. Click this button to copy the form’s data to your clipboard.
-
Edit the JSON Data:
Open your favorite code or text editor (such as Visual Studio Code, Notepad++, or Sublime Text). Paste the copied JSON data into the editor. Modify the JSON as required. You can add or remove fields, adjust configurations, and make other customizations based on your requirements.
-
Save Changes:
After making your desired changes, save the JSON file to your local system. You can now upload or integrate the updated JSON schema into your system or Salesforce.
Importing the Modified Form Data
Once you have made the necessary updates to your form's JSON data, follow these steps to import it back into the system:
-
Access the Form Settings:
- Navigate to the form you want to update.
- Click the gear icon next to the form name to open the settings.
-
Paste the Updated JSON:
- In the settings menu, look for the "Import Form Schema" option.
- Click to open the input window.
- Paste your modified JSON data into the text area.
-
Save and Apply Changes:
- Click the "Save" button.
- The form properties will update immediately based on the new data.
⚠ Important Note:
- Do not modify or change the
DomainId
—altering this value will prevent the import from working correctly. - Always verify your JSON structure before importing to ensure proper formatting.
Configuration Points in the Data Structure
FormSuccessMessage
Description: A message displayed to the user after successfully submitting the form. This message typically thanks the user for their submission or provides further instructions.
Example: Thank you for submitting your information!
FormButtonLabel
Description: The text label that appears on the form's submit button.
Example: Submit
FormOffLineMessage
Description: A message that displays when the form is taken offline by the administrator. This is useful for notifying users that the form is temporarily unavailable.
Example: The form is temporarily unavailable. Please try again later.
FormHeader
Description: A title message that appears at the top of the form (typically an <h1>
tag). This header should clearly communicate the purpose of the form to the user.
Example: Sign Up for Our Newsletter
FormFooter
Description: A footer message that appears at the bottom of the form. You can use this space for disclaimers, terms of service, or privacy policy links.
Example: By submitting, you agree to our Privacy Policy.
FormBackgroundColor
Description: The background color of the form. This can be any valid CSS color value.
Example: #ffffff (White)
FormFontColor
Description: The font color used for text in the form.
Example: #000000 (Black)
FormButtonColor
Description: The background color of the submit button.
Example: #4CAF50 (Green)
FormButtonTextColor
Description: The text color of the submit button.
Example: #ffffff (White)
FormButtonHoverColor
Description: The hover color for the submit button. This provides visual feedback when users hover over the button.
Example: #45a049 (Lighter Green)
FormHtmlEmbed
Description: A field for custom HTML that can be embedded into the form. This can be used for additional customization, such as embedding media or adding extra styling.
Example: null (or a string of HTML if used)
FormJavaScriptEmbed
Description: A field for custom JavaScript to enhance the form's behavior. This could be used for validations, additional form interactivity, or integrations with other services.
Example: null (or a string of JavaScript if used)
WebhookUrl
Description: The URL to which the form submits a webhook on successful form submission. This is used to send data to an external service after the form is submitted.
Example: https://example.com/webhook
SFObject
Description: The Salesforce object where the form data will be stored. The default is Lead, but this could be configured to store data in a custom Salesforce object.
Example: Lead
SendWebHook
Description: A boolean flag indicating whether a webhook should be sent after a form submission.
Example: false
UseCaptcha
Description: A boolean flag indicating whether a CAPTCHA should be used to prevent spam submissions.
Example: false
AllowUpload
Description: A boolean flag that indicates whether file uploads are allowed in the form.
Example: false
CheckforDups
Description: A boolean flag indicating whether the system should check for duplicate submissions based on certain criteria, such as email address or phone number.
Example: false
Quick Reference: Matrix of Configuration Fields
Field Name | Description | Example Value |
---|---|---|
FormId | Unique identifier for the form | FM5b776fb2-af79-4b28-82f8-7ced7e796d43 |
FormName | Name of the form | Lead Capture Form |
FormFields | List of fields associated with the form | See detailed field examples above |
FormSuccessMessage | Message displayed after successful submission | Thank you for submitting your information! |
FormButtonLabel | Label of the submit button | Submit |
FormOffLineMessage | Message when the form is offline | The form is temporarily unavailable. Please try again later. |
FormHeader | Title message at the top of the form | Sign Up for Our Newsletter |
FormFooter | Footer message at the bottom of the form | By submitting, you agree to our Privacy Policy. |
FormBackgroundColor | Background color of the form | #ffffff (White) |
FormFontColor | Font color of the text | #000000 (Black) |
FormButtonColor | Background color of the submit button | #4CAF50 (Green) |
FormButtonTextColor | Text color of the submit button | #ffffff (White) |
Sample Form record
{ "_id": { "$oid": "65c44af8d25f56edb4314dd4" }, "FormID": "FM-Your-FormID", "FormName": "My New Form", "DomainID": "DM-Your-DomainID", "ConnectionID": "C00581dc8-1c74-4d42-9b5d-2103916699d6", "Fields": [ { "ItemFieldID": "FLD720eb216-42fc-436d-adc8-91a1b2dd6a6b", "ItemFieldName": "Last Name", "ItemFieldSystemName": "LastName", "Options": "", "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": true, "UserRequired": true, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": "", "MaxLength": 80, "DisplayField": true }, { "ItemFieldID": "FLD92f2b593-3f9b-4b85-ad64-0af5533fb3b4", "ItemFieldName": "First Name", "ItemFieldSystemName": "FirstName", "Options": "", "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": "", "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD8325c3d9-9da7-4c8f-8ad1-d7c10cfa05c9", "ItemFieldName": "Salutation", "ItemFieldSystemName": "Salutation", "Options": "Mr.|Ms.|Mrs.|Dr.|Prof.|Mx.|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD124117e0-a728-493b-a114-f7f57e2f4ff2", "ItemFieldName": "Title", "ItemFieldSystemName": "Title", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 128, "DisplayField": false }, { "ItemFieldID": "FLDfbd13992-6e87-42c3-adf5-101e52f6395a", "ItemFieldName": "Company", "ItemFieldSystemName": "Company", "Options": "", "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": true, "UserRequired": true, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": "", "MaxLength": 255, "DisplayField": true }, { "ItemFieldID": "FLDafe6bc77-98b3-468d-9e4a-b15e81a77994", "ItemFieldName": "Street", "ItemFieldSystemName": "Street", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "textarea", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD1fe34abe-7a58-40d0-b0e3-cba057810170", "ItemFieldName": "City", "ItemFieldSystemName": "City", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD0d36e291-a39a-41d0-8d04-a78c1c182321", "ItemFieldName": "State/Province", "ItemFieldSystemName": "State", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 80, "DisplayField": false }, { "ItemFieldID": "FLDaccca114-3169-4287-bcfa-f503022a55b0", "ItemFieldName": "Zip/Postal Code", "ItemFieldSystemName": "PostalCode", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 20, "DisplayField": false }, { "ItemFieldID": "FLDebb6dfd8-7c51-4766-b86f-106806788e07", "ItemFieldName": "Country", "ItemFieldSystemName": "Country", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 80, "DisplayField": false }, { "ItemFieldID": "FLD9bf4ed4b-4cec-47f5-a4d0-70d25c132173", "ItemFieldName": "Latitude", "ItemFieldSystemName": "Latitude", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "double", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD504e3c1f-e04a-4c13-b7c8-a3ed2dd697e3", "ItemFieldName": "Longitude", "ItemFieldSystemName": "Longitude", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "double", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD37a16db8-8a2b-41dc-8d3b-20929b764198", "ItemFieldName": "Geocode Accuracy", "ItemFieldSystemName": "GeocodeAccuracy", "Options": "Address|Near Address|Block|Street|Extended Zip|Zip|Neighborhood|City|County|State|Unknown|", "OptionsRestricted": true, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD0e2748e9-1291-48b8-b6a5-690b93087d92", "ItemFieldName": "Phone", "ItemFieldSystemName": "Phone", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "phone", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD2e61c14a-9581-4ade-97d1-1947c9fd4a26", "ItemFieldName": "Mobile Phone", "ItemFieldSystemName": "MobilePhone", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "phone", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLDf39079c7-dce0-426a-80d3-8ff22e0bc525", "ItemFieldName": "Fax", "ItemFieldSystemName": "Fax", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "phone", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD5cce4ccc-4746-40cb-bd75-80f4c7c76ec0", "ItemFieldName": "Email", "ItemFieldSystemName": "Email", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "email", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 80, "DisplayField": false }, { "ItemFieldID": "FLDa9079e6e-6261-4c20-89f6-c4769a0b4e81", "ItemFieldName": "Website", "ItemFieldSystemName": "Website", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "url", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD3dcf945c-4a7b-4bc9-a957-5d3ce64a4891", "ItemFieldName": "Description", "ItemFieldSystemName": "Description", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "textarea", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 32000, "DisplayField": false }, { "ItemFieldID": "FLD760aeff6-4c76-4054-83cd-8185a9891f94", "ItemFieldName": "Lead Source", "ItemFieldSystemName": "LeadSource", "Options": "Web|Phone Inquiry|Partner Referral|Purchased List|Other|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLDe0767384-9e2a-4890-952b-8f1a67216706", "ItemFieldName": "Status", "ItemFieldSystemName": "Status", "Options": "Open - Not Contacted|Working - Contacted|Closed - Converted|Closed - Not Converted|", "OptionsRestricted": false, "Value": "Open - Not Contacted", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD218e39ff-1a5e-4adf-9678-cada678c6eaf", "ItemFieldName": "Industry", "ItemFieldSystemName": "Industry", "Options": "Agriculture|Apparel|Banking|Biotechnology|Chemicals|Communications|Construction|Consulting|Education|Electronics|Energy|Engineering|Entertainment|Environmental|Finance|Food & Beverage|Government|Healthcare|Hospitality|Insurance|Machinery|Manufacturing|Media|Not For Profit|Recreation|Retail|Shipping|Technology|Telecommunications|Transportation|Utilities|Other|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD4cfa82b7-5750-49b7-bec3-ae147dd356fc", "ItemFieldName": "Rating", "ItemFieldSystemName": "Rating", "Options": "Hot|Warm|Cold|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD5ebd67d5-eb3e-454e-bc79-5d31e9171bc7", "ItemFieldName": "Annual Revenue", "ItemFieldSystemName": "AnnualRevenue", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "currency", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLDeae6d5cb-7fdb-4e31-846c-baaed704f8c6", "ItemFieldName": "Employees", "ItemFieldSystemName": "NumberOfEmployees", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "int", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLDf1ba79d2-c219-4d90-ab67-ed234436fa74", "ItemFieldName": "Converted", "ItemFieldSystemName": "IsConverted", "Options": null, "OptionsRestricted": false, "Value": "False", "ItemType": "boolean", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD5b2a8caa-f8fd-4081-b933-b312a43d2bb7", "ItemFieldName": "Unread By Owner", "ItemFieldSystemName": "IsUnreadByOwner", "Options": null, "OptionsRestricted": false, "Value": "False", "ItemType": "boolean", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLDd19864b9-f3a4-4263-998b-1adbbb91617a", "ItemFieldName": "Data.com Key", "ItemFieldSystemName": "Jigsaw", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 20, "DisplayField": false }, { "ItemFieldID": "FLD0e338601-b014-4b3e-897b-27dc95593bbe", "ItemFieldName": "Clean Status", "ItemFieldSystemName": "CleanStatus", "Options": "In Sync|Different|Reviewed|Not Found|Inactive|Not Compared|Select Match|Skipped|", "OptionsRestricted": true, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 40, "DisplayField": false }, { "ItemFieldID": "FLD087e45d7-6ed9-4b7f-98e0-4fa4a7eabf73", "ItemFieldName": "Company D-U-N-S Number", "ItemFieldSystemName": "CompanyDunsNumber", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 9, "DisplayField": false }, { "ItemFieldID": "FLD89dd45ea-90e7-4341-98df-629458396616", "ItemFieldName": "SIC Code", "ItemFieldSystemName": "SICCode__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 15, "DisplayField": false }, { "ItemFieldID": "FLD62312f3c-ce84-4a50-a2a9-fafd1dcf7afe", "ItemFieldName": "Product Interest", "ItemFieldSystemName": "ProductInterest__c", "Options": "GC1000 series|GC5000 series|GC3000 series|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLD705aa891-5284-492a-acbd-5aefd6705b5c", "ItemFieldName": "Primary", "ItemFieldSystemName": "Primary__c", "Options": "No|Yes|", "OptionsRestricted": false, "Value": "", "ItemType": "picklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 255, "DisplayField": false }, { "ItemFieldID": "FLDbfa1144f-b68c-4a5d-8289-284e465e8bec", "ItemFieldName": "Current Generator(s)", "ItemFieldSystemName": "CurrentGenerators__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "string", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 100, "DisplayField": false }, { "ItemFieldID": "FLD5bc6fb89-e49e-42ff-8b73-10279a5f5741", "ItemFieldName": "Number of Locations", "ItemFieldSystemName": "NumberofLocations__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "double", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD1e2c6b7e-af3a-4219-a28c-337370e0f034", "ItemFieldName": "SourceofReferral", "ItemFieldSystemName": "SourceofReferral__c", "Options": "Web Search|Web Advertisement|Friend|Other|", "OptionsRestricted": true, "Value": "", "ItemType": "multipicklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 4099, "DisplayField": false }, { "ItemFieldID": "FLD00cf4d75-eb36-4d64-880e-06470686273a", "ItemFieldName": "Completion", "ItemFieldSystemName": "Completion__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "percent", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD94ef00e2-ae90-4a5f-a81b-a325b39b35a0", "ItemFieldName": "Active", "ItemFieldSystemName": "Active__c", "Options": null, "OptionsRestricted": false, "Value": "False", "ItemType": "boolean", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLDcd213895-572b-4d0d-9a42-abc6973288c7", "ItemFieldName": "Location (Latitude)", "ItemFieldSystemName": "Location__Latitude__s", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "double", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD68108e08-ce0a-4dd6-ad56-77a75a18a031", "ItemFieldName": "Location (Longitude)", "ItemFieldSystemName": "Location__Longitude__s", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "double", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD0df730cb-e595-4052-aa87-ff105821ba98", "ItemFieldName": "Notes", "ItemFieldSystemName": "Notes__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "textarea", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 32768, "DisplayField": false }, { "ItemFieldID": "FLD1881e1de-f096-4b4d-877e-3375a4e6e752", "ItemFieldName": "Time of Service", "ItemFieldSystemName": "Time_of_Service__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "time", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD42da8fdb-5e75-4ac7-af8c-be1d036e767d", "ItemFieldName": "DueDate", "ItemFieldSystemName": "DueDate__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "date", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD7c0ea329-c46b-467a-b5b0-f79807c0d53d", "ItemFieldName": "Date of Service", "ItemFieldSystemName": "DateofService__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "datetime", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLDd992d064-b676-45dc-8836-3e4ff609ecf5", "ItemFieldName": "Time of Encounter", "ItemFieldSystemName": "TimeofEncounter__c", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "time", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "FLD85a646ea-e694-4470-b1ba-2a7fd1c29a2a", "ItemFieldName": "Best Time to Speak", "ItemFieldSystemName": "BestTimetoSpeak__c", "Options": "Morning|Afternoon|Evening|", "OptionsRestricted": true, "Value": "", "ItemType": "multipicklist", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 4099, "DisplayField": false }, { "ItemFieldID": "FLD55a3c2a8-0e58-4a5c-af69-4d07046822c6", "ItemFieldName": "Subscribe", "ItemFieldSystemName": "Subscribe__c", "Options": null, "OptionsRestricted": false, "Value": "False", "ItemType": "boolean", "Required": false, "UserRequired": false, "Description": "", "SystemField": false, "SystemReadOnly": false, "Regexvalidator": "", "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": false }, { "ItemFieldID": "F6e065268-77ce-4c03-95f8-ec623ba3f828", "ItemFieldName": "File Attachment", "ItemFieldSystemName": "ext_FileUpload", "Options": null, "OptionsRestricted": false, "Value": null, "ItemType": "attachment", "Required": false, "UserRequired": false, "Description": "File Attachment field", "SystemField": true, "SystemReadOnly": false, "Regexvalidator": null, "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": true }, { "ItemFieldID": "Fcb2ca5fc-f4c7-4c36-a5c9-301b47c92842", "ItemFieldName": "Captcha Field", "ItemFieldSystemName": "ext_Captcha", "Options": null, "OptionsRestricted": false, "Value": "", "ItemType": "captcha", "Required": false, "UserRequired": false, "Description": "Allow Captcha - Show I am not a robot on your form", "SystemField": true, "SystemReadOnly": false, "Regexvalidator": null, "RegexvalidatorErrorMessage": null, "MaxLength": 0, "DisplayField": true } ], "Selectedfields": [ { "cardId": "FLD8325c3d9-9da7-4c8f-8ad1-d7c10cfa05c9", "formId": "FM-Your-FormID" }, { "cardId": "FLD720eb216-42fc-436d-adc8-91a1b2dd6a6b", "formId": "FM-Your-FormID" }, { "cardId": "FLD92f2b593-3f9b-4b85-ad64-0af5533fb3b4", "formId": "FM-Your-FormID" }, { "cardId": "FLDfbd13992-6e87-42c3-adf5-101e52f6395a", "formId": "FM-Your-FormID" }, { "cardId": "F6e065268-77ce-4c03-95f8-ec623ba3f828", "formId": "FM-Your-FormID" }, { "cardId": "Fcb2ca5fc-f4c7-4c36-a5c9-301b47c92842", "formId": "FM-Your-FormID" } ], "FormBody": null, "FormSuccessMessage": "Your submission has been received!", "FormOffLineMesage": "Sorry, This form is currently not available.", "FormHeader": "", "FormFooter": "", "FormBackgroundColor": "#ffffff", "FormFontColor": "", "FormButtonColor": "#1970e2", "FormButtonTextColor": "#ffffff", "FormButtonHoverColor": "#ffbf00", "FormHtmlEmbed": null, "FormJavaScriptEmbed": null, "WebhookUrl": "", "SFObject": "Lead", "FormSubmitButtonLabel": "Submit", "SendWebHook": false, "UseCapthcha": false, "AllowUpload": false, "CheckforDups": false, "Created": { "$date": "2024-02-08T03:30:50.871Z" }, "Updated": { "$date": "2024-12-03T03:41:03.045Z" }, "CreatedBy": "Demo 1/7/2024 9:01:33 PM", "UpdatedBy": "Demo User", "Active": true }