action meshery_id_delete_schedules { label: "Handle DELETE reqeuest for Schedules" description: "Deletes a schedule with the given id" provider: meshery method: DELETE path: "/api/user/schedules/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }