action signl4_delete_teams_team_id_schedules_duty_id { label: "Delete a specific duty." provider: signl4 method: DELETE path: "/teams/{teamId}/schedules/{dutyId}" encoding: json input: { type: "object" properties: { dutyId: { type: "string" } teamId: { type: "string" } } required: ["dutyId", "teamId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }