getUserStatistics
Retrieve detailed contribution statistics for a specific user in Weblate translation projects by providing their username. Supports efficient user activity tracking and analysis.
Instructions
Get contribution statistics for a specific user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username to get statistics for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"description": "The username to get statistics for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}