# OGC API Features Extractor (`datamule/ogc-api-features-extractor`) Actor

Point at ANY OGC API Features service (the modern WFS successor) — pygeoapi, ldproxy, GeoServer, national mapping & city GIS. List collections or page /items by bbox/datetime/CQL to flat rows (geometry, lon/lat, computed bbox, properties) + raw GeoJSON. Pay per feature.

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

## Pricing

from $0.35 / 1,000 features

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

## OGC API Features Extractor

A **generic "point at any OGC API Features service" scraper**. [OGC API
Features](https://ogcapi.ogc.org/features/) is the modern, JSON/GeoJSON,
OGC-blessed **successor to WFS** (Web Feature Service) — one open specification
spoken by **national mapping agencies**, **city / regional GIS portals**, and the
**pygeoapi**, **ldproxy** and **GeoServer** server families. Give this actor a
service root URL, optionally pick collections + an area + a time window + a
free-form query passthrough, and it pages the whole `/items` FeatureCollection
into clean, flat dataset rows plus a lossless `raw` GeoJSON Feature.

One actor, every OGC API Features service — no per-instance scraper needed.
(STAC — the satellite/EO catalog standard — is itself a *profile* of OGC API
Features; for STAC catalogs use the companion STAC Catalog Extractor.)

### What it does

- **Fetch features** — set the service root + one or more collection ids and any
  of a **bounding box**, **date/time window**, or an arbitrary **query
  parameters** passthrough (CQL `filter` / `properties` / provider-specific
  keys), and it pulls every matching feature, auto-following the `rel="next"`
  pagination link (relative or absolute) up to your **Max features**.
- **Discover collections** — leave the collection id(s) empty (or turn on **List
  collections only**) and it reads `{serviceRoot}/collections` and returns one
  row per collection: id, title, description, item type, spatial + temporal
  extent, CRS, and a ready-to-use items URL.
- **Normalized + raw** — each feature's geometry is distilled to stable columns
  (`geometryType`, a computed **`bbox`**, and **`longitude`/`latitude`** for
  point features) while the full `properties`, `geometry` and the untouched
  Feature (`raw`) are all preserved, so nothing is lost even though every service
  exposes different attributes.

### Example inputs

Large lakes from the pygeoapi reference server (no auth):

```json
{ "serviceRoot": "https://demo.pygeoapi.io/master", "collectionId": ["lakes"], "maxItems": 100 }
````

Airports over Great Britain from ldproxy (no auth), point features → lon/lat:

```json
{ "serviceRoot": "https://demo.ldproxy.net/zoomstack", "collectionId": ["airports"], "maxItems": 200 }
```

Features inside a bounding box:

```json
{ "serviceRoot": "https://demo.pygeoapi.io/master", "collectionId": ["obs"], "bbox": [-180, -90, 180, 90], "maxItems": 50 }
```

Discover what a service exposes:

```json
{ "serviceRoot": "https://demo.pygeoapi.io/master", "listCollectionsOnly": true }
```

A key-gated national service (e.g. UK Ordnance Survey) — supply your own key,
never hardcoded:

```json
{ "serviceRoot": "https://api.os.uk/features/ngd/ofa/v1", "collectionId": ["bld-fts-buildingpart-1"], "extraHeaders": { "key": "YOUR_OS_API_KEY" }, "maxItems": 100 }
```

### Input reference

- `serviceRoot` **(required)** — the OGC API root (not `/collections` or `/items`).
- `collectionId` — collection id(s) to fetch; empty ⇒ discovery mode.
- `listCollectionsOnly` — force discovery mode (list collections, fetch nothing).
- `bbox` — `[west, south, east, north]` in WGS84 degrees (a 6-number 3D box is
  also accepted).
- `datetime` — RFC 3339 instant or range; open ranges with `..`.
- `queryParams` — arbitrary extra `/items` query params (CQL, `properties`, …).
- `limit` — server-side page size (the actor paginates regardless).
- `maxItems` — total feature cap across all pages/collections (default 1000).
- `bearerToken` / `extraHeaders` — optional auth for key-gated services.

### Authentication

**None required** for the public services (pygeoapi, ldproxy demos). For
key-gated services (e.g. national mapping agencies) supply a **Bearer token**
and/or **Extra request headers** — both optional, never required, and the token
is never logged.

### Output

One dataset item per feature, with normalized columns plus:

- `_serviceRoot` / `_mode` — the source service and whether the row is a
  `feature` or a `collection`.
- `geometry` — the feature geometry (GeoJSON), `properties` — the full attribute
  bag, `bbox` — computed from the geometry when the feature omits one,
  `longitude`/`latitude` — set for point features.
- `raw` — the complete, untouched GeoJSON Feature.

A query that matches nothing returns **0 features, not an error**.

### Pricing

**Pay per feature** — you're charged one `feature` event per record returned
(one per collection in discovery mode). A query that matches nothing costs
nothing.

### Notes

- Speaks OGC API — Features Part 1 (Core) item access; handles GeoJSON `/items`
  and the standard `rel="next"` offset pagination (relative and absolute hrefs).
- Not affiliated with or endorsed by the OGC or any target service. Respect each
  provider's terms and any per-dataset licensing.

# Actor input Schema

## `serviceRoot` (type: `string`):

The root URL of ANY OGC API Features service (the modern, GeoJSON, OGC-blessed successor to WFS). Examples: https://demo.pygeoapi.io/master (pygeoapi reference server), https://demo.ldproxy.net/zoomstack (ldproxy), https://api.os.uk/features/ngd/ofa/v1 (UK Ordnance Survey, key-gated). Do NOT include /collections or /items — just the landing/API root.

## `collectionId` (type: `array`):

Collection id(s) to pull features from, e.g. lakes, obs, airports. Accepts one or more. Leave EMPTY to run in discovery mode (list every collection the service exposes). Turn on "List collections only" below to just browse what's available first.

## `listCollectionsOnly` (type: `boolean`):

When on, the actor only reads {serviceRoot}/collections and returns one row per available collection (id, title, description, itemType, spatial/temporal extent, CRS, items URL) — it does NOT fetch any features. Use this to discover what a service exposes, then set Collection id(s) + a bbox/datetime to extract features.

## `bbox` (type: `array`):

Spatial filter as \[west, south, east, north] in WGS84 decimal degrees (a 6-number \[w,s,minZ,e,n,maxZ] 3D box is also accepted). Example for the UK: \[-8, 49, 2, 61]. Leave empty for no spatial filter.

## `datetime` (type: `string`):

Temporal filter in RFC 3339 (only honored by collections that carry a temporal dimension). A single instant (2024-06-15T00:00:00Z), a closed range (2024-06-01T00:00:00Z/2024-06-30T23:59:59Z), or an open range using ".." (2024-06-01T00:00:00Z/.. or ../2024-06-30T00:00:00Z). Leave empty for no time filter.

## `queryParams` (type: `object`):

Arbitrary extra query-string parameters appended to each /items request, as a JSON object — the generic passthrough for property filters, CQL, and provider-specific keys. Examples: a simple property equality {"name": "Sumburgh Airport"}; a CQL filter {"filter": "scalerank<3", "filter-lang": "cql2-text"}; response shaping {"properties": "name,admin", "skipGeometry": "false"}. The reserved keys bbox/datetime/limit/offset/f are managed by the actor and ignored here. Leave empty for none.

## `limit` (type: `integer`):

Server-side page size requested per /items call (the actor auto-follows the rel="next" link regardless). Most servers cap this around 100–10000. Leave at the default unless you have a reason to change it.

## `maxItems` (type: `integer`):

Maximum total number of features to pull across all pages and collections (the actor auto-paginates until this cap or the result set is exhausted). Each returned feature is one billable event. Default 25.

## `bearerToken` (type: `string`):

Optional OAuth2 bearer token for key-gated services (e.g. UK Ordnance Survey). Sent as Authorization: Bearer \*\*\*. NOT required for public services (pygeoapi, ldproxy demos) — leave empty. Never logged.

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

Optional extra HTTP headers to send with every request, as a JSON object, e.g. {"key": "..."} for a service that takes an API key in a header. Leave empty for public services.

## Actor input object example

```json
{
  "serviceRoot": "https://demo.pygeoapi.io/master",
  "collectionId": [
    "lakes"
  ],
  "listCollectionsOnly": false,
  "limit": 100,
  "maxItems": 25
}
```

# 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 = {
    "serviceRoot": "https://demo.pygeoapi.io/master",
    "collectionId": [
        "lakes"
    ],
    "limit": 100,
    "maxItems": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("datamule/ogc-api-features-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 = {
    "serviceRoot": "https://demo.pygeoapi.io/master",
    "collectionId": ["lakes"],
    "limit": 100,
    "maxItems": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("datamule/ogc-api-features-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 '{
  "serviceRoot": "https://demo.pygeoapi.io/master",
  "collectionId": [
    "lakes"
  ],
  "limit": 100,
  "maxItems": 25
}' |
apify call datamule/ogc-api-features-extractor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "OGC API Features Extractor",
        "description": "Point at ANY OGC API Features service (the modern WFS successor) — pygeoapi, ldproxy, GeoServer, national mapping & city GIS. List collections or page /items by bbox/datetime/CQL to flat rows (geometry, lon/lat, computed bbox, properties) + raw GeoJSON. Pay per feature.",
        "version": "0.1",
        "x-build-id": "u5NB8LK9GtpJYWbU6"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/datamule~ogc-api-features-extractor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-datamule-ogc-api-features-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~ogc-api-features-extractor/runs": {
            "post": {
                "operationId": "runs-sync-datamule-ogc-api-features-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~ogc-api-features-extractor/run-sync": {
            "post": {
                "operationId": "run-sync-datamule-ogc-api-features-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": [
                    "serviceRoot"
                ],
                "properties": {
                    "serviceRoot": {
                        "title": "OGC API service root URL",
                        "type": "string",
                        "description": "The root URL of ANY OGC API Features service (the modern, GeoJSON, OGC-blessed successor to WFS). Examples: https://demo.pygeoapi.io/master (pygeoapi reference server), https://demo.ldproxy.net/zoomstack (ldproxy), https://api.os.uk/features/ngd/ofa/v1 (UK Ordnance Survey, key-gated). Do NOT include /collections or /items — just the landing/API root."
                    },
                    "collectionId": {
                        "title": "Collection id(s)",
                        "type": "array",
                        "description": "Collection id(s) to pull features from, e.g. lakes, obs, airports. Accepts one or more. Leave EMPTY to run in discovery mode (list every collection the service exposes). Turn on \"List collections only\" below to just browse what's available first.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listCollectionsOnly": {
                        "title": "List collections only (discovery)",
                        "type": "boolean",
                        "description": "When on, the actor only reads {serviceRoot}/collections and returns one row per available collection (id, title, description, itemType, spatial/temporal extent, CRS, items URL) — it does NOT fetch any features. Use this to discover what a service exposes, then set Collection id(s) + a bbox/datetime to extract features.",
                        "default": false
                    },
                    "bbox": {
                        "title": "Bounding box (bbox)",
                        "type": "array",
                        "description": "Spatial filter as [west, south, east, north] in WGS84 decimal degrees (a 6-number [w,s,minZ,e,n,maxZ] 3D box is also accepted). Example for the UK: [-8, 49, 2, 61]. Leave empty for no spatial filter."
                    },
                    "datetime": {
                        "title": "Date/time window",
                        "type": "string",
                        "description": "Temporal filter in RFC 3339 (only honored by collections that carry a temporal dimension). A single instant (2024-06-15T00:00:00Z), a closed range (2024-06-01T00:00:00Z/2024-06-30T23:59:59Z), or an open range using \"..\" (2024-06-01T00:00:00Z/.. or ../2024-06-30T00:00:00Z). Leave empty for no time filter."
                    },
                    "queryParams": {
                        "title": "Extra query parameters",
                        "type": "object",
                        "description": "Arbitrary extra query-string parameters appended to each /items request, as a JSON object — the generic passthrough for property filters, CQL, and provider-specific keys. Examples: a simple property equality {\"name\": \"Sumburgh Airport\"}; a CQL filter {\"filter\": \"scalerank<3\", \"filter-lang\": \"cql2-text\"}; response shaping {\"properties\": \"name,admin\", \"skipGeometry\": \"false\"}. The reserved keys bbox/datetime/limit/offset/f are managed by the actor and ignored here. Leave empty for none."
                    },
                    "limit": {
                        "title": "Page size",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Server-side page size requested per /items call (the actor auto-follows the rel=\"next\" link regardless). Most servers cap this around 100–10000. Leave at the default unless you have a reason to change it.",
                        "default": 100
                    },
                    "maxItems": {
                        "title": "Max features (total)",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum total number of features to pull across all pages and collections (the actor auto-paginates until this cap or the result set is exhausted). Each returned feature is one billable event. Default 25.",
                        "default": 25
                    },
                    "bearerToken": {
                        "title": "Bearer token (optional)",
                        "type": "string",
                        "description": "Optional OAuth2 bearer token for key-gated services (e.g. UK Ordnance Survey). Sent as Authorization: Bearer ***. NOT required for public services (pygeoapi, ldproxy demos) — leave empty. Never logged."
                    },
                    "extraHeaders": {
                        "title": "Extra request headers",
                        "type": "object",
                        "description": "Optional extra HTTP headers to send with every request, as a JSON object, e.g. {\"key\": \"...\"} for a service that takes an API key in a header. Leave empty for public services."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
