action vatapi_convert_price { label: "Convert a price to or from VAT price." provider: vatapi method: GET path: "/vat-price" encoding: json input: { type: "object" properties: { "Response-Type": { type: "string" } code: { type: "string" } country_rate: { type: "string" } price: { type: "string" } type: { type: "string" } } required: ["code", "price"] additionalProperties: false } output: { type: "object" additionalProperties: true } }