Flipdish · Schema

TelemetrySeriesProperty

TelemetrySeriesProperty.

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
Name string Name.
Type string Type.
IntValues array IntValues.
StringValues array StringValues.
DoubleValues array DoubleValues.
View JSON Schema on GitHub

JSON Schema

devices-telemetry-series-property-schema.json Raw ↑
{
  "$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
      ]
    }
  }
}