action snyk_list_all_licenses { label: "List all licenses" description: "" provider: snyk method: POST path: "/org/{orgId}/licenses" encoding: json input: { type: "object" properties: { filters: { type: "object" properties: { dependencies: { description: "The list of dependency IDs to filter the results by" type: "object" } languages: { type: "array" description: "The type of languages to filter the results by" items: { type: "object" } } licenses: { description: "The list of license IDs to filter the results by" type: "object" } projects: { description: "The list of project IDs to filter the results by" type: "object" } severity: { type: "array" description: "The severities to filter the results by" items: { type: "object" } } } } order: { type: "string" enum: ["asc", "desc"] } orgId: { type: "string" } sortBy: { type: "string" enum: ["license", "dependencies", "projects", "severity"] } } required: ["orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }