Description
Represents user community in the ArcGIS Workflow Manager system.
Parameters
Parameter |
Details |
f |
Description: The response format. The default response format is html.
Values: html | json |
Example Usage
Example 1: URL for the table relationships in the "Workflow" service on sampleserver.
http://sampleserver/arcgis/rest/services/Workflow/WMServer/community
JSON Response Syntax
{
"tableRelationships": [
{
"tableName": "<tableName1>",
"tableAlias": "<tableAlias1>",
"linkField": "<linkField1>",
"cardinality": <cardinality1>
},
{
"tableName": "<tableName2>",
"tableAlias": "<tableAlias2>",
"linkField": "<linkField2>",
"cardinality": <cardinality2>
},
...
]
}
JSON Response Example
{
"tableRelationships": [
{
"tableName": "JTXX_QAQC_STATUS",
"tableAlias": "JTXX_QAQC_STATUS",
"linkField": "JOB_ID",
"cardinality": 1
},
{
"tableName": "JTXX_RELATED_CUSTOMERS",
"tableAlias": "JTXX_RELATED_CUSTOMERS",
"linkField": "JOB_ID",
"cardinality": 2
},
]
}