getComponentStatistics
Retrieve detailed statistics for a specific component in a Weblate project, including translation status and progress, by providing the project and component slugs.
Instructions
Get detailed statistics for a specific component
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentSlug | Yes | The slug of the component | |
projectSlug | Yes | The slug of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"componentSlug": {
"description": "The slug of the component",
"type": "string"
},
"projectSlug": {
"description": "The slug of the project",
"type": "string"
}
},
"required": [
"projectSlug",
"componentSlug"
],
"type": "object"
}