Flipdish · Schema
TelemetrySeriesProperty
TelemetrySeriesProperty.
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | Name. |
| Type | string | Type. |
| IntValues | array | IntValues. |
| StringValues | array | StringValues. |
| DoubleValues | array | DoubleValues. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/devices-telemetry-series-property-schema.json",
"title": "TelemetrySeriesProperty",
"description": "TelemetrySeriesProperty.",
"type": "object",
"properties": {
"Name": {
"description": "Name.",
"type": "string",
"example": "Example Name"
},
"Type": {
"description": "Type.",
"type": "string",
"example": "string"
},
"IntValues": {
"description": "IntValues.",
"type": "array",
"items": {
"format": "int32",
"type": "integer"
},
"example": [
1
]
},
"StringValues": {
"description": "StringValues.",
"type": "array",
"items": {
"type": "string"
},
"example": [
"string"
]
},
"DoubleValues": {
"description": "DoubleValues.",
"type": "array",
"items": {
"format": "double",
"type": "number"
},
"example": [
1.0
]
}
}
}