action maif_patch_script { label: "Update a script with a diff" description: "Update a script with a diff" provider: maif method: PATCH 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" } } } }