Fields Meta Data

Purpose

To get the field metadata for the specified module. The fields displayed are from all layouts for the module. The response does not contain layout-specific fields like mandatory fields or picklist values.

Request Details

Request URL

{api-domain}/crm/{version}/settings/fields?module={module_api_name}&type=unused

Supported modules

Leads, Accounts, Contacts, Deals, Campaigns, Tasks, Cases, Events, Calls, Solutions, Products, Vendors, Price Books, Quotes, Sales Orders, Purchase Orders, Invoices, Custom, Appointments, Service and Activities

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Scope

scope=ZohoCRM.settings.fields.READ
(or)
scope=ZohoCRM.settings.fields.ALL
(or)
scope=ZohoCRM.settings.ALL

Parameters

  • modulestring, mandatory

    Specify the API name of the required module. For example, Leads, Contacts, Accounts, Deals, and so on.

  • typestring, optional

    The value unused fetches all the unused fields and all fetches all both used and unused fields in the module. By default, the system fetches all the used fields.

  • includestring, optional

    The value allowed_permissions_to_update returns the JSON object "allowed_permissions" which gives the default permissions enabled for a field. Note that when you do not include this parameter in the request, the "allowed_permissions" JSON object is not included in the response.

Note

  • Use the api_name of the fields in all API inputs instead of field labels. This ensures that the label name changes in custom modules or fields won't affect your existing integrations.
  • The fields whose permission is set as Don't Show will also be fetched in the response.
  • The "full_name" field contains the concatenated values of the First Name and Last Name fields. 
    This is a read-only field available only in the Leads, Contacts, and Users modules.

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v6/settings/fields?module=Leads"
-X GET
-H  "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"

Response JSON Keys

  • associated_moduleJSON object

    Represents the module of the fields associated with the parent modules.

    • module(string)- Represents the module created for the subform or image upload or file upload fields.
    • id(string)- Represents the unique id of the module.
  • operation_typeJSON object

    Represents the possible source of data for the field

    • web_update(boolean)- Represents whether the field can be updated through web
    • api_create(boolean)- Represents whether the field can be created through api
    • web_created(boolean)- Represents whether the field can be created through web
    • api_update(boolean)- Represents whether the field can be updated through api
  • system_mandatoryboolean

    Represents if current field is a system-mandatory field.
    Possible values - true: The field is a system-mandatory field.
    false: The field is not a system-mandatory field.

  • privateJSON object

    Represents the details of compliance settings in your organization. For instance, "private": {
    "restricted": true,
    "type": "Low",
    "export": true
    }

    • restricted(boolean)- Represents if normal/sensitive data have restricted access when accessed via API.
    • export(boolean)- Represents if both normal/sensitive data have restricted access when accessed via export.
    • type(string)- Represents the type of restriction. The possible values are Low/High based on field configuration in the layout.
  • webhookboolean

    Represents if the field is supported in webhook.

  • virtual_fieldboolean

    Represents if the field is virtual. Virtual fields are those that are used for reference purposes in subforms, multi-select lookups, multi-user lookups, ISONLINE, FULL_NAME etc. These fields contain meta properties but do not have actual values.

  • json_typestring

    Represents the JSON type of the field. For instance, JSON object, string, etc,.

  • textareaJSON object

    Contains the details of the multiline field.

    • typestring 

      Represents the type of multiline field.
      Supported values : 

      • small supports up to 2000 characters.
      • large supports up to 32000 characters.
      • rich_text supports up to 50000 characters.
  • cryptJSON object

    Represents the status of the encryption. For instance: "crypt": {
    "mode": "encryption",
    "status": 1
    }
    The possible values for the "mode" key are: encryption, decryption;
    The possible values for the "status" key are:

    • 1 - Represents that the field is encrypted.
    • 2- Represents that the encryption/decryption for the field is in progress.

    The "null" value represents that the key is decrypted.

  • tooltipJSON object

    Represents the details of the tooltip (name and value), if the field has one.

  • created_sourcestring

    Represents the source of the filed. The possible values for this field are: default, extension, and integration.

  • display_labelstring

    The display name of the field. This field will not be translated to user's preferred language. For instance, Lead Owner.
    All display labels related to Events are renamed to Meetings.

  • field_labelstring

    The display name of the field in the user's preferred language. All field labels related to Events are renamed to Meetings.

  • field_read_onlyboolean

    Represents if the field is read-only always.
    Possible values - true: The field is always read-only.
    false: The field is not always a read-only field, it can be updated.

  • allowed_permissions_to_updateJSON Object

    Represents the default whether the user can read or edit the field, or if the field is hidden.
    The value "true" for the keyread-only represents that the user can only view the field.
    The value "true" for the key read-write represents that the user can edit the value of the field.
    The value "true" for the key hidden represents that the field is hidden from the user.

  • read_onlyboolean

    Represents if the field is read-only for the current user.
    Possible values - true: The field read-only for the current user.
    false: The field is not read-only for the current user.

  • display_labelboolean

    Represents the display label of the current field. For instance, Last Name.

  • quick_sequence_numberinteger

    Represents the position of the field in the CRM.

  • businesscard_supportedboolean

    Represents if the current field can be added to business card section.
    Possible values - true: The field can be added to the business card section.
    false: The field cannot be added to the business card section.

  • sharing_propertiesJSON object

    In a lookup field, represents if the user has access to the records that the field looks up to.

  • idstring

    Represents the unique ID of the current field.

  • custom_fieldboolean

    Represents if the current field is a custom field.
    Possible values - true: The field is a custom field.
    false: The current field is a default field.

  • lookupJSON object

    Represents the details of the lookup that the field is related to. For example, for the "Parent_Id" field in the inventory line item subform "Quoted_Items", the lookup key contains the API name and ID of the module that the field is related to.
    In inventory line item subforms, for fields where the user selects a record from a list such as the Product name, the "lookup" key contains a JSON array "show_fields". This indicates the field that is displayed when a record is selected for that lookup. For example, for the "Product_Name" lookup, the users select a product. So, the show_fields key contains the fields that are displayed while you select the product.

  • visibleboolean

    Represents if the current field is visible to the user.
    Possible values - true: The field is visible to the user.
    false: The current field is not visible to the user.
    The profiles key represents the permission required for each profile to view this field.

  • profilesJSON array

    Represents the different profiles that have access to this field and the access permission.
    The value null represents that the user does not have the Module Customization permission.

  • display_typeinteger

    Represents how the field is displayed based on its type .
    The value -1 represents that the field is a normal field while the value 2 represents that the field is "select only" (Eg: Best time to contact field).

  • enable_colour_codeBoolean

    Represents whether you can use color coding for that field.

  • history_trackingJSON object

    Represents the history of the picklist field if you have enabled history tracking.
    The value null represents that history tracking is not enabled for the field.

  • wizardbigint

    Represents that the field is a wizard.

  • multiselectlookupJSON object

    Represents the details such as linking module, connected module, lookup API name etc, of a multi-select lookup field.

  • multiuserlookupJSON object

    Represents the details such as linking module, connected module, lookup API name etc, of a multi-select user lookup field.

  • pick_list_values_sorted_lexicallyBoolean

    Represents whether the values of the picklist are sorted alphabetically.

  • subformJSON object

    Represents the details of the line items in the inventory modules.

  • searchableBoolean

    Represents whether the field is supported in a search.

  • lengthinteger

    Represents the size of the current field.

  • sortableBoolean

    Represents whether the field is sortable.

  • api_namestring

    Represents API name of the current field.

  • data_typestring

    Represents CRM field type of the current field. For instance, lookup.

  • formulaJSON object

    Represents the formula details, if the current field is a formula field.

  • decimal_placeinteger

    Represents the number of the decimal places allowed for the current field.

  • mass_updateboolean

    Represents if the field can be mass updated.
    Possible values - true: The current field can be mass updated.
    false: The current field cannot be mass updated.

  • enable_colour_codeboolean

    Represents if the field can be color-coded.

  • pick_list_valuesJSON array

    Represents the list of all the picklist values, if the field is either a picklist or multi-select picklist field.
    The value for the key type in each picklist option represents if that option is used or not.
    The key id represents the unique ID of every picklist option.
    colour_code represents the hex code for the color for that picklist value.
    The response contains both used and unused picklist values.

  • auto_numberJSON object

    Represents the auto-number details if the current field is an Auto-Number field.

  • rollup_summaryJSON object

    Represents details of a roll up summary field. Roll up summary fields are used to summarize or aggregate values from a related list.

    • return_type

      Specifies the type of the rollup summary field.

    • expression JSON Object

      Represents the expression used for the rollup summary calculation.

      • function_parameters JSON Array

        Specifies the function parameters used in the expression.

        • api_name

          Specifies the API name of the fields used in expression

      • criteria JSON Object

        Specifies the criteria for rollup summary calculation.

        • group_operator

          Specifies the group operator used in the criteria (e.g., AND, OR).

        • group JSON Array

          Represents the group of criteria for the rollup summary calculation.

          • comparator

            Represents the comparison operator used in the criterion (e.g., not_equal).

          • field JSON Object

            Represents the field details for the criterion.

            • api_name

              Specifies the API name of the field.

            • id

              Specifies the ID of the field.

          • value

            Specifies the value used in the criterion (e.g., ${NOTEMPTY}).

      • function

        Specifies the function used for the rollup summary calculation (e.g., AVERAGE).

    • based_on_module JSON Object

      Specifies the module on which the rollup summary is based.

      • api_name

        Specifies the API name for the module.

      • id

        Specifies the ID of the module.

    • related_list

      Specifies the related list on which the rollup summary is based.

      • api_name

        Specifies the API name for the related list.

      • id

        Specifies the ID of the related list.

    • static_fieldboolean

      Represents whether the field is the static field of a static subform. Static subform's static fields are available in the response of this API only when explicitly querying the fields of a static subform module (e.g., by specifying the static subform API name in the module parameter). Possible values - true: The field is a static field of a static subform.
      false: The field is not a static field of a static subform.

    • stat string

      Specifies the basis of the rollup summary calculation. It could be module or layout.

