{ "annotations": { "title": "Delete project item", "readOnlyHint": false }, "description": "Delete a specific Project item for a user or org", "inputSchema": { "properties": { "item_id": { "description": "The internal project item ID to delete from the project (not the issue or pull request ID).", "type": "number" }, "owner": { "description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive.", "type": "string" }, "owner_type": { "description": "Owner type", "enum": [ "user", "org" ], "type": "string" }, "project_number": { "description": "The project's number.", "type": "number" } }, "required": [ "owner_type", "owner", "project_number", "item_id" ], "type": "object" }, "name": "delete_project_item" }