action lgtm_create_query_job { label: "Run a CodeQL query on one or more projects" description: "Submit a query to run on one or more projects on LGTM. The query is included in the body of the request.\n" provider: lgtm method: POST path: "/queryjobs" encoding: json input: { type: "object" properties: { language: { type: "string" } "project-id": { type: "array" items: { type: "integer" format: "int64" } } "projects-list": { type: "string" } } required: ["language"] additionalProperties: false } output: { type: "object" required: ["task-type"] properties: { id: { type: "integer" format: "int64" description: "The identifier for the operation." } status: { type: "string" description: "Status of the operation." enum: ["pending", "done"] } "task-result": { type: "object" } "task-result-url": { type: "string" description: "The URL for the result of the task. For some operations, included only on completion." } "task-type": { type: "string" enum: ["analysis", "codereview", "queryjob"] } uploads: { type: "object" } } } }