action snyk_delete_ignores { label: "Delete ignores" description: "" provider: snyk method: DELETE path: "/org/{orgId}/project/{projectId}/ignore/{issueId}" encoding: json input: { type: "object" properties: { issueId: { type: "string" } orgId: { type: "string" } projectId: { type: "string" } } required: ["issueId", "orgId", "projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }