Concatenated attribute statistics. If needed, the type of the attribute (string or number) may be inferred from mostFrequentValues
and/or min
/max
fields.
Property | Type | Description |
---|---|---|
fieldName | string | Name of the field. |
label | string | Label of the field name. If label is empty, the label and fieldName are identical. |
modelName | string | A fixed string of building information, similar to a filter. Used by client applications to define specific behavior for the modelName. The default filter types define the modelName for the attribute statistics. Possible values are:
|
min | number | Minimum value. Numeric attributes only. |
max | number | Maximum value. Numeric attributes only. |
mostFrequentValues | integer[0:256], string[0:256] | Most frequent value, if applicable for this attribute. Truncated to 256 entries. |
subLayerIds | integer[] | List of sublayers where this attribute may be found. |
Note: properties in bold are required
{
"fieldName": "fournitures",
"label": "Meuble interieur",
"modelName": "custom",
"mostFrequentValues": [
"chair",
"table",
"cubicle",
"boxes"
],
"subLayerIds": [
10,
4,
5
]
}
{
"fieldName": "floor",
"label": "Etages",
"modelName": "bldgLevel",
"mostFrequentValues": [
1,
2,
3
],
"subLayerIds": [
10,
15
]
}
{
"fieldName": "diameter",
"label": "Diametre de conduit",
"min": 0.2566,
"max": 2.256,
"subLayerIds": [
3,
5
]
}