action wikimedia_get_metrics_bytes_difference_absolute_aggregate_project_editor_t { label: "Get the sum of absolute value of text bytes difference between current edit and\nprevious one.\n" description: "Given a Mediawiki project and a date range, returns a timeseries of absolute bytes\ndifference sums. You can filter by editors-type (all-editor-types, anonymous, group-bot,\nname-bot, user) and page-type (all-page-types, content, non-content). You can choose\nbetween daily and monthly granularity as well.\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/bytes-difference/absolute/aggregate/{project}/{editor-type}/{page-type}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { "editor-type": { type: "string" } end: { type: "string" } granularity: { type: "string" } "page-type": { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["editor-type", "end", "granularity", "page-type", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }