action snyk_get_test_counts { label: "Get test counts" description: "" provider: snyk method: POST path: "/reporting/counts/tests" encoding: json input: { type: "object" properties: { filters: { type: "object" required: ["orgs"] properties: { isPrivate: { type: "boolean" description: "If set to `true`, only include tests which were conducted against private projects, if set to `false` only include tests which were conducted against public projects" } issuesPrevented: { type: "boolean" description: "If set to `true`, only include tests which prevented issues from being introduced, if set to `false` only include tests which did not prevent issues from being introduced" } orgs: { description: "The list of org IDs to filter the results by" type: "object" } projects: { description: "The list of project IDs to filter issues by, max projects allowed is 1000" type: "object" } } } from: { type: "string" } groupBy: { type: "string" enum: ["isPrivate", "issuesPrevented"] } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }