# Onlinejobs Ph Jobs Scraper (`glaciological_hexahedron/onlinejobs-ph-jobs-scraper`) Actor

Extract structured Filipino VA job postings from OnlineJobs.ph — title, salary, skills, employment type, hours per week, posting date, full description, and application URL. Pay only for valid records ($0.003 each). No login required, no API key, JSON or CSV output.

- **URL**: https://apify.com/glaciological\_hexahedron/onlinejobs-ph-jobs-scraper.md
- **Developed by:** [Alex Lowe](https://apify.com/glaciological_hexahedron) (community)
- **Categories:** Lead generation, Jobs
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 job posting saveds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

## OnlineJobs.ph Jobs Scraper

Extract OnlineJobs.ph job postings — title, salary, skills, employment type, hours, posting date, description, and application URL.

### What does it do?

Scrapes [OnlineJobs.ph](https://www.onlinejobs.ph) public job listings and returns structured records you can drop into a candidate-matching tool, hiring intelligence dashboard, newsletter, or recruitment CRM. Each result includes the full job title, employment type (Full Time / Part Time / Gig), salary (parsed and raw), posting date (ISO), skill tags, full description, and direct application URL.

### Who is it for?

- VA agencies monitoring demand and salary trends.
- Founders and operators sourcing Filipino virtual assistants.
- Staffing firms building candidate/job matching tools.
- Competitive-intelligence teams tracking offshore-hiring trends.
- Newsletter and job-board operators curating remote VA jobs.

### How does it work?

OnlineJobs.ph is server-rendered HTML. The list page exposes most fields directly (title, posting timestamp, salary teaser, employment type, skill tags). Optionally, the Actor fetches each detail page for the full description, hours-per-week, and full skill list.

Drive the scrape three ways:

1. **Keywords** (recommended): supply `keywords`, `jobTypes`, and/or `skills`. The Actor builds OnlineJobs.ph search URLs from the cross-product.
2. **Start URLs**: paste OnlineJobs.ph search URLs into `startUrls`.
3. **No input**: defaults to the latest-jobs feed.

### Input

```json
{
  "keywords": ["virtual assistant", "bookkeeper"],
  "jobTypes": ["Full Time", "Part Time"],
  "skills": ["WordPress"],
  "salaryMinUsd": 0,
  "salaryMaxUsd": 0,
  "postedWithinDays": 30,
  "includeDescription": true,
  "deltaMode": false,
  "maxItems": 1000,
  "maxConcurrency": 1,
  "proxyConfiguration": { "useApifyProxy": true },
  "debugMode": false
}
````

### Output (one item per job)

```json
{
  "recordId": "onlinejobs_ph_1623197",
  "source": "onlinejobs_ph",
  "sourceUrl": "https://www.onlinejobs.ph/jobseekers/jobsearch?jobkeyword=accountant",
  "jobId": "1623197",
  "title": "Accountant (US Taxation, Payroll and QuickBooks Specialist)",
  "employer": { "name": null, "profileUrl": null },
  "postingDate": { "raw": "Posted on 2026-04-29 13:28:50", "iso": "2026-04-29T13:28:50Z" },
  "salary": { "raw": "$5 - $6 per hour", "currency": "USD", "min": 5, "max": 6, "period": "hour" },
  "hoursPerWeek": { "raw": "40", "value": 40 },
  "employmentType": "Full Time",
  "skills": ["Payroll", "Bookkeeping"],
  "description": "Are you a highly analytical Accountant...",
  "applicationUrl": "https://www.onlinejobs.ph/jobseekers/job/1623197",
  "isRemote": true,
  "searchContext": { "keyword": "accountant", "sourceUrl": "https://www.onlinejobs.ph/jobseekers/jobsearch?jobkeyword=accountant" },
  "scrapedAt": "2026-04-29T00:00:00.000Z"
}
```

### Sample output

A real sample run is pinned for reference (`onlinejobsph-4-30-2026-sample-data`):

- **HTML preview** (rendered table, no login): https://api.apify.com/v2/datasets/6XStCdlyHe4fyDxOz/items?signature=MC4xNzc4NzM3MDkwNzE5LjFidEM4MjJuUUpIVzlBVFo1TDRadg\&format=html\&view=overview\&clean=true
- **JSON** (clean): https://api.apify.com/v2/datasets/6XStCdlyHe4fyDxOz/items?signature=MC4xNzc4NzM3MDkwNzE5LjFidEM4MjJuUUpIVzlBVFo1TDRadg\&format=json\&clean=true
- **CSV**: https://api.apify.com/v2/datasets/6XStCdlyHe4fyDxOz/items?signature=MC4xNzc4NzM3MDkwNzE5LjFidEM4MjJuUUpIVzlBVFo1TDRadg\&format=csv\&clean=true
- **Console preview** (logged-in): https://console.apify.com/storage/datasets/6XStCdlyHe4fyDxOz

### Delta / new-postings mode

Set `deltaMode: true` to only emit jobs that weren't seen in any prior run of this Actor on the same Apify account. The Actor stores seen `jobId`s in its key-value store and emits new postings with `isNew: true`.

### Pricing

- `$0.003` per job result (any mode).
- `$0.005` per delta result (`deltaMode: true` and the job is new).

You only pay for valid records actually written to the dataset.

### Limits and responsible use

- This Actor respects OnlineJobs.ph's `Crawl-delay: 5` — concurrency is capped at 2 with a 5-second pre-navigation delay. Runs are intentionally slow to avoid burdening the source.
- Employer name and profile URL are not included — that data is login-gated. The corresponding fields are returned as `null`.
- The public site exposes ~10 pages × 30 jobs ≈ 300 jobs per search. To extract more, supply additional keyword/skill/jobType filter combinations.
- Only publicly available data is scraped; no authentication is bypassed.

### FAQ

**Why is `employer.name` always null?** OnlineJobs.ph requires login to view employer names. v1 of this Actor sticks to public data only.

**Why does my run only return ~300 jobs even with `maxItems: 5000`?** OnlineJobs.ph caps anonymous browsing at ~10 pagination pages per search. Add more `keywords` or `skills` to broaden the surface area.

**Does it parse salary correctly?** Hourly, monthly, and weekly rates with USD prefixes parse cleanly. Free-text values like "Monthly Retainer" or "TBD" are preserved in the `raw` field with `min`/`max` set to `null`.

# Actor input Schema

## `startUrls` (type: `array`):

Optional. OnlineJobs.ph search URLs to scrape. If omitted, the Actor builds URLs from the keyword inputs.

## `keywords` (type: `array`):

Free-text search terms, e.g. 'virtual assistant', 'bookkeeper'.

## `jobTypes` (type: `array`):

Subset of: Full Time, Part Time, Gig.

## `skills` (type: `array`):

Skill tag filters, e.g. 'WordPress', 'Customer Support'.

## `salaryMinUsd` (type: `integer`):

Skip jobs whose monthly salary range is entirely below this value. 0 disables the filter.

## `salaryMaxUsd` (type: `integer`):

Skip jobs whose monthly salary range is entirely above this value. 0 disables the filter.

## `postedWithinDays` (type: `integer`):

Skip jobs older than this many days. 0 disables the filter.

## `includeDescription` (type: `boolean`):

If true, fetches detail pages for full description and skills. If false, list-page teaser only.

## `includeEmployerProfile` (type: `boolean`):

Reserved for a future enrichment pass. OnlineJobs.ph requires login to view employer info, so v1 leaves these fields null.

## `deltaMode` (type: `boolean`):

Skip jobIds seen in previous runs of this Actor.

## `previousRunDatasetId` (type: `string`):

Optional Apify dataset ID to seed deltaMode with previously seen jobIds.

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

Hard cap on the number of job records the run will save. Duplicates and filter-rejected records do not count against this cap. Note: anonymous browsing on OnlineJobs.ph is limited to ~300 results per search — beyond that, supply more keywords/skills instead of raising this cap.

## `maxConcurrency` (type: `integer`):

Capped at 2 to respect OnlineJobs.ph robots.txt Crawl-delay: 5.

## `proxyConfiguration` (type: `object`):

Apify proxy configuration. Defaults to Apify Proxy.

## `debugMode` (type: `boolean`):

Enable verbose debug logging.

## Actor input object example

```json
{
  "keywords": [],
  "jobTypes": [],
  "skills": [],
  "salaryMinUsd": 0,
  "salaryMaxUsd": 0,
  "postedWithinDays": 0,
  "includeDescription": true,
  "includeEmployerProfile": false,
  "deltaMode": false,
  "previousRunDatasetId": "",
  "maxItems": 300,
  "maxConcurrency": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debugMode": false
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("glaciological_hexahedron/onlinejobs-ph-jobs-scraper").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("glaciological_hexahedron/onlinejobs-ph-jobs-scraper").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 '{}' |
apify call glaciological_hexahedron/onlinejobs-ph-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=glaciological_hexahedron/onlinejobs-ph-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Onlinejobs Ph Jobs Scraper",
        "description": "Extract structured Filipino VA job postings from OnlineJobs.ph — title, salary, skills, employment type, hours per week, posting date, full description, and application URL. Pay only for valid records ($0.003 each). No login required, no API key, JSON or CSV output.",
        "version": "0.1",
        "x-build-id": "fyPzJpenmARbgtRY0"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/glaciological_hexahedron~onlinejobs-ph-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-glaciological_hexahedron-onlinejobs-ph-jobs-scraper",
                "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/glaciological_hexahedron~onlinejobs-ph-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-glaciological_hexahedron-onlinejobs-ph-jobs-scraper",
                "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/glaciological_hexahedron~onlinejobs-ph-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-glaciological_hexahedron-onlinejobs-ph-jobs-scraper",
                "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",
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Optional. OnlineJobs.ph search URLs to scrape. If omitted, the Actor builds URLs from the keyword inputs.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "keywords": {
                        "title": "Keywords",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Free-text search terms, e.g. 'virtual assistant', 'bookkeeper'.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "jobTypes": {
                        "title": "Job types",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Subset of: Full Time, Part Time, Gig.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Full Time",
                                "Part Time",
                                "Gig"
                            ]
                        },
                        "default": []
                    },
                    "skills": {
                        "title": "Skills",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Skill tag filters, e.g. 'WordPress', 'Customer Support'.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "salaryMinUsd": {
                        "title": "Minimum salary (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip jobs whose monthly salary range is entirely below this value. 0 disables the filter.",
                        "default": 0
                    },
                    "salaryMaxUsd": {
                        "title": "Maximum salary (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip jobs whose monthly salary range is entirely above this value. 0 disables the filter.",
                        "default": 0
                    },
                    "postedWithinDays": {
                        "title": "Posted within (days)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip jobs older than this many days. 0 disables the filter.",
                        "default": 0
                    },
                    "includeDescription": {
                        "title": "Include full job description",
                        "type": "boolean",
                        "description": "If true, fetches detail pages for full description and skills. If false, list-page teaser only.",
                        "default": true
                    },
                    "includeEmployerProfile": {
                        "title": "Include employer profile (login-gated — currently no-op)",
                        "type": "boolean",
                        "description": "Reserved for a future enrichment pass. OnlineJobs.ph requires login to view employer info, so v1 leaves these fields null.",
                        "default": false
                    },
                    "deltaMode": {
                        "title": "Delta mode",
                        "type": "boolean",
                        "description": "Skip jobIds seen in previous runs of this Actor.",
                        "default": false
                    },
                    "previousRunDatasetId": {
                        "title": "Previous run dataset ID (for deltaMode bootstrap)",
                        "type": "string",
                        "description": "Optional Apify dataset ID to seed deltaMode with previously seen jobIds.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "Hard cap on the number of job records the run will save. Duplicates and filter-rejected records do not count against this cap. Note: anonymous browsing on OnlineJobs.ph is limited to ~300 results per search — beyond that, supply more keywords/skills instead of raising this cap.",
                        "default": 300
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 2,
                        "type": "integer",
                        "description": "Capped at 2 to respect OnlineJobs.ph robots.txt Crawl-delay: 5.",
                        "default": 1
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy configuration. Defaults to Apify Proxy.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "debugMode": {
                        "title": "Debug mode",
                        "type": "boolean",
                        "description": "Enable verbose debug logging.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
