action maif_find_script_by_id { label: "Get a script" description: "Get a script" provider: maif method: GET path: "/api/scripts/{scriptId}" encoding: json input: { type: "object" properties: { scriptId: { type: "string" } } required: ["scriptId"] additionalProperties: false } output: { type: "object" description: "A script to transformer otoroshi requests " required: ["code", "desc", "id", "name"] 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" } } } }