# Bugzilla REST Extractor (`datamule/bugzilla-rest-extractor`) Actor

Point at any Bugzilla server (Mozilla, Red Hat, LibreOffice, Eclipse, Gentoo) and get one structured row per bug: summary, status, resolution, product, component, priority, severity, reporter, timestamps, keywords. Also lists products and server version.

- **URL**: https://apify.com/datamule/bugzilla-rest-extractor.md
- **Developed by:** [Datamule](https://apify.com/datamule) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 0 monthly users, 50.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.35 / 1,000 records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Bugzilla REST Extractor

A GENERIC **"point at any Bugzilla server"** Apify actor — the issue-tracker
sibling of the Gitea/Jenkins generic extractors. Bugzilla (Mozilla's tracker,
20+ years old) sits behind Red Hat, LibreOffice, Eclipse, Gentoo, KDE, the Linux
kernel, GCC and hundreds of distros/projects, and every install ships the same
native **REST API** with anonymous read on the public bug corpus — so ONE actor
spans every Bugzilla install in existence, no per-tracker scraper.

### Input

| Field | Mode | Meaning |
|-------|------|---------|
| `sources` (**required**) | all | One or more Bugzilla base URLs — `https://bugzilla.redhat.com`, `https://bugs.eclipse.org/bugs` (the `/bugs` mount is kept), `https://bugs.documentfoundation.org`, `https://bugzilla.mozilla.org`, `https://bugs.gentoo.org`, or any self-hosted install. `/rest/...` is appended for you. |
| `mode` | — | `products` (safe default), `bugs`, or `version`. If API callers omit `mode` but supply a bug filter, the actor infers `bugs`. |
| `product` / `component` / `status` | bugs | Filter bugs. Comma lists OR their values. |
| `quicksearch` | bugs | A Bugzilla quicksearch expression. |
| `changedAfter` | bugs | Only bugs changed at/after a date/datetime or relative token (`-7d`). |
| `maxRecords` | all | Global cap across every source (one row = one billable event). |
| `apiKey` | all | Optional Bugzilla API key for restricted products (`X-BUGZILLA-API-KEY`). Never logged. |
| `extraHeaders` | all | Optional extra request headers (JSON). |

The ready-to-run defaults query Eclipse Bugzilla in `products` mode and return at most 20 rows, so a first click is fast, bounded, and produces useful data.

**bugs mode requires at least one filter** (product / component / quicksearch /
changedAfter). An unbounded `/rest/bug` is rejected by Bugzilla servers (Mozilla's
BMO returns HTTP 400 "You may not search ... without any search terms"), so the
runner surfaces a clear input error rather than a blind query. Run `products` mode
first to discover valid product names.

### Modes

* **bugs** (default) — paginated `/rest/bug` → one flat row per bug: `id`,
  `summary`, `status`, `resolution`, `product`, `component`, `priority`,
  `severity`, reporter/assignee (name + numeric id only), `creationTime`,
  `lastChangeTime`, `keywords[]`, `version`, `opSys`, `isConfirmed`,
  `dependsOn[]`, `blocks[]`, plus a lossless `_raw`.
* **products** — `/rest/product?type=selectable` → one row per product
  (`id`, `product`, `classification`, `description`, `isActive`, `milestones[]`).
* **version** — `/rest/version` → one row per source (reachability + server
  version probe).

### Behaviour

* Every field is read by **key presence** (`dict.get`) — a bug that omits
  `resolution` / `keywords` / a Mozilla `cf_*` custom yields `null` for that
  column, never a crash. Unknown fields (incl. `cf_*` customs) survive in `_raw`.
* **Anti-leak:** reporter/assignee emails are public-tracker data but are kept out
  of the flat columns — only the display name + numeric id are flattened. The full
  `*_detail` object (email included) is preserved only in `_raw`.
* A source behind an **anti-bot interstitial** (a non-JSON HTTP 200, e.g. Anubis)
  is a clean skip-with-warning. In multi-source runs a per-source failure is
  skipped with a warning; a single failing source fails the run so nothing broken
  ships silently.
* An empty result → 0 records and a clean exit 0. Unpopular is fine; the actor
  never fabricates rows.

### Pricing

Pay-per-event: one `record` charge per emitted dataset row.

### Development

```bash
python3.12 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python tests_logic.py          # pure-logic tests (no network)
apify validate-schema
apify run                       # local run (set .actor storage INPUT.json)
````

# Actor input Schema

## `sources` (type: `array`):

One or more Bugzilla server base URLs. Bugzilla ships a native REST API with anonymous read, so ONE actor works against any install: https://bugzilla.redhat.com (Red Hat), https://bugs.eclipse.org/bugs (Eclipse — note the /bugs mount), https://bugs.documentfoundation.org (LibreOffice), https://bugzilla.mozilla.org (Mozilla), https://bugs.gentoo.org (Gentoo), or any self-hosted / project instance. Paste the server root as given (the /rest/... path is appended for you). When several are listed, each is queried in turn and a source that is unreachable or behind an anti-bot wall is skipped with a warning.

## `mode` (type: `string`):

What to extract. products (safe default): one row per selectable product. bugs: one row per bug from /rest/bug — REQUIRES at least one filter (Product, Component, Quick search, or Changed after), because an unbounded bug query is rejected by Bugzilla servers. products: one row per product from /rest/product?type=selectable (name, classification, milestones) — a cheap way to discover valid Product names to feed back into bugs mode. version: one row per server from /rest/version (a reachability + server-version probe).

## `product` (type: `string`):

BUGS MODE filter. Restrict to a Bugzilla product, e.g. Fedora on bugzilla.redhat.com, JDT on bugs.eclipse.org, Firefox on bugzilla.mozilla.org. A comma-separated list (LibreOffice,Impress) matches any of them. Run products mode first to list valid product names. This is one of the filters that satisfies the 'at least one filter' requirement.

## `component` (type: `string`):

BUGS MODE filter. Restrict to a component within the product(s), e.g. Core, UI. A comma-separated list matches any. Combine with Product to narrow further. Satisfies the 'at least one filter' requirement on its own.

## `status` (type: `string`):

BUGS MODE filter. Restrict to one or more bug statuses, e.g. NEW, ASSIGNED, RESOLVED, CLOSED. A comma-separated list matches any. NOTE: status is a NARROWING filter only — it does NOT by itself bound the query, so pair it with Product / Component / Quick search / Changed after.

## `quicksearch` (type: `string`):

BUGS MODE. A Bugzilla quicksearch expression (the same mini-language as the tracker's search box), e.g. crash tab or ALL login. Matches summaries and metadata across the server. Satisfies the 'at least one filter' requirement on its own; combine with Product to scope it.

## `changedAfter` (type: `string`):

BUGS MODE filter. Only return bugs changed at or after this time — an absolute date/datetime (2026-01-01 or 2026-01-01T00:00:00Z) or a Bugzilla relative token (-7d, -1w, -3m). Great for incremental / recently-active harvests. Satisfies the 'at least one filter' requirement on its own.

## `maxRecords` (type: `integer`):

A GLOBAL cap on the number of rows to emit across ALL sources (each row is one bug/product/server and one billable event). Pagination stops as soon as the cap is reached, so a small value is a cheap, deterministic sample. Leave empty to fetch every matching bug — a broad product query on a large server (Red Hat's Fedora alone has 700k+ bugs) can return very many rows.

## `apiKey` (type: `string`):

Optional Bugzilla API key for reading restricted products or raising rate limits (sent as the X-BUGZILLA-API-KEY header). NOT required for the public bug corpus on any of the listed servers. Never logged.

## `extraHeaders` (type: `object`):

Optional extra HTTP headers as a JSON object, e.g. {"x-api-key": "..."} for a gated / gateway-fronted instance. Not required for the public servers. Header values are never logged.

## Actor input object example

```json
{
  "sources": [
    "https://bugs.eclipse.org/bugs"
  ],
  "mode": "products",
  "product": "JDT",
  "maxRecords": 20
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "sources": [
        "https://bugs.eclipse.org/bugs"
    ],
    "product": "JDT",
    "maxRecords": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("datamule/bugzilla-rest-extractor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "sources": ["https://bugs.eclipse.org/bugs"],
    "product": "JDT",
    "maxRecords": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("datamule/bugzilla-rest-extractor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "sources": [
    "https://bugs.eclipse.org/bugs"
  ],
  "product": "JDT",
  "maxRecords": 20
}' |
apify call datamule/bugzilla-rest-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=datamule/bugzilla-rest-extractor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bugzilla REST Extractor",
        "description": "Point at any Bugzilla server (Mozilla, Red Hat, LibreOffice, Eclipse, Gentoo) and get one structured row per bug: summary, status, resolution, product, component, priority, severity, reporter, timestamps, keywords. Also lists products and server version.",
        "version": "0.1",
        "x-build-id": "EVsmASWdlW6lZfB2T"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datamule~bugzilla-rest-extractor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datamule-bugzilla-rest-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/datamule~bugzilla-rest-extractor/runs": {
            "post": {
                "operationId": "runs-sync-datamule-bugzilla-rest-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/datamule~bugzilla-rest-extractor/run-sync": {
            "post": {
                "operationId": "run-sync-datamule-bugzilla-rest-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "sources"
                ],
                "properties": {
                    "sources": {
                        "title": "Bugzilla server URL(s)",
                        "type": "array",
                        "description": "One or more Bugzilla server base URLs. Bugzilla ships a native REST API with anonymous read, so ONE actor works against any install: https://bugzilla.redhat.com (Red Hat), https://bugs.eclipse.org/bugs (Eclipse — note the /bugs mount), https://bugs.documentfoundation.org (LibreOffice), https://bugzilla.mozilla.org (Mozilla), https://bugs.gentoo.org (Gentoo), or any self-hosted / project instance. Paste the server root as given (the /rest/... path is appended for you). When several are listed, each is queried in turn and a source that is unreachable or behind an anti-bot wall is skipped with a warning.",
                        "default": [
                            "https://bugs.eclipse.org/bugs"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "bugs",
                            "products",
                            "version"
                        ],
                        "type": "string",
                        "description": "What to extract. products (safe default): one row per selectable product. bugs: one row per bug from /rest/bug — REQUIRES at least one filter (Product, Component, Quick search, or Changed after), because an unbounded bug query is rejected by Bugzilla servers. products: one row per product from /rest/product?type=selectable (name, classification, milestones) — a cheap way to discover valid Product names to feed back into bugs mode. version: one row per server from /rest/version (a reachability + server-version probe).",
                        "default": "products"
                    },
                    "product": {
                        "title": "Product (bugs mode)",
                        "type": "string",
                        "description": "BUGS MODE filter. Restrict to a Bugzilla product, e.g. Fedora on bugzilla.redhat.com, JDT on bugs.eclipse.org, Firefox on bugzilla.mozilla.org. A comma-separated list (LibreOffice,Impress) matches any of them. Run products mode first to list valid product names. This is one of the filters that satisfies the 'at least one filter' requirement."
                    },
                    "component": {
                        "title": "Component (bugs mode)",
                        "type": "string",
                        "description": "BUGS MODE filter. Restrict to a component within the product(s), e.g. Core, UI. A comma-separated list matches any. Combine with Product to narrow further. Satisfies the 'at least one filter' requirement on its own."
                    },
                    "status": {
                        "title": "Status (bugs mode)",
                        "type": "string",
                        "description": "BUGS MODE filter. Restrict to one or more bug statuses, e.g. NEW, ASSIGNED, RESOLVED, CLOSED. A comma-separated list matches any. NOTE: status is a NARROWING filter only — it does NOT by itself bound the query, so pair it with Product / Component / Quick search / Changed after."
                    },
                    "quicksearch": {
                        "title": "Quick search (bugs mode)",
                        "type": "string",
                        "description": "BUGS MODE. A Bugzilla quicksearch expression (the same mini-language as the tracker's search box), e.g. crash tab or ALL login. Matches summaries and metadata across the server. Satisfies the 'at least one filter' requirement on its own; combine with Product to scope it."
                    },
                    "changedAfter": {
                        "title": "Changed after (bugs mode)",
                        "type": "string",
                        "description": "BUGS MODE filter. Only return bugs changed at or after this time — an absolute date/datetime (2026-01-01 or 2026-01-01T00:00:00Z) or a Bugzilla relative token (-7d, -1w, -3m). Great for incremental / recently-active harvests. Satisfies the 'at least one filter' requirement on its own."
                    },
                    "maxRecords": {
                        "title": "Max records (global cap)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "A GLOBAL cap on the number of rows to emit across ALL sources (each row is one bug/product/server and one billable event). Pagination stops as soon as the cap is reached, so a small value is a cheap, deterministic sample. Leave empty to fetch every matching bug — a broad product query on a large server (Red Hat's Fedora alone has 700k+ bugs) can return very many rows.",
                        "default": 20
                    },
                    "apiKey": {
                        "title": "Bugzilla API key",
                        "type": "string",
                        "description": "Optional Bugzilla API key for reading restricted products or raising rate limits (sent as the X-BUGZILLA-API-KEY header). NOT required for the public bug corpus on any of the listed servers. Never logged."
                    },
                    "extraHeaders": {
                        "title": "Extra request headers",
                        "type": "object",
                        "description": "Optional extra HTTP headers as a JSON object, e.g. {\"x-api-key\": \"...\"} for a gated / gateway-fronted instance. Not required for the public servers. Header values are never logged."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
