seriesMetaData
Namespace: | (default namespace) |
XML Schema: | api.xsd |
SeriesMetaData contains properties to define a series column in custom table
JSON Example
{
"seriesMetaData": [
{
"name" : [series name],
"display" : [display name],
"freq" : [LF | HF],
"dataType" : [timestamp | int | text | bigtext | real | boolean],
"isVisible" : [true | false], (Optional:Default is true)
"customProperties": [
{
"name": [name],
"value": [value]
},
...
]
},
...
]
}
JSON
property | type | description |
---|---|---|
name | name (string) | Name of the time series column |
display | display (string) | Display name of the time series column shown in UI |
freq | freq (string) |
Frequency of the time series column, either HF or LF, indicates if the column needs to updated for every data insertion. Example of high frequency (HF) is traffic. Example of low frequency (LF) is AdminStatus. |
dataType | dataType (string) | Must be one of these data types: timestamp, int, text, bigtext, real, boolean |
isVisible | isVisible (boolean) | If false, the time series column will not be shown in UI. Default is true |
customProperties | array of customProperties (customProperty) | List of customProperty |