action wikimedia_get_metrics_editors_top_by_net_bytes_difference_project_editor_t { label: "Get top 100 editors by net bytes-difference." description: "Given a Mediawiki project and a date (day or month), returns a timeseries of the top 100\neditors by net bytes-difference. You can filter by editor-type (all-editor-types, anonymous,\ngroup-bot, name-bot, user) or page-type (all-page-types, content or non-content). The\nuser_text returned is either the mediawiki user_text if the user is registered, or\n\"Anonymous Editor\" if user is anonymous.\n\n- Stability: [experimental](https://www.mediawiki.org/wiki/API_versioning#Experimental)\n- Rate limit: 25 req/s\n- License: Data accessible via this endpoint is available under the\n [CC0 1.0 license](https://creativecommons.org/publicdomain/zero/1.0/).\n" provider: wikimedia method: GET path: "/metrics/editors/top-by-net-bytes-difference/{project}/{editor-type}/{page-type}/{year}/{month}/{day}" encoding: json input: { type: "object" properties: { day: { type: "string" } "editor-type": { type: "string" } month: { type: "string" } "page-type": { type: "string" } project: { type: "string" } year: { type: "string" } } required: ["day", "editor-type", "month", "page-type", "project", "year"] additionalProperties: false } output: { type: "object" additionalProperties: true } }