{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-menu-tax-rate-schema.json", "title": "MenuTaxRate", "description": "Tax Rates Associated with a Menu", "type": "object", "properties": { "TaxRateId": { "format": "int32", "description": "Id of Tax Rate", "type": "integer", "example": 500123 }, "Name": { "description": "Name of Tax Rate", "maxLength": 2048, "minLength": 0, "type": "string", "example": "Example Name" }, "Rate": { "format": "double", "description": "In Percentage", "type": "number", "example": 1.0 } } }