action lgtm_get_project { label: "Get project by numeric identifier" description: "Get the latest summary for a specific project using the numeric project identifier.\n\nTo find the LGTM identifier for a project, list all projects using the `/projects` endpoint and look up the project by name. Alternatively, use the `/projects/{provider}/{org}/{name}` endpoint. If you have administration access, the project identifier is also displayed in the administration page for the project.\n" provider: lgtm method: GET path: "/projects/{project-id}" encoding: json input: { type: "object" properties: { "project-id": { type: "integer" format: "int64" } } required: ["project-id"] additionalProperties: false } output: { type: "object" } }