action lgtm_get_project_config { label: "Get configuration for a project identified by numeric identifier" description: "Get the latest configuration for a specific project using the numeric project identifier." provider: lgtm method: GET path: "/projects/{project-id}/settings/analysis-configuration" encoding: json input: { type: "object" properties: { "project-id": { type: "integer" format: "int64" } source: { type: "string" enum: ["repository", "administrator"] } } required: ["project-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }