Flipdish · Schema

HttpPostedFileBase

HttpPostedFileBase schema from Flipdish API - Menus.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
ContentLength integer
ContentType string
FileName string
InputStream object
View JSON Schema on GitHub

JSON Schema

menus-http-posted-file-base-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/menus-http-posted-file-base-schema.json",
  "title": "HttpPostedFileBase",
  "description": "HttpPostedFileBase schema from Flipdish API - Menus.",
  "type": "object",
  "properties": {
    "ContentLength": {
      "format": "int32",
      "type": "integer",
      "readOnly": true,
      "example": 1
    },
    "ContentType": {
      "type": "string",
      "readOnly": true,
      "example": "string"
    },
    "FileName": {
      "type": "string",
      "readOnly": true,
      "example": "Example Name"
    },
    "InputStream": {
      "$ref": "#/components/schemas/Stream"
    }
  }
}