get_maintainer_problems
Retrieve reported problems for packages maintained by a specific person, optionally filtered by repository or paginated from a starting project.
Instructions
Get problems reported for packages maintained by a specific person.
Args:
maintainer: Maintainer email address
repository: Optional repository to limit results to
start_from: Project name to start from for pagination
Returns:
JSON formatted list of problems for the maintainer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maintainer | Yes | ||
repository | No | ||
start_from | No |
Input Schema (JSON Schema)
{
"properties": {
"maintainer": {
"title": "Maintainer",
"type": "string"
},
"repository": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Repository"
},
"start_from": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start From"
}
},
"required": [
"maintainer"
],
"title": "get_maintainer_problemsArguments",
"type": "object"
}