action gitlab_get_v3_projects_id_keys { label: "Get a specific project's deploy keys" description: "Get a specific project's deploy keys" provider: gitlab method: GET path: "/v3/projects/{id}/keys" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }