action snyk_update_a_project { label: "Update a project" description: "" provider: snyk method: PUT path: "/org/{orgId}/project/{projectId}" encoding: json input: { type: "object" properties: { branch: { type: "string" description: "The branch that this project should be monitoring" } orgId: { type: "string" } owner: { type: "object" description: "Set to `null` to remove all ownership. User must be a member of the same organization as the project." properties: { id: { type: "string" description: "A user to assign as the project owner." } } } projectId: { type: "string" } } required: ["orgId", "projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }