action apptigent_convert_temperature { label: "Math - Convert temperature" description: "Convert value from one temperature measurement to another" provider: apptigent method: POST path: "/ConvertTemperature" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" } source: { type: "string" enum: ["Celsius", "Fahrenheit", "Newton", "Kelvin"] } target: { type: "string" enum: ["Celsius", "Fahrenheit", "Newton", "Kelvin"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }