{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-item-tax-structure.json", "name": "ItemTax", "description": "The tax configuration.", "type": "object", "properties": { "percentageValue": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-percentage-value-schema.json", "description": "Specify the percentage value of the tax." }, "isValueAddedTax": { "type": "boolean", "description": "Whether this tax is a value-added tax.", "example": true } }, "required": [ "percentageValue", "isValueAddedTax" ] }