action apptigent_calculate_addition { label: "Math - Calculate Addition" description: "Calculate the sum of two numbers" provider: apptigent method: POST path: "/CalculateAddition" encoding: json input: { type: "object" required: ["decimals", "input", "value"] properties: { decimals: { type: "number" description: "Round to number of decimal places" } input: { type: "number" description: "Numeric value" } value: { type: "number" description: "Addend, subtrahend, factor, divisor or radicand" } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }