HttpPostedFileBase schema from Flipdish API - Menus.
{ "$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" } } }