FRAMES | NO FRAMES Description | Parameters | Examples | Response
List Field Values (Operation)
URL http://<extended-properties-url>/<tableName>/listValues
Parent Resource Extended Properties

Description

Returns a list of domain values and descriptions for an extended property field.

This operation is intended for extended/linked property fields that are associated with a geodatabase domain. Refer to the domain attribute of an extended property record to determine if a given field has an associated domain.

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json
user Required
Description: The username of the client.
field Required
Description: The field name of the extended property for which to retrieve values.

Example Usage

Example 1: URL for listing the values of field "JTXX_CUSTOMERS.TYPE" of job ID 5 in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/jobs/5/extendedProperties/JTXX_CUSTOMERS/listValues?user=cjones&field=TYPE

JSON Response Syntax

{
  "values": [
    { "value": <value1>, "description": "<description1>" },
    { "value": <value2>, "description": "<description2>" },
    ...
  ]
}

JSON Response Example

{
  "values": [
    { "value": 1, "description": "New customer" },
    { "value": 2, "description": "Existing customer" },
    { "value": 3, "description": "Not a customer" }
  ]
}