action apptigent_calculate_modulo { label: "Math - Calculate Modulo" description: "Calculate the remainder of dividing two numbers" provider: apptigent method: POST path: "/CalculateModulo" 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" } } } }