action lgtm_delete_project { label: "Delete project by numeric identifier" description: "Delete a project with a particular numeric project identifier.\nIn addition to access to the project, administrative access to LGTM or the LGTM Enterprise instance is required to delete projects.\n" provider: lgtm method: DELETE path: "/projects/{project-id}" encoding: json input: { type: "object" properties: { "project-id": { type: "integer" format: "int64" } } required: ["project-id"] additionalProperties: false } output: { type: "object" } }