Sample Response

Copied{
    "fields": [
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Lead Owner",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": [
                "field_of_lookup"
            ],
            "display_label": "Lead Owner",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002589",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Owner",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 8,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "ownerlookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Company",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Company",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002591",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": true,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Company",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "quick_sequence_number": "1",
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Account_Name"
            },
            "address": null,
            "rollup_summary": {},
            "length": 200,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "First Name",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "add_to_other_layouts"
            ],
            "display_label": "First Name",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002593",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": true,
                "quick_create": true,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "First_Name",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 27,
            "modified_time": null,
            "public": false,
            "quick_sequence_number": "2",
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "First_Name",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 40,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Last Name",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Last Name",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002595",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": true,
                "quick_create": true,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Last_Name",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": true,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 127,
            "modified_time": null,
            "public": false,
            "quick_sequence_number": "3",
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Last_Name",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 80,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Title",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Designation",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002597",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Designation",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Title",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Email",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Email",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002599",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": true,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Email",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 25,
            "modified_time": null,
            "public": false,
            "quick_sequence_number": "4",
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Email",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "email",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Phone",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Phone",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002601",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": true,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Phone",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 33,
            "modified_time": null,
            "public": false,
            "quick_sequence_number": "5",
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Phone",
                "Deals": null,
                "Accounts": "Phone"
            },
            "address": null,
            "rollup_summary": {},
            "length": 30,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "phone",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Fax",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Fax",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002603",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Fax",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 35,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Fax",
                "Deals": null,
                "Accounts": "Fax"
            },
            "address": null,
            "rollup_summary": {},
            "length": 30,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Mobile",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Mobile",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002605",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Mobile",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 33,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mobile",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 30,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "phone",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Website",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Website",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002607",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Website",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 21,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Website"
            },
            "address": null,
            "rollup_summary": {},
            "length": 255,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "website",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Lead Source",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Lead Source",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002609",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Lead_Source",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000003391",
                    "type": "used"
                },
                {
                    "display_value": "Advertisement",
                    "sequence_number": 2,
                    "reference_value": "Advertisement",
                    "colour_code": null,
                    "actual_value": "Advertisement",
                    "id": "6660682000000003385",
                    "type": "used"
                },
                {
                    "display_value": "Cold Call",
                    "sequence_number": 3,
                    "reference_value": "Cold Call",
                    "colour_code": null,
                    "actual_value": "Cold Call",
                    "id": "6660682000000003389",
                    "type": "used"
                },
                {
                    "display_value": "Employee Referral",
                    "sequence_number": 4,
                    "reference_value": "Employee Referral",
                    "colour_code": null,
                    "actual_value": "Employee Referral",
                    "id": "6660682000000003369",
                    "type": "used"
                },
                {
                    "display_value": "External Referral",
                    "sequence_number": 5,
                    "reference_value": "External Referral",
                    "colour_code": null,
                    "actual_value": "External Referral",
                    "id": "6660682000000003379",
                    "type": "used"
                },
                {
                    "display_value": "Online Store",
                    "sequence_number": 6,
                    "reference_value": "Online Store",
                    "colour_code": null,
                    "actual_value": "OnlineStore",
                    "id": "6660682000000003375",
                    "type": "used"
                },
                {
                    "display_value": "X (Twitter)",
                    "sequence_number": 7,
                    "reference_value": "X (Twitter)",
                    "colour_code": null,
                    "actual_value": "Twitter",
                    "id": "6660682000000299011",
                    "type": "used"
                },
                {
                    "display_value": "Facebook",
                    "sequence_number": 8,
                    "reference_value": "Facebook",
                    "colour_code": null,
                    "actual_value": "Facebook",
                    "id": "6660682000000299013",
                    "type": "used"
                },
                {
                    "display_value": "Partner",
                    "sequence_number": 9,
                    "reference_value": "Partner",
                    "colour_code": null,
                    "actual_value": "Partner",
                    "id": "6660682000000003377",
                    "type": "used"
                },
                {
                    "display_value": "Public Relations",
                    "sequence_number": 10,
                    "reference_value": "Public Relations",
                    "colour_code": null,
                    "actual_value": "Public Relations",
                    "id": "6660682000000003395",
                    "type": "used"
                },
                {
                    "display_value": "Sales Email Alias",
                    "sequence_number": 11,
                    "reference_value": "Sales Email Alias",
                    "colour_code": null,
                    "actual_value": "Sales Mail Alias",
                    "id": "6660682000000003393",
                    "type": "used"
                },
                {
                    "display_value": "Seminar Partner",
                    "sequence_number": 12,
                    "reference_value": "Seminar Partner",
                    "colour_code": null,
                    "actual_value": "Seminar Partner",
                    "id": "6660682000000003373",
                    "type": "used"
                },
                {
                    "display_value": "Internal Seminar",
                    "sequence_number": 13,
                    "reference_value": "Internal Seminar",
                    "colour_code": null,
                    "actual_value": "Seminar-Internal",
                    "id": "6660682000000003383",
                    "type": "used"
                },
                {
                    "display_value": "Trade Show",
                    "sequence_number": 14,
                    "reference_value": "Trade Show",
                    "colour_code": null,
                    "actual_value": "Trade Show",
                    "id": "6660682000000003371",
                    "type": "used"
                },
                {
                    "display_value": "Web Download",
                    "sequence_number": 15,
                    "reference_value": "Web Download",
                    "colour_code": null,
                    "actual_value": "Web Download",
                    "id": "6660682000000003381",
                    "type": "used"
                },
                {
                    "display_value": "Web Research",
                    "sequence_number": 16,
                    "reference_value": "Web Research",
                    "colour_code": null,
                    "actual_value": "Web Research",
                    "id": "6660682000000003387",
                    "type": "used"
                },
                {
                    "display_value": "Chat",
                    "sequence_number": 17,
                    "reference_value": "Chat",
                    "colour_code": null,
                    "actual_value": "Chat",
                    "id": "6660682000000058001",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Lead_Source",
                "Deals": "Lead_Source",
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Lead Status",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Lead Status",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002611",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Lead_Status",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000003409",
                    "type": "used"
                },
                {
                    "display_value": "Attempted to Contact",
                    "sequence_number": 2,
                    "reference_value": "Attempted to Contact",
                    "colour_code": null,
                    "actual_value": "Attempted to Contact",
                    "id": "6660682000000003405",
                    "type": "used"
                },
                {
                    "display_value": "Contact in Future",
                    "sequence_number": 3,
                    "reference_value": "Contact in Future",
                    "colour_code": null,
                    "actual_value": "Contact in Future",
                    "id": "6660682000000003401",
                    "type": "used"
                },
                {
                    "display_value": "Contacted",
                    "sequence_number": 4,
                    "reference_value": "Contacted",
                    "colour_code": null,
                    "actual_value": "Contacted",
                    "id": "6660682000000003399",
                    "type": "used"
                },
                {
                    "display_value": "Junk Lead",
                    "sequence_number": 5,
                    "reference_value": "Junk Lead",
                    "colour_code": null,
                    "actual_value": "Junk Lead",
                    "id": "6660682000000003411",
                    "type": "used"
                },
                {
                    "display_value": "Lost Lead",
                    "sequence_number": 6,
                    "reference_value": "Lost Lead",
                    "colour_code": null,
                    "actual_value": "Lost Lead",
                    "id": "6660682000000003407",
                    "type": "used"
                },
                {
                    "display_value": "Not Contacted",
                    "sequence_number": 7,
                    "reference_value": "Not Contacted",
                    "colour_code": null,
                    "actual_value": "Not Contacted",
                    "id": "6660682000000003403",
                    "type": "used"
                },
                {
                    "display_value": "Pre-Qualified",
                    "sequence_number": 8,
                    "reference_value": "Pre-Qualified",
                    "colour_code": null,
                    "actual_value": "Pre-Qualified",
                    "id": "6660682000000299017",
                    "type": "used"
                },
                {
                    "display_value": "Not Qualified",
                    "sequence_number": 9,
                    "reference_value": "Not Qualified",
                    "colour_code": null,
                    "actual_value": "Not Qualified",
                    "id": "6660682000000149001",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Industry",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Industry",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002613",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Industry",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000003431",
                    "type": "used"
                },
                {
                    "display_value": "ASP (Application Service Provider)",
                    "sequence_number": 2,
                    "reference_value": "ASP (Application Service Provider)",
                    "colour_code": null,
                    "actual_value": "ASP (Application Service Provider)",
                    "id": "6660682000000299019",
                    "type": "used"
                },
                {
                    "display_value": "Data/Telecom OEM",
                    "sequence_number": 3,
                    "reference_value": "Data/Telecom OEM",
                    "colour_code": null,
                    "actual_value": "Data/Telecom OEM",
                    "id": "6660682000000003415",
                    "type": "used"
                },
                {
                    "display_value": "ERP (Enterprise Resource Planning)",
                    "sequence_number": 4,
                    "reference_value": "ERP (Enterprise Resource Planning)",
                    "colour_code": null,
                    "actual_value": "ERP (Enterprise Resource Planning)",
                    "id": "6660682000000299021",
                    "type": "used"
                },
                {
                    "display_value": "Government/Military",
                    "sequence_number": 5,
                    "reference_value": "Government/Military",
                    "colour_code": null,
                    "actual_value": "Government/Military",
                    "id": "6660682000000003429",
                    "type": "used"
                },
                {
                    "display_value": "Large Enterprise",
                    "sequence_number": 6,
                    "reference_value": "Large Enterprise",
                    "colour_code": null,
                    "actual_value": "Large Enterprise",
                    "id": "6660682000000003421",
                    "type": "used"
                },
                {
                    "display_value": "ManagementISV",
                    "sequence_number": 7,
                    "reference_value": "ManagementISV",
                    "colour_code": null,
                    "actual_value": "ManagementISV",
                    "id": "6660682000000003417",
                    "type": "used"
                },
                {
                    "display_value": "MSP (Management Service Provider)",
                    "sequence_number": 8,
                    "reference_value": "MSP (Management Service Provider)",
                    "colour_code": null,
                    "actual_value": "MSP (Management Service Provider)",
                    "id": "6660682000000003435",
                    "type": "used"
                },
                {
                    "display_value": "Network Equipment Enterprise",
                    "sequence_number": 9,
                    "reference_value": "Network Equipment Enterprise",
                    "colour_code": null,
                    "actual_value": "Network Equipment (Enterprise)",
                    "id": "6660682000000003427",
                    "type": "used"
                },
                {
                    "display_value": "Non-management ISV",
                    "sequence_number": 10,
                    "reference_value": "Non-management ISV",
                    "colour_code": null,
                    "actual_value": "Non-management ISV",
                    "id": "6660682000000003433",
                    "type": "used"
                },
                {
                    "display_value": "Optical Networking",
                    "sequence_number": 11,
                    "reference_value": "Optical Networking",
                    "colour_code": null,
                    "actual_value": "Optical Networking",
                    "id": "6660682000000003445",
                    "type": "used"
                },
                {
                    "display_value": "Service Provider",
                    "sequence_number": 12,
                    "reference_value": "Service Provider",
                    "colour_code": null,
                    "actual_value": "Service Provider",
                    "id": "6660682000000003419",
                    "type": "used"
                },
                {
                    "display_value": "Small/Medium Enterprise",
                    "sequence_number": 13,
                    "reference_value": "Small/Medium Enterprise",
                    "colour_code": null,
                    "actual_value": "Small/Medium Enterprise",
                    "id": "6660682000000003425",
                    "type": "used"
                },
                {
                    "display_value": "Storage Equipment",
                    "sequence_number": 14,
                    "reference_value": "Storage Equipment",
                    "colour_code": null,
                    "actual_value": "Storage Equipment",
                    "id": "6660682000000003437",
                    "type": "used"
                },
                {
                    "display_value": "Storage Service Provider",
                    "sequence_number": 15,
                    "reference_value": "Storage Service Provider",
                    "colour_code": null,
                    "actual_value": "Storage Service Provider",
                    "id": "6660682000000003443",
                    "type": "used"
                },
                {
                    "display_value": "Systems Integrator",
                    "sequence_number": 16,
                    "reference_value": "Systems Integrator",
                    "colour_code": null,
                    "actual_value": "Systems Integrator",
                    "id": "6660682000000003413",
                    "type": "used"
                },
                {
                    "display_value": "Wireless Industry",
                    "sequence_number": 17,
                    "reference_value": "Wireless Industry",
                    "colour_code": null,
                    "actual_value": "Wireless Industry",
                    "id": "6660682000000003423",
                    "type": "used"
                },
                {
                    "display_value": "ERP",
                    "sequence_number": 18,
                    "reference_value": "ERP",
                    "colour_code": null,
                    "actual_value": "ERP",
                    "id": "6660682000000516236",
                    "type": "used"
                },
                {
                    "display_value": "Management ISV",
                    "sequence_number": 19,
                    "reference_value": "Management ISV",
                    "colour_code": null,
                    "actual_value": "Management ISV",
                    "id": "6660682000000516237",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": "2025-02-26T14:37:16+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Industry"
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "No. of Employees",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts",
                "number_separator"
            ],
            "display_label": "No of Employees",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002615",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "No_of_Employees",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "integer",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 32,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Employees"
            },
            "address": null,
            "rollup_summary": {},
            "length": 9,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "integer",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Annual Revenue",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "max_length_digits",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts",
                "rounding_type",
                "maximum_decimal"
            ],
            "display_label": "Annual Revenue",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002617",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Annual_Revenue",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "double",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 36,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {
                "rounding_option": "normal",
                "precision": 2
            },
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Annual_Revenue"
            },
            "address": null,
            "rollup_summary": {},
            "length": 16,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "currency",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": 2,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Rating",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Rating",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002619",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Rating",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000003219",
                    "type": "used"
                },
                {
                    "display_value": "Acquired",
                    "sequence_number": 2,
                    "reference_value": "Acquired",
                    "colour_code": null,
                    "actual_value": "Acquired",
                    "id": "6660682000000003221",
                    "type": "used"
                },
                {
                    "display_value": "Active",
                    "sequence_number": 3,
                    "reference_value": "Active",
                    "colour_code": null,
                    "actual_value": "Active",
                    "id": "6660682000000003223",
                    "type": "used"
                },
                {
                    "display_value": "Market Failed",
                    "sequence_number": 4,
                    "reference_value": "Market Failed",
                    "colour_code": null,
                    "actual_value": "Market Failed",
                    "id": "6660682000000003225",
                    "type": "used"
                },
                {
                    "display_value": "Project Cancelled",
                    "sequence_number": 5,
                    "reference_value": "Project Cancelled",
                    "colour_code": null,
                    "actual_value": "Project Cancelled",
                    "id": "6660682000000003227",
                    "type": "used"
                },
                {
                    "display_value": "Shut Down",
                    "sequence_number": 6,
                    "reference_value": "Shut Down",
                    "colour_code": null,
                    "actual_value": "ShutDown",
                    "id": "6660682000000003229",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": "Rating"
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Created By",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "removal",
                "add_to_other_layouts"
            ],
            "display_label": "Created By",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002623",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Created_By",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 20,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "ownerlookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Modified By",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "removal",
                "add_to_other_layouts"
            ],
            "display_label": "Modified By",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002625",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Modified_By",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 20,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "ownerlookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Created Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Created Time",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002627",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Created_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 200,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Modified Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Modified Time",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002629",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Modified_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 200,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Full Name",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Full Name",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000002631",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Full_Name",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": true,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Street",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Street",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002635",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Street",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mailing_Street",
                "Deals": null,
                "Accounts": "Billing_Street"
            },
            "address": null,
            "rollup_summary": {},
            "length": 250,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "City",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "City",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002637",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "City",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mailing_City",
                "Deals": null,
                "Accounts": "Billing_City"
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "State",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "State",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002639",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "State",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mailing_State",
                "Deals": null,
                "Accounts": "Billing_State"
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Zip Code",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Zip Code",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002641",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Zip_Code",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mailing_Zip",
                "Deals": null,
                "Accounts": "Billing_Code"
            },
            "address": null,
            "rollup_summary": {},
            "length": 30,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Country",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Country",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002643",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Country",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Mailing_Country",
                "Deals": null,
                "Accounts": "Billing_Country"
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Description",
            "tooltip": null,
            "textarea": {
                "type": "large"
            },
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Description",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000002645",
            "created_time": null,
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Description",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 3,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Description",
                "Deals": "Description",
                "Accounts": "Description"
            },
            "address": null,
            "rollup_summary": {},
            "length": 32000,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "textarea",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Skype ID",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Skype ID",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000014173",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Skype_ID",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 37,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Skype_ID",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 50,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Email Opt Out",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "removal",
                "tooltip",
                "default_value",
                "add_to_other_layouts"
            ],
            "display_label": "Email Opt Out",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000014177",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Email_Opt_Out",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "boolean",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 301,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 5,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "boolean",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Salutation",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "removal",
                "hipaa_field",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "replace_values"
            ],
            "display_label": "Salutation",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000022011",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Salutation",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000022051",
                    "type": "used"
                },
                {
                    "display_value": "Mr.",
                    "sequence_number": 2,
                    "reference_value": "Mr.",
                    "colour_code": null,
                    "actual_value": "Mr.",
                    "id": "6660682000000022072",
                    "type": "used"
                },
                {
                    "display_value": "Mrs.",
                    "sequence_number": 3,
                    "reference_value": "Mrs.",
                    "colour_code": null,
                    "actual_value": "Mrs.",
                    "id": "6660682000000022088",
                    "type": "used"
                },
                {
                    "display_value": "Ms.",
                    "sequence_number": 4,
                    "reference_value": "Ms.",
                    "colour_code": null,
                    "actual_value": "Ms.",
                    "id": "6660682000000022041",
                    "type": "used"
                },
                {
                    "display_value": "Dr.",
                    "sequence_number": 5,
                    "reference_value": "Dr.",
                    "colour_code": null,
                    "actual_value": "Dr.",
                    "id": "6660682000000022063",
                    "type": "used"
                },
                {
                    "display_value": "Prof.",
                    "sequence_number": 6,
                    "reference_value": "Prof.",
                    "colour_code": null,
                    "actual_value": "Prof.",
                    "id": "6660682000000022038",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 25,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Secondary Email",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Secondary Email",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000044003",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Secondary_Email",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 25,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Secondary_Email",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 100,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "email",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Last Activity Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": [
                "fixed_position",
                "tooltip"
            ],
            "display_label": "Last Activity Time",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000052001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Last_Activity_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 786,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Twitter",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Twitter",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000053001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Twitter",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 22,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": "Twitter",
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 50,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Tag",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "unique",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "Tag",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000125055",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Tag",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonarray",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 209,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 2000,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Lead Image",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "image_enable",
                "add_to_other_layouts"
            ],
            "display_label": "Record Image",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000152001",
            "created_time": null,
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": false,
            "external": null,
            "api_name": "Record_Image",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 66,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 255,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "profileimage",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Converted Date Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Converted Date Time",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000225696",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Converted_Date_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 333,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Lead Conversion Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Lead Conversion Time",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000280013",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Lead_Conversion_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "integer",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 32,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 9,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "integer",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Unsubscribed Mode",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Unsubscribed Mode",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000283001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Unsubscribed_Mode",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "Consent form",
                    "sequence_number": 4,
                    "reference_value": "Consent form",
                    "colour_code": null,
                    "actual_value": "Consent form",
                    "id": "6660682000000283016",
                    "type": "used"
                },
                {
                    "display_value": "Manual",
                    "sequence_number": 2,
                    "reference_value": "Manual",
                    "colour_code": null,
                    "actual_value": "Manual",
                    "id": "6660682000000283020",
                    "type": "used"
                },
                {
                    "display_value": "Unsubscribe link",
                    "sequence_number": 1,
                    "reference_value": "Unsubscribe link",
                    "colour_code": null,
                    "actual_value": "Unsubscribe link",
                    "id": "6660682000000283014",
                    "type": "used"
                },
                {
                    "display_value": "Zoho campaigns",
                    "sequence_number": 3,
                    "reference_value": "Zoho campaigns",
                    "colour_code": null,
                    "actual_value": "Zoho campaigns",
                    "id": "6660682000000283018",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": true,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Unsubscribed Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Unsubscribed Time",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000283002",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Unsubscribed_Time",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 333,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Converted Account",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Converted Account",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000285001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Converted_Account",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 133,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {
                "display_label": null,
                "revalidate_filter_during_edit": false,
                "api_name": null,
                "module": {
                    "api_name": "Accounts",
                    "crypt": false,
                    "id": "6660682000000002177"
                },
                "id": null,
                "query_details": {}
            },
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "lookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Converted Contact",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Converted Contact",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000285003",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Converted_Contact",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 133,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {
                "display_label": null,
                "revalidate_filter_during_edit": false,
                "api_name": null,
                "module": {
                    "api_name": "Contacts",
                    "crypt": false,
                    "id": "6660682000000002179"
                },
                "id": null,
                "query_details": {}
            },
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "lookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Converted Deal",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Converted Deal",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000285005",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Converted_Deal",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 133,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {
                "display_label": null,
                "revalidate_filter_during_edit": false,
                "api_name": null,
                "module": {
                    "api_name": "Deals",
                    "crypt": false,
                    "id": "6660682000000002181"
                },
                "id": null,
                "query_details": {}
            },
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "lookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Record Id",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Record Id",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000298001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "id",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 52,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 18,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "bigint",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Change Log Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Change Log Time",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000317011",
            "created_time": null,
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Change_Log_Time__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 333,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Is Converted",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Is Converted",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000323001",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Converted__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "boolean",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 301,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 5,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "boolean",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Locked",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Locked",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000375054",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Locked__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "boolean",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 301,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 5,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "boolean",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Last Enriched Time",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": [
                "fixed_position",
                "tooltip"
            ],
            "display_label": "Last Enriched Time",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000380009",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": false,
            "external": null,
            "api_name": "Last_Enriched_Time__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 333,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "datetime",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Enrich Status",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": [
                "mandatory",
                "removal",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Enrich Status",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000380012",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": false,
            "external": null,
            "api_name": "Enrich_Status__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "Available",
                    "sequence_number": 1,
                    "reference_value": "Available",
                    "colour_code": null,
                    "actual_value": "Available",
                    "id": "6660682000000380039",
                    "type": "used"
                },
                {
                    "display_value": "Enriched",
                    "sequence_number": 2,
                    "reference_value": "Enriched",
                    "colour_code": null,
                    "actual_value": "Enriched",
                    "id": "6660682000000380041",
                    "type": "used"
                },
                {
                    "display_value": "Data not found",
                    "sequence_number": 3,
                    "reference_value": "Data not found",
                    "colour_code": null,
                    "actual_value": "Data not found",
                    "id": "6660682000000380043",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Record Status",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": true,
            "customizable_properties": null,
            "display_label": "Record Status",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000552005",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_only",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_only",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": false,
            "external": null,
            "api_name": "Record_Status__s",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "Trash",
                    "sequence_number": 1,
                    "reference_value": "Trash",
                    "colour_code": null,
                    "actual_value": "Trash",
                    "id": "6660682000000552006",
                    "type": "used"
                },
                {
                    "display_value": "Available",
                    "sequence_number": 2,
                    "reference_value": "Available",
                    "colour_code": null,
                    "actual_value": "Available",
                    "id": "6660682000000552007",
                    "type": "used"
                },
                {
                    "display_value": "Draft",
                    "sequence_number": 3,
                    "reference_value": "Draft",
                    "colour_code": null,
                    "actual_value": "Draft",
                    "id": "6660682000000552008",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Picklist",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "fieldlabel",
                "removal",
                "deletion",
                "private_field",
                "tooltip",
                "hipaa_field",
                "history_tracking",
                "display_value_alphabetically",
                "default_value",
                "option_add",
                "add_to_other_layouts",
                "color_code",
                "replace_values"
            ],
            "display_label": "Picklist",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000686052",
            "created_time": "2025-03-25T11:56:01+05:30",
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Picklist",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "-None-",
                    "sequence_number": 1,
                    "reference_value": "-None-",
                    "colour_code": null,
                    "actual_value": "-None-",
                    "id": "6660682000000686056",
                    "type": "used"
                },
                {
                    "display_value": "Option A",
                    "sequence_number": 2,
                    "reference_value": "Option A",
                    "colour_code": null,
                    "actual_value": "Option A",
                    "id": "6660682000000686051",
                    "type": "used"
                },
                {
                    "display_value": "Option B",
                    "sequence_number": 3,
                    "reference_value": "Option B",
                    "colour_code": null,
                    "actual_value": "Option B",
                    "id": "6660682000000686053",
                    "type": "unused"
                },
                {
                    "display_value": "Option C",
                    "sequence_number": 4,
                    "reference_value": "Option C",
                    "colour_code": null,
                    "actual_value": "Option C",
                    "id": "6660682000000691001",
                    "type": "unused"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": "2025-03-25T15:29:50+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": true,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "blueprint_supported": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "RTF",
            "tooltip": null,
            "textarea": {
                "type": "rich_text"
            },
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "fieldlabel",
                "encrypted",
                "removal",
                "deletion",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "RTF",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000845001",
            "created_time": "2025-04-16T15:56:59+05:30",
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "RTF",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 250,
            "modified_time": "2025-04-16T15:56:59+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": true,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 50000,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "textarea",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "RTF2",
            "tooltip": null,
            "textarea": {
                "type": "rich_text"
            },
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "fieldlabel",
                "encrypted",
                "removal",
                "deletion",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts"
            ],
            "display_label": "RTF2",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000845017",
            "created_time": "2025-04-16T15:56:59+05:30",
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "RTF2",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 250,
            "modified_time": "2025-04-16T15:56:59+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": true,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 50000,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "textarea",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Single Line 1",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "fieldlabel",
                "max_length_digits",
                "unique",
                "encrypted",
                "removal",
                "deletion",
                "private_field",
                "tooltip",
                "hipaa_field",
                "add_to_other_layouts",
                "external_field"
            ],
            "display_label": "Single Line 1",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000845031",
            "created_time": "2025-04-16T15:56:59+05:30",
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Single_Line_1",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 1,
            "modified_time": "2025-04-16T15:56:59+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": true,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 255,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "text",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": true,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": {
                "module": "KYC",
                "id": "6660682000000848011"
            },
            "webhook": false,
            "operation_type": {
                "web_update": false,
                "api_create": false,
                "web_create": false,
                "api_update": false
            },
            "colour_code_enabled_by_system": false,
            "field_label": "KYC",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "KYC",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000848120",
            "created_time": null,
            "filterable": false,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": false,
            "external": null,
            "api_name": "KYC",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": true,
            "json_type": "jsonarray",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 500,
            "modified_time": "2025-04-17T13:15:35+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": true,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": false,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "static_subform",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": true,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Linked Account",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": [
                "mandatory",
                "fieldlabel",
                "removal",
                "deletion",
                "tooltip",
                "add_to_other_layouts",
                "related_list_label",
                "lookup_filter",
                "field_of_lookup"
            ],
            "display_label": "Linked Account",
            "read_only": false,
            "association_details": null,
            "businesscard_supported": true,
            "multi_module_lookup": {},
            "id": "6660682000000890118",
            "created_time": "2025-04-24T16:30:52+05:30",
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": true,
                "edit": true,
                "quick_create": false,
                "create": true
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Linked_Account",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "jsonobject",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 133,
            "modified_time": "2025-04-24T16:30:52+05:30",
            "public": false,
            "email_parser": {
                "fields_update_supported": false,
                "record_operations_supported": false
            },
            "currency": {},
            "custom_field": true,
            "lookup": {
                "display_label": "Linked Account",
                "revalidate_filter_during_edit": false,
                "api_name": "Linked_Account1",
                "module": {
                    "api_name": "Accounts",
                    "crypt": false,
                    "id": "6660682000000002177"
                },
                "id": "6660682000000890122",
                "query_details": {}
            },
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "lookup",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "multiselectlookup": {},
            "auto_number": {}
        },
        {
            "associated_module": null,
            "webhook": false,
            "operation_type": {
                "web_update": true,
                "api_create": true,
                "web_create": true,
                "api_update": true
            },
            "colour_code_enabled_by_system": false,
            "field_label": "Data Source",
            "tooltip": null,
            "display_format_properties": null,
            "type": "used",
            "field_read_only": false,
            "customizable_properties": null,
            "display_label": "Data Source",
            "read_only": true,
            "association_details": null,
            "businesscard_supported": false,
            "multi_module_lookup": {},
            "id": "6660682000000939186",
            "created_time": null,
            "filterable": true,
            "visible": true,
            "profiles": [
                {
                    "permission_type": "read_write",
                    "name": "Administrator",
                    "id": "6660682000000026011"
                },
                {
                    "permission_type": "read_write",
                    "name": "Standard",
                    "id": "6660682000000026014"
                }
            ],
            "view_type": {
                "view": false,
                "edit": false,
                "quick_create": false,
                "create": false
            },
            "separator": false,
            "searchable": true,
            "external": null,
            "api_name": "Data_Source",
            "parent_field": null,
            "unique": {},
            "enable_colour_code": false,
            "child_fields": null,
            "pick_list_values": [
                {
                    "display_value": "Manual",
                    "sequence_number": 1,
                    "reference_value": "Manual",
                    "colour_code": null,
                    "actual_value": "Manual",
                    "id": "6660682000000939188",
                    "type": "used"
                },
                {
                    "display_value": "API",
                    "sequence_number": 2,
                    "reference_value": "API",
                    "colour_code": null,
                    "actual_value": "API",
                    "id": "6660682000000939190",
                    "type": "used"
                },
                {
                    "display_value": "Manual (Mobile)",
                    "sequence_number": 3,
                    "reference_value": "Manual (Mobile)",
                    "colour_code": null,
                    "actual_value": "Manual (Mobile)",
                    "id": "6660682000000939192",
                    "type": "used"
                },
                {
                    "display_value": "Webform",
                    "sequence_number": 4,
                    "reference_value": "Webform",
                    "colour_code": null,
                    "actual_value": "Webform",
                    "id": "6660682000000939194",
                    "type": "used"
                },
                {
                    "display_value": "Microsoft Outlook",
                    "sequence_number": 5,
                    "reference_value": "Microsoft Outlook",
                    "colour_code": null,
                    "actual_value": "Microsoft Outlook",
                    "id": "6660682000000939196",
                    "type": "used"
                },
                {
                    "display_value": "Social",
                    "sequence_number": 6,
                    "reference_value": "Social",
                    "colour_code": null,
                    "actual_value": "Social",
                    "id": "6660682000000939198",
                    "type": "used"
                },
                {
                    "display_value": "Workflow",
                    "sequence_number": 7,
                    "reference_value": "Workflow",
                    "colour_code": null,
                    "actual_value": "Workflow",
                    "id": "6660682000000939200",
                    "type": "used"
                },
                {
                    "display_value": "Import",
                    "sequence_number": 8,
                    "reference_value": "Import",
                    "colour_code": null,
                    "actual_value": "Import",
                    "id": "6660682000000939202",
                    "type": "used"
                },
                {
                    "display_value": "Bulk API",
                    "sequence_number": 9,
                    "reference_value": "Bulk API",
                    "colour_code": null,
                    "actual_value": "Bulk Write",
                    "id": "6660682000000939204",
                    "type": "used"
                },
                {
                    "display_value": "Migration",
                    "sequence_number": 10,
                    "reference_value": "Migration",
                    "colour_code": null,
                    "actual_value": "Migration",
                    "id": "6660682000000939206",
                    "type": "used"
                },
                {
                    "display_value": "System Generated",
                    "sequence_number": 11,
                    "reference_value": "System Generated",
                    "colour_code": null,
                    "actual_value": "System Generated",
                    "id": "6660682000000939208",
                    "type": "used"
                },
                {
                    "display_value": "Google Calendar Sync",
                    "sequence_number": 12,
                    "reference_value": "Google Calendar Sync",
                    "colour_code": null,
                    "actual_value": "Google",
                    "id": "6660682000000939210",
                    "type": "used"
                },
                {
                    "display_value": "Office 365",
                    "sequence_number": 13,
                    "reference_value": "Office 365",
                    "colour_code": null,
                    "actual_value": "Microsoft",
                    "id": "6660682000000939212",
                    "type": "used"
                },
                {
                    "display_value": "Phonebridge API",
                    "sequence_number": 14,
                    "reference_value": "Phonebridge API",
                    "colour_code": null,
                    "actual_value": "Phonebridge API",
                    "id": "6660682000000939214",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Docs",
                    "sequence_number": 15,
                    "reference_value": "Zoho Docs",
                    "colour_code": null,
                    "actual_value": "Zoho Docs",
                    "id": "6660682000000939216",
                    "type": "used"
                },
                {
                    "display_value": "Manual Mass Add",
                    "sequence_number": 16,
                    "reference_value": "Manual Mass Add",
                    "colour_code": null,
                    "actual_value": "Manual Mass Add",
                    "id": "6660682000000939218",
                    "type": "used"
                },
                {
                    "display_value": "Sandbox",
                    "sequence_number": 17,
                    "reference_value": "Sandbox",
                    "colour_code": null,
                    "actual_value": "Sandbox",
                    "id": "6660682000000939220",
                    "type": "used"
                },
                {
                    "display_value": "Mail Parser",
                    "sequence_number": 18,
                    "reference_value": "Mail Parser",
                    "colour_code": null,
                    "actual_value": "Mail Parser",
                    "id": "6660682000000939222",
                    "type": "used"
                },
                {
                    "display_value": "SalesInbox",
                    "sequence_number": 19,
                    "reference_value": "SalesInbox",
                    "colour_code": null,
                    "actual_value": "SalesInbox",
                    "id": "6660682000000939224",
                    "type": "used"
                },
                {
                    "display_value": "Email Workflow",
                    "sequence_number": 20,
                    "reference_value": "Email Workflow",
                    "colour_code": null,
                    "actual_value": "Email workflow",
                    "id": "6660682000000939226",
                    "type": "used"
                },
                {
                    "display_value": "BCC Dropbox",
                    "sequence_number": 21,
                    "reference_value": "BCC Dropbox",
                    "colour_code": null,
                    "actual_value": "BCC Dropbox",
                    "id": "6660682000000939228",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Finance Suite",
                    "sequence_number": 22,
                    "reference_value": "Zoho Finance Suite",
                    "colour_code": null,
                    "actual_value": "Zoho Finance Suite",
                    "id": "6660682000000939230",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Desk",
                    "sequence_number": 23,
                    "reference_value": "Zoho Desk",
                    "colour_code": null,
                    "actual_value": "Zoho Desk",
                    "id": "6660682000000939232",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Survey",
                    "sequence_number": 24,
                    "reference_value": "Zoho Survey",
                    "colour_code": null,
                    "actual_value": "Zoho Survey",
                    "id": "6660682000000939234",
                    "type": "used"
                },
                {
                    "display_value": "Google Ads",
                    "sequence_number": 25,
                    "reference_value": "Google Ads",
                    "colour_code": null,
                    "actual_value": "Google Adwords",
                    "id": "6660682000000939236",
                    "type": "used"
                },
                {
                    "display_value": "Zoho SalesIQ",
                    "sequence_number": 26,
                    "reference_value": "Zoho SalesIQ",
                    "colour_code": null,
                    "actual_value": "SalesIQ",
                    "id": "6660682000000939238",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Mail",
                    "sequence_number": 27,
                    "reference_value": "Zoho Mail",
                    "colour_code": null,
                    "actual_value": "Zoho Mail",
                    "id": "6660682000000939240",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Forms",
                    "sequence_number": 28,
                    "reference_value": "Zoho Forms",
                    "colour_code": null,
                    "actual_value": "Zoho Forms",
                    "id": "6660682000000939242",
                    "type": "used"
                },
                {
                    "display_value": "Custom Function",
                    "sequence_number": 29,
                    "reference_value": "Custom Function",
                    "colour_code": null,
                    "actual_value": "Custom Function",
                    "id": "6660682000000939244",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Recruit",
                    "sequence_number": 30,
                    "reference_value": "Zoho Recruit",
                    "colour_code": null,
                    "actual_value": "Zoho Recruit",
                    "id": "6660682000000939246",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Sheet View",
                    "sequence_number": 31,
                    "reference_value": "Zoho Sheet View",
                    "colour_code": null,
                    "actual_value": "Zoho Sheet View",
                    "id": "6660682000000939248",
                    "type": "used"
                },
                {
                    "display_value": "Sample Data",
                    "sequence_number": 32,
                    "reference_value": "Sample Data",
                    "colour_code": null,
                    "actual_value": "Sample Data",
                    "id": "6660682000000939250",
                    "type": "used"
                },
                {
                    "display_value": "Conversational AI ( Zia Voice )",
                    "sequence_number": 33,
                    "reference_value": "Conversational AI ( Zia Voice )",
                    "colour_code": null,
                    "actual_value": "Zia Voice",
                    "id": "6660682000000939252",
                    "type": "used"
                },
                {
                    "display_value": "Prediction",
                    "sequence_number": 34,
                    "reference_value": "Prediction",
                    "colour_code": null,
                    "actual_value": "Prediction",
                    "id": "6660682000000939254",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Campaigns",
                    "sequence_number": 35,
                    "reference_value": "Zoho Campaigns",
                    "colour_code": null,
                    "actual_value": "Zoho Campaign",
                    "id": "6660682000000939256",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Webinar",
                    "sequence_number": 36,
                    "reference_value": "Zoho Webinar",
                    "colour_code": null,
                    "actual_value": "Zoho Webinar",
                    "id": "6660682000000939258",
                    "type": "used"
                },
                {
                    "display_value": "Zoho Backstage",
                    "sequence_number": 37,
                    "reference_value": "Zoho Backstage",
                    "colour_code": null,
                    "actual_value": "Zoho Backstage",
                    "id": "6660682000000939260",
                    "type": "used"
                },
                {
                    "display_value": "Blueprint",
                    "sequence_number": 38,
                    "reference_value": "Blueprint",
                    "colour_code": null,
                    "actual_value": "Blueprint",
                    "id": "6660682000000939262",
                    "type": "used"
                },
                {
                    "display_value": "Approval process",
                    "sequence_number": 39,
                    "reference_value": "Approval process",
                    "colour_code": null,
                    "actual_value": "ApprovalProcess",
                    "id": "6660682000000939264",
                    "type": "used"
                },
                {
                    "display_value": "Macro",
                    "sequence_number": 40,
                    "reference_value": "Macro",
                    "colour_code": null,
                    "actual_value": "Macro",
                    "id": "6660682000000939266",
                    "type": "used"
                },
                {
                    "display_value": "Mass Transfer",
                    "sequence_number": 41,
                    "reference_value": "Mass Transfer",
                    "colour_code": null,
                    "actual_value": "Mass Transfer",
                    "id": "6660682000000939268",
                    "type": "used"
                },
                {
                    "display_value": "Change Owner",
                    "sequence_number": 42,
                    "reference_value": "Change Owner",
                    "colour_code": null,
                    "actual_value": "Change Owner",
                    "id": "6660682000000939270",
                    "type": "used"
                },
                {
                    "display_value": "Mass Update",
                    "sequence_number": 43,
                    "reference_value": "Mass Update",
                    "colour_code": null,
                    "actual_value": "Mass Update",
                    "id": "6660682000000939272",
                    "type": "used"
                },
                {
                    "display_value": "Deduplication",
                    "sequence_number": 44,
                    "reference_value": "Deduplication",
                    "colour_code": null,
                    "actual_value": "DeDuplicate",
                    "id": "6660682000000939274",
                    "type": "used"
                },
                {
                    "display_value": "Manual-Merge",
                    "sequence_number": 45,
                    "reference_value": "Manual-Merge",
                    "colour_code": null,
                    "actual_value": "Find And Merge",
                    "id": "6660682000000939276",
                    "type": "used"
                },
                {
                    "display_value": "Bigin",
                    "sequence_number": 46,
                    "reference_value": "Bigin",
                    "colour_code": null,
                    "actual_value": "Bigin",
                    "id": "6660682000000939278",
                    "type": "used"
                },
                {
                    "display_value": "Zoho CRM",
                    "sequence_number": 47,
                    "reference_value": "Zoho CRM",
                    "colour_code": null,
                    "actual_value": "Zoho CRM",
                    "id": "6660682000000939280",
                    "type": "used"
                },
                {
                    "display_value": "Mailchimp",
                    "sequence_number": 48,
                    "reference_value": "Mailchimp",
                    "colour_code": null,
                    "actual_value": "Mailchimp",
                    "id": "6660682000000939282",
                    "type": "used"
                },
                {
                    "display_value": "Constant Contact",
                    "sequence_number": 49,
                    "reference_value": "Constant Contact",
                    "colour_code": null,
                    "actual_value": "Constant Contact",
                    "id": "6660682000000939284",
                    "type": "used"
                },
                {
                    "display_value": "EmailIn",
                    "sequence_number": 50,
                    "reference_value": "EmailIn",
                    "colour_code": null,
                    "actual_value": "EmailIn",
                    "id": "6660682000000939286",
                    "type": "used"
                },
                {
                    "display_value": "Calendar Booking",
                    "sequence_number": 51,
                    "reference_value": "Calendar Booking",
                    "colour_code": null,
                    "actual_value": "Calendar Booking",
                    "id": "6660682000000939288",
                    "type": "used"
                },
                {
                    "display_value": "Kiosk",
                    "sequence_number": 52,
                    "reference_value": "Kiosk",
                    "colour_code": null,
                    "actual_value": "Kiosk",
                    "id": "6660682000000939290",
                    "type": "used"
                }
            ],
            "system_mandatory": false,
            "virtual_field": false,
            "json_type": "string",
            "crypt": null,
            "range": null,
            "created_source": "default",
            "display_type": -1,
            "ui_type": 2,
            "modified_time": null,
            "public": false,
            "email_parser": {
                "fields_update_supported": true,
                "record_operations_supported": true
            },
            "currency": {},
            "custom_field": false,
            "lookup": {},
            "hipaa_compliance": null,
            "convert_mapping": {
                "Contacts": null,
                "Deals": null,
                "Accounts": null
            },
            "address": null,
            "rollup_summary": {},
            "length": 120,
            "display_field": false,
            "pick_list_values_sorted_lexically": false,
            "sortable": true,
            "global_picklist": null,
            "display_format": null,
            "history_tracking": null,
            "data_type": "picklist",
            "formula": {},
            "static_field": false,
            "hipaa_compliance_enabled": false,
            "decimal_place": null,
            "mass_update": false,
            "blueprint_supported": false,
            "multiselectlookup": {},
            "auto_number": {}
        }
    ]
}