action apptigent_calculate_absolute { label: "Math - Calculate Absolute" description: "Calculate the absolute value of a number" provider: apptigent method: POST path: "/CalculateAbsolute" encoding: json input: { type: "object" required: ["decimals", "input"] properties: { decimals: { type: "number" description: "Round to number of decimal places" } input: { type: "number" description: "Numeric value to calculate" } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }