action maif_find_all_scripts { label: "Get all scripts" description: "Get all scripts" provider: maif method: GET path: "/api/scripts" encoding: json output: { type: "array" items: { type: "object" description: "A script to transformer otoroshi requests " required: ["id", "name", "desc", "code"] properties: { code: { type: "object" description: "The code of the script" } desc: { type: "object" description: "The description of the script" } id: { type: "string" description: "The id of the script" } name: { type: "string" description: "The name of the script" } } } } }