action sonar_get_convert { label: "Convert a currency amount to multiple other currencies" provider: sonar method: GET path: "/convert" encoding: json input: { type: "object" properties: { amount: { type: "string" } decimal_places: { type: "string" } from: { type: "string" } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }