Chilkat Online Tools

Android / Salesforce Platform APIs / Get Values for All Picklist Fields of a Record Type

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://domain.com/services/data/v{{version}}/ui-api/object-info/:SOBJECT_API_NAME/picklist-values/:RECORD_TYPE_ID",sbResponseBody);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, jResp.emit());

    int respStatusCode = http.get_LastStatus();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, http.lastHeader());
        Log.i(TAG, "Failed.");
        return;
        }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "eTag": "ef21257ca08f8952ff154f57dc775336",
    //   "picklistFieldValues": {
    //     "CleanStatus": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "bd535d2876948d8bb91fad409b69e359",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "In Sync",
    //           "validFor": [
    //           ],
    //           "value": "Matched"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Different",
    //           "validFor": [
    //           ],
    //           "value": "Different"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Reviewed",
    //           "validFor": [
    //           ],
    //           "value": "Acknowledged"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Not Found",
    //           "validFor": [
    //           ],
    //           "value": "NotFound"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Inactive",
    //           "validFor": [
    //           ],
    //           "value": "Inactive"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Not Compared",
    //           "validFor": [
    //           ],
    //           "value": "Pending"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Select Match",
    //           "validFor": [
    //           ],
    //           "value": "SelectMatch"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Skipped",
    //           "validFor": [
    //           ],
    //           "value": "Skipped"
    //         }
    //       ]
    //     },
    //     "LeadSource": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "edb5c49da4ff7bfe2cf15ecae67a306c",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "Web",
    //           "validFor": [
    //           ],
    //           "value": "Web"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Phone Inquiry",
    //           "validFor": [
    //           ],
    //           "value": "Phone Inquiry"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Partner Referral",
    //           "validFor": [
    //           ],
    //           "value": "Partner Referral"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Purchased List",
    //           "validFor": [
    //           ],
    //           "value": "Purchased List"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Other",
    //           "validFor": [
    //           ],
    //           "value": "Other"
    //         }
    //       ]
    //     },
    //     "Level__c": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "ffef8adfed014c3057fd14658f5202c4",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "Secondary",
    //           "validFor": [
    //           ],
    //           "value": "Secondary"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Tertiary",
    //           "validFor": [
    //           ],
    //           "value": "Tertiary"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Primary",
    //           "validFor": [
    //           ],
    //           "value": "Primary"
    //         }
    //       ]
    //     },
    //     "MailingGeocodeAccuracy": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "776a2f5e98c411bafb45081e39a6f1ec",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "Address",
    //           "validFor": [
    //           ],
    //           "value": "Address"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "NearAddress",
    //           "validFor": [
    //           ],
    //           "value": "NearAddress"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Block",
    //           "validFor": [
    //           ],
    //           "value": "Block"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Street",
    //           "validFor": [
    //           ],
    //           "value": "Street"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "ExtendedZip",
    //           "validFor": [
    //           ],
    //           "value": "ExtendedZip"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Zip",
    //           "validFor": [
    //           ],
    //           "value": "Zip"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Neighborhood",
    //           "validFor": [
    //           ],
    //           "value": "Neighborhood"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "City",
    //           "validFor": [
    //           ],
    //           "value": "City"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "County",
    //           "validFor": [
    //           ],
    //           "value": "County"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "State",
    //           "validFor": [
    //           ],
    //           "value": "State"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Unknown",
    //           "validFor": [
    //           ],
    //           "value": "Unknown"
    //         }
    //       ]
    //     },
    //     "OtherGeocodeAccuracy": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "776a2f5e98c411bafb45081e39a6f1ec",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "Address",
    //           "validFor": [
    //           ],
    //           "value": "Address"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "NearAddress",
    //           "validFor": [
    //           ],
    //           "value": "NearAddress"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Block",
    //           "validFor": [
    //           ],
    //           "value": "Block"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Street",
    //           "validFor": [
    //           ],
    //           "value": "Street"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "ExtendedZip",
    //           "validFor": [
    //           ],
    //           "value": "ExtendedZip"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Zip",
    //           "validFor": [
    //           ],
    //           "value": "Zip"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Neighborhood",
    //           "validFor": [
    //           ],
    //           "value": "Neighborhood"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "City",
    //           "validFor": [
    //           ],
    //           "value": "City"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "County",
    //           "validFor": [
    //           ],
    //           "value": "County"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "State",
    //           "validFor": [
    //           ],
    //           "value": "State"
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Unknown",
    //           "validFor": [
    //           ],
    //           "value": "Unknown"
    //         }
    //       ]
    //     },
    //     "Salutation": {
    //       "controllerValues": {},
    //       "defaultValue": null,
    //       "eTag": "2de0a04925bdf8e3c70fe1177129a63f",
    //       "url": "/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation",
    //       "values": [
    //         {
    //           "attributes": null,
    //           "label": "Mr.",
    //           "validFor": [
    //           ],
    //           "value": "Mr."
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Ms.",
    //           "validFor": [
    //           ],
    //           "value": "Ms."
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Mrs.",
    //           "validFor": [
    //           ],
    //           "value": "Mrs."
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Dr.",
    //           "validFor": [
    //           ],
    //           "value": "Dr."
    //         },
    //         {
    //           "attributes": null,
    //           "label": "Prof.",
    //           "validFor": [
    //           ],
    //           "value": "Prof."
    //         }
    //       ]
    //     }
    //   }
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    String attributes;
    String label;
    String value;
    int j;
    int count_j;

    String eTag = jResp.stringOf("eTag");
    String DefaultValue = jResp.stringOf("picklistFieldValues.CleanStatus.defaultValue");
    String ETag = jResp.stringOf("picklistFieldValues.CleanStatus.eTag");
    String v_Url = jResp.stringOf("picklistFieldValues.CleanStatus.url");
    String LeadSourceDefaultValue = jResp.stringOf("picklistFieldValues.LeadSource.defaultValue");
    String LeadSourceETag = jResp.stringOf("picklistFieldValues.LeadSource.eTag");
    String LeadSourceUrl = jResp.stringOf("picklistFieldValues.LeadSource.url");
    String Level__cDefaultValue = jResp.stringOf("picklistFieldValues.Level__c.defaultValue");
    String Level__cETag = jResp.stringOf("picklistFieldValues.Level__c.eTag");
    String Level__cUrl = jResp.stringOf("picklistFieldValues.Level__c.url");
    String MailingGeocodeAccuracyDefaultValue = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.defaultValue");
    String MailingGeocodeAccuracyETag = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.eTag");
    String MailingGeocodeAccuracyUrl = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.url");
    String OtherGeocodeAccuracyDefaultValue = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.defaultValue");
    String OtherGeocodeAccuracyETag = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.eTag");
    String OtherGeocodeAccuracyUrl = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.url");
    String SalutationDefaultValue = jResp.stringOf("picklistFieldValues.Salutation.defaultValue");
    String SalutationETag = jResp.stringOf("picklistFieldValues.Salutation.eTag");
    String SalutationUrl = jResp.stringOf("picklistFieldValues.Salutation.url");
    int i = 0;
    int count_i = jResp.SizeOfArray("picklistFieldValues.CleanStatus.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.CleanStatus.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.CleanStatus.values[i].label");
        value = jResp.stringOf("picklistFieldValues.CleanStatus.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.CleanStatus.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("picklistFieldValues.LeadSource.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.LeadSource.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.LeadSource.values[i].label");
        value = jResp.stringOf("picklistFieldValues.LeadSource.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.LeadSource.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("picklistFieldValues.Level__c.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.Level__c.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.Level__c.values[i].label");
        value = jResp.stringOf("picklistFieldValues.Level__c.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.Level__c.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("picklistFieldValues.MailingGeocodeAccuracy.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.values[i].label");
        value = jResp.stringOf("picklistFieldValues.MailingGeocodeAccuracy.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.MailingGeocodeAccuracy.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("picklistFieldValues.OtherGeocodeAccuracy.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.values[i].label");
        value = jResp.stringOf("picklistFieldValues.OtherGeocodeAccuracy.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.OtherGeocodeAccuracy.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("picklistFieldValues.Salutation.values");
    while (i < count_i) {
        jResp.put_I(i);
        attributes = jResp.stringOf("picklistFieldValues.Salutation.values[i].attributes");
        label = jResp.stringOf("picklistFieldValues.Salutation.values[i].label");
        value = jResp.stringOf("picklistFieldValues.Salutation.values[i].value");
        j = 0;
        count_j = jResp.SizeOfArray("picklistFieldValues.Salutation.values[i].validFor");
        while (j < count_j) {
            jResp.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/services/data/v{{version}}/ui-api/object-info/:SOBJECT_API_NAME/picklist-values/:RECORD_TYPE_ID

Postman Collection Item JSON

{
  "name": "Get Values for All Picklist Fields of a Record Type",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/object-info/:SOBJECT_API_NAME/picklist-values/:RECORD_TYPE_ID",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "ui-api",
        "object-info",
        ":SOBJECT_API_NAME",
        "picklist-values",
        ":RECORD_TYPE_ID"
      ],
      "variable": [
        {
          "key": "SOBJECT_API_NAME",
          "value": "",
          "description": "Object API Name"
        },
        {
          "key": "RECORD_TYPE_ID",
          "value": "",
          "description": "Record type Id. Use `012000000000000AAA` as default when there are no custom record types."
        }
      ]
    },
    "description": "Get metadata about a specific object. The response includes metadata describing fields, child relationships, record type, and theme."
  },
  "response": [
    {
      "name": "Get Values for All Picklist Fields of a Record Type",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{_endpoint}}/services/data/v{{version}}/ui-api/object-info/:SOBJECT_API_NAME/picklist-values/:RECORD_TYPE_ID",
          "host": [
            "{{_endpoint}}"
          ],
          "path": [
            "services",
            "data",
            "v{{version}}",
            "ui-api",
            "object-info",
            ":SOBJECT_API_NAME",
            "picklist-values",
            ":RECORD_TYPE_ID"
          ],
          "variable": [
            {
              "key": "SOBJECT_API_NAME",
              "value": "Contact"
            },
            {
              "key": "RECORD_TYPE_ID",
              "value": "012000000000000AAA"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Wed, 27 Sep 2023 15:55:22 GMT"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=63072000; includeSubDomains"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Robots-Tag",
          "value": "none"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache,must-revalidate,max-age=0,no-store,private"
        },
        {
          "key": "ETag",
          "value": "\"ef21257ca08f8952ff154f57dc775336--gzip\""
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=UTF-8"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"eTag\": \"ef21257ca08f8952ff154f57dc775336\",\n    \"picklistFieldValues\": {\n        \"CleanStatus\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"bd535d2876948d8bb91fad409b69e359\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"In Sync\",\n                    \"validFor\": [],\n                    \"value\": \"Matched\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Different\",\n                    \"validFor\": [],\n                    \"value\": \"Different\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Reviewed\",\n                    \"validFor\": [],\n                    \"value\": \"Acknowledged\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Not Found\",\n                    \"validFor\": [],\n                    \"value\": \"NotFound\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Inactive\",\n                    \"validFor\": [],\n                    \"value\": \"Inactive\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Not Compared\",\n                    \"validFor\": [],\n                    \"value\": \"Pending\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Select Match\",\n                    \"validFor\": [],\n                    \"value\": \"SelectMatch\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Skipped\",\n                    \"validFor\": [],\n                    \"value\": \"Skipped\"\n                }\n            ]\n        },\n        \"LeadSource\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"edb5c49da4ff7bfe2cf15ecae67a306c\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"Web\",\n                    \"validFor\": [],\n                    \"value\": \"Web\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Phone Inquiry\",\n                    \"validFor\": [],\n                    \"value\": \"Phone Inquiry\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Partner Referral\",\n                    \"validFor\": [],\n                    \"value\": \"Partner Referral\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Purchased List\",\n                    \"validFor\": [],\n                    \"value\": \"Purchased List\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Other\",\n                    \"validFor\": [],\n                    \"value\": \"Other\"\n                }\n            ]\n        },\n        \"Level__c\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"ffef8adfed014c3057fd14658f5202c4\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"Secondary\",\n                    \"validFor\": [],\n                    \"value\": \"Secondary\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Tertiary\",\n                    \"validFor\": [],\n                    \"value\": \"Tertiary\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Primary\",\n                    \"validFor\": [],\n                    \"value\": \"Primary\"\n                }\n            ]\n        },\n        \"MailingGeocodeAccuracy\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"776a2f5e98c411bafb45081e39a6f1ec\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"Address\",\n                    \"validFor\": [],\n                    \"value\": \"Address\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"NearAddress\",\n                    \"validFor\": [],\n                    \"value\": \"NearAddress\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Block\",\n                    \"validFor\": [],\n                    \"value\": \"Block\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Street\",\n                    \"validFor\": [],\n                    \"value\": \"Street\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"ExtendedZip\",\n                    \"validFor\": [],\n                    \"value\": \"ExtendedZip\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Zip\",\n                    \"validFor\": [],\n                    \"value\": \"Zip\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Neighborhood\",\n                    \"validFor\": [],\n                    \"value\": \"Neighborhood\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"City\",\n                    \"validFor\": [],\n                    \"value\": \"City\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"County\",\n                    \"validFor\": [],\n                    \"value\": \"County\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"State\",\n                    \"validFor\": [],\n                    \"value\": \"State\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Unknown\",\n                    \"validFor\": [],\n                    \"value\": \"Unknown\"\n                }\n            ]\n        },\n        \"OtherGeocodeAccuracy\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"776a2f5e98c411bafb45081e39a6f1ec\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"Address\",\n                    \"validFor\": [],\n                    \"value\": \"Address\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"NearAddress\",\n                    \"validFor\": [],\n                    \"value\": \"NearAddress\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Block\",\n                    \"validFor\": [],\n                    \"value\": \"Block\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Street\",\n                    \"validFor\": [],\n                    \"value\": \"Street\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"ExtendedZip\",\n                    \"validFor\": [],\n                    \"value\": \"ExtendedZip\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Zip\",\n                    \"validFor\": [],\n                    \"value\": \"Zip\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Neighborhood\",\n                    \"validFor\": [],\n                    \"value\": \"Neighborhood\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"City\",\n                    \"validFor\": [],\n                    \"value\": \"City\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"County\",\n                    \"validFor\": [],\n                    \"value\": \"County\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"State\",\n                    \"validFor\": [],\n                    \"value\": \"State\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Unknown\",\n                    \"validFor\": [],\n                    \"value\": \"Unknown\"\n                }\n            ]\n        },\n        \"Salutation\": {\n            \"controllerValues\": {},\n            \"defaultValue\": null,\n            \"eTag\": \"2de0a04925bdf8e3c70fe1177129a63f\",\n            \"url\": \"/services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation\",\n            \"values\": [\n                {\n                    \"attributes\": null,\n                    \"label\": \"Mr.\",\n                    \"validFor\": [],\n                    \"value\": \"Mr.\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Ms.\",\n                    \"validFor\": [],\n                    \"value\": \"Ms.\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Mrs.\",\n                    \"validFor\": [],\n                    \"value\": \"Mrs.\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Dr.\",\n                    \"validFor\": [],\n                    \"value\": \"Dr.\"\n                },\n                {\n                    \"attributes\": null,\n                    \"label\": \"Prof.\",\n                    \"validFor\": [],\n                    \"value\": \"Prof.\"\n                }\n            ]\n        }\n    }\n}"
    }
  ]
}