{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DependentTaxRateStrategy", "title": "Dependent tax rate strategy data", "required": [ "BaseTaxationCodes", "Value" ], "type": "object", "properties": { "Value": { "type": "number", "description": "Tax rate, e.g. `0.1` in case of 10% tax rate.", "format": "double" }, "BaseTaxationCodes": { "type": "array", "items": { "type": "string" }, "description": "Codes of the taxations that are included in the base of calculation." } }, "additionalProperties": false, "x-schema-id": "DependentTaxRateStrategy" }