action apptigent_calculate_average { label: "Math - Calculate average" description: "Calculate the average of two or more numbers" provider: apptigent method: POST path: "/CalculateAverage" encoding: json input: { type: "object" required: ["decimals", "input"] properties: { decimals: { type: "number" description: "Round to number of decimal places" } input: { type: "array" description: "Colllection of values to calculate" items: { type: "number" } } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }