action math_get_numbers_is_square { label: "get_numbers_is_square" description: "Checks whether a given number is a square number or not." provider: math method: GET path: "/numbers/is-square" encoding: json input: { type: "object" properties: { number: { type: "integer" format: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }