Defines a container that holds a set of table elements that can be displayed together.
Referenced by: attributeTableInfo
Properties
| Property | Details | 
|---|---|
| attributeTableElements[] | An array of Element objects that represent an ordered list of table elements. Nested group elements are not supported. Array of items of the following types: | 
| description | A string that describes the element in detail. | 
| label | A unique string representing the group column label in the table. | 
| type | A string value indicating what the element represents. Valid value of this property group | 
Example
{
  "label": "Address Information",
  "type": "group",
  "attributeTableElements": [
    {
      "fieldName": "StreetNumber",
      "type": "field"
    },
    {
      "fieldName": "StreetName",
      "type": "field"
    },
    {
      "fieldName": "City",
      "type": "field"
    }
  ]
}