Flipdish · Schema

Stream

Stream schema from Flipdish API - Apps.

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
CanRead boolean
CanSeek boolean
CanTimeout boolean
CanWrite boolean
Length integer
Position integer
ReadTimeout integer
WriteTimeout integer
View JSON Schema on GitHub

JSON Schema

apps-stream-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/apps-stream-schema.json",
  "title": "Stream",
  "description": "Stream schema from Flipdish API - Apps.",
  "type": "object",
  "properties": {
    "CanRead": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    },
    "CanSeek": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    },
    "CanTimeout": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    },
    "CanWrite": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    },
    "Length": {
      "format": "int64",
      "type": "integer",
      "readOnly": true,
      "example": 1
    },
    "Position": {
      "format": "int64",
      "type": "integer",
      "example": 1
    },
    "ReadTimeout": {
      "format": "int32",
      "type": "integer",
      "example": 1
    },
    "WriteTimeout": {
      "format": "int32",
      "type": "integer",
      "example": 1
    }
  }
}