# Lawyer Legion Scraper (`crawlerbros/lawyerlegion-scraper`) Actor

Scrape Lawyer Legion, a US attorney directory with state-bar certified specialists. Search attorneys by state and practice area. Extracts name, firm, phone, address, practice areas, bar admissions, education, certifications, and more.

- **URL**: https://apify.com/crawlerbros/lawyerlegion-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Lead generation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 4 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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.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

## Lawyer Legion Scraper

Scrape attorney profiles from [Lawyer Legion](https://lawyers.lawyerlegion.com/) — a specialized US attorney directory featuring state-bar certified specialists. Search by US state and practice area, or scrape profiles from direct URLs.

### Features

- **Search by state and practice area** — 50 US states + DC, 100+ practice area categories
- **Rich attorney data** — name, firm, phone, address, geo coordinates, photo, practice areas
- **Enriched profile mode** — biography, bar admissions, education, specialty certifications, federal court admissions, association memberships, awards
- **Pagination support** — automatically fetches all pages for a state/practice combination
- **No proxy required** — works from standard datacenter IPs
- **No authentication** — no API keys, cookies, or login needed

### Use Cases

- Building attorney referral databases
- Legal services market research
- Law firm competitive analysis
- Finding certified specialists in specific practice areas
- Attorney contact information lookup by region

### Input

| Field | Type | Description |
|-------|------|-------------|
| `mode` | String (enum) | `search` (default) or `byUrls` |
| `state` | String (enum) | US state slug (e.g. `florida`, `new-york`) — required for `search` mode |
| `practiceArea` | String (enum) | Practice area (e.g. `personal-injury`, `criminal-defense`) — defaults to `personal-injury` |
| `profileUrls` | Array | Direct attorney profile URLs — required for `byUrls` mode |
| `enrichProfiles` | Boolean | Visit full profile pages for biography, bar admissions, education, certifications, and more |
| `maxItems` | Integer | Maximum number of records to return (default: 50, max: 10000) |

#### Example Input — Search Mode

```json
{
  "mode": "search",
  "state": "florida",
  "practiceArea": "personal-injury",
  "maxItems": 50
}
````

#### Example Input — Enriched Profiles

```json
{
  "mode": "search",
  "state": "new-york",
  "practiceArea": "criminal-defense",
  "enrichProfiles": true,
  "maxItems": 20
}
```

#### Example Input — Direct URLs

```json
{
  "mode": "byUrls",
  "profileUrls": [
    "https://lawyers.lawyerlegion.com/florida/christian-dietrich-searcy-27004317"
  ]
}
```

### Output

Each record represents one attorney profile.

#### Standard Fields (all modes)

| Field | Description |
|-------|-------------|
| `name` | Full attorney name |
| `profileUrl` | URL on Lawyer Legion |
| `photoUrl` | Headshot photo URL |
| `firm` | Law firm name |
| `street` | Office street address |
| `city` | Office city |
| `state` | State abbreviation (e.g. FL, NY, CA) |
| `zip` | ZIP code |
| `phone` | Primary office phone |
| `latitude` | Geographic latitude |
| `longitude` | Geographic longitude |
| `practiceAreas` | List of practice areas |
| `recordType` | Always `attorney` |
| `scrapedAt` | ISO 8601 timestamp |

#### Enriched Fields (when `enrichProfiles: true` or mode=`byUrls`)

| Field | Description |
|-------|-------------|
| `description` | Attorney biography |
| `firmWebsite` | Law firm website URL |
| `yearsLicensed` | Years the attorney has been licensed |
| `barAdmissions` | State bar admission(s) with status |
| `education` | Law school and degree(s) |
| `certifications` | Board specialty certifications |
| `federalAdmissions` | Federal courts admitted to practice in |
| `associations` | Professional associations and memberships |
| `awards` | Awards and honors received |

#### Sample Output Record

```json
{
  "name": "Christian Dietrich Searcy",
  "profileUrl": "https://lawyers.lawyerlegion.com/florida/christian-dietrich-searcy-27004317",
  "photoUrl": "https://cdn.lawyerlegion.com/a/27004317/christian-dietrich-searcy-profile-l.jpg",
  "firm": "Searcy Denney Scarola Barnhart & Shipley",
  "firmWebsite": "https://www.searcylaw.com",
  "street": "2139 Palm Beach Lakes Blvd",
  "city": "West Palm Beach",
  "state": "FL",
  "zip": "33409",
  "phone": "561-686-6300",
  "latitude": "26.7131307",
  "longitude": "-80.0955336",
  "practiceAreas": ["Personal Injury", "Wrongful Death"],
  "yearsLicensed": 49,
  "barAdmissions": ["Florida | Active - Member in Good Standing"],
  "education": ["Stetson University College of Law | Juris Doctor"],
  "certifications": [
    "Board Certified Specialist Civil Trial Law | The Florida Bar Board of Legal Specialization and Education"
  ],
  "federalAdmissions": [
    "U.S. Court of Appeals for the Eleventh Circuit",
    "United States Supreme Court"
  ],
  "associations": [
    "Member | The Inner Circle of Advocates",
    "Fellow | American Board of Trial Advocates"
  ],
  "awards": [
    "Perry Nichols Award | Florida Justice Association",
    "War Horse Award | Southern Trial Lawyers Association"
  ],
  "recordType": "attorney",
  "scrapedAt": "2026-05-23T10:00:00+00:00"
}
```

### Supported Practice Areas

Over 100 practice areas are supported, including:

- Personal Injury, Motor Vehicle Accidents, Medical Malpractice, Wrongful Death
- Criminal Defense, DUI/DWI, Drug Crimes, Federal Crimes
- Family Law, Divorce, Child Custody, Adoption
- Bankruptcy, Business Law, Employment Law
- Immigration Law, Real Estate Law, Estate Planning
- And many more...

### Frequently Asked Questions

**Does this require cookies or authentication?**
No. Lawyer Legion is publicly accessible and does not require login.

**Does this require a proxy?**
No. The scraper works from standard Apify datacenter IPs without any proxy.

**How many attorneys are available?**
Lawyer Legion has hundreds of attorneys per state/practice area combination, with 50 per listing page.

**What does enriched mode add?**
Enriched mode visits each attorney's full profile page to extract their biography, bar admissions, law school education, board certifications, federal court admissions, professional associations, and awards. It takes longer but returns much more detailed data.

**Can I scrape all attorneys in a state?**
Yes. Set `practiceArea` to your desired area, `state` to the target state, and `maxItems` to a high value. The scraper will automatically paginate through all available results.

**What is Lawyer Legion?**
Lawyer Legion is a free online attorney directory that specializes in board-certified and specialty-certified lawyers. It features verified bar admissions and specialty certifications directly from state bar databases.

# Actor input Schema

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

What to scrape.

## `state` (type: `string`):

US state slug (e.g. `florida`, `new-york`, `california`). Required for mode=search.

## `practiceArea` (type: `string`):

Practice area slug. Defaults to `personal-injury` if not set.

## `profileUrls` (type: `array`):

Direct Lawyer Legion attorney profile URLs (e.g. `https://lawyers.lawyerlegion.com/florida/christian-dietrich-searcy-27004317`).

## `enrichProfiles` (type: `boolean`):

Visit each attorney profile page to extract biography, bar admissions, education, certifications, federal court admissions. Slower but yields much richer data.

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

Hard cap on number of attorney records emitted.

## Actor input object example

```json
{
  "mode": "search",
  "state": "florida",
  "practiceArea": "personal-injury",
  "profileUrls": [],
  "enrichProfiles": false,
  "maxItems": 50
}
```

# Actor output Schema

## `attorneys` (type: `string`):

Dataset containing all scraped attorney profiles.

# 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 = {
    "mode": "search",
    "state": "florida",
    "practiceArea": "personal-injury",
    "profileUrls": [],
    "enrichProfiles": false,
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/lawyerlegion-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 = {
    "mode": "search",
    "state": "florida",
    "practiceArea": "personal-injury",
    "profileUrls": [],
    "enrichProfiles": False,
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/lawyerlegion-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 '{
  "mode": "search",
  "state": "florida",
  "practiceArea": "personal-injury",
  "profileUrls": [],
  "enrichProfiles": false,
  "maxItems": 50
}' |
apify call crawlerbros/lawyerlegion-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Lawyer Legion Scraper",
        "description": "Scrape Lawyer Legion, a US attorney directory with state-bar certified specialists. Search attorneys by state and practice area. Extracts name, firm, phone, address, practice areas, bar admissions, education, certifications, and more.",
        "version": "1.0",
        "x-build-id": "sEmOd0RL2At6vbfve"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~lawyerlegion-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-lawyerlegion-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/crawlerbros~lawyerlegion-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-lawyerlegion-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/crawlerbros~lawyerlegion-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-lawyerlegion-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byUrls"
                        ],
                        "type": "string",
                        "description": "What to scrape.",
                        "default": "search"
                    },
                    "state": {
                        "title": "State (mode=search)",
                        "enum": [
                            "alabama",
                            "alaska",
                            "arizona",
                            "arkansas",
                            "california",
                            "colorado",
                            "connecticut",
                            "delaware",
                            "district-of-columbia",
                            "florida",
                            "georgia",
                            "hawaii",
                            "idaho",
                            "illinois",
                            "indiana",
                            "iowa",
                            "kansas",
                            "kentucky",
                            "louisiana",
                            "maine",
                            "maryland",
                            "massachusetts",
                            "michigan",
                            "minnesota",
                            "mississippi",
                            "missouri",
                            "montana",
                            "nebraska",
                            "nevada",
                            "new-hampshire",
                            "new-jersey",
                            "new-mexico",
                            "new-york",
                            "north-carolina",
                            "north-dakota",
                            "ohio",
                            "oklahoma",
                            "oregon",
                            "pennsylvania",
                            "rhode-island",
                            "south-carolina",
                            "south-dakota",
                            "tennessee",
                            "texas",
                            "utah",
                            "vermont",
                            "virginia",
                            "washington",
                            "west-virginia",
                            "wisconsin",
                            "wyoming"
                        ],
                        "type": "string",
                        "description": "US state slug (e.g. `florida`, `new-york`, `california`). Required for mode=search.",
                        "default": "florida"
                    },
                    "practiceArea": {
                        "title": "Practice area (mode=search)",
                        "enum": [
                            "personal-injury",
                            "criminal-defense",
                            "family-law",
                            "divorce",
                            "bankruptcy",
                            "employment-law",
                            "immigration-law",
                            "real-estate-law",
                            "medical-malpractice",
                            "workers-compensation",
                            "wrongful-death",
                            "motor-vehicle-accidents",
                            "dui-dwi",
                            "estate-planning",
                            "estate-probate-law",
                            "social-security-disability-law",
                            "tax-law",
                            "business-law",
                            "intellectual-property-law",
                            "civil-rights",
                            "consumer-law",
                            "elder-law",
                            "appellate-law",
                            "admiralty-maritime-law",
                            "alternative-dispute-resolution",
                            "aviation-law",
                            "adoption",
                            "alimony-spousal-support",
                            "child-custody-visitation",
                            "child-support",
                            "class-action",
                            "civil-trial-law",
                            "commercial-real-estate-law",
                            "construction-law",
                            "contracts",
                            "copyrights-trademarks",
                            "criminal-appellate-law",
                            "discrimination",
                            "divorce-mediation",
                            "dog-bites",
                            "domestic-violence",
                            "drug-crimes",
                            "federal-crimes",
                            "health-law",
                            "insurance-law",
                            "international-law",
                            "juvenile-defense",
                            "landlord-tenant-law",
                            "legal-malpractice",
                            "lemon-law",
                            "mass-tort",
                            "motorcycle-accidents",
                            "nursing-home-abuse",
                            "patents",
                            "pedestrian-accidents",
                            "police-misconduct",
                            "premises-liability",
                            "probate",
                            "products-liability",
                            "property-division",
                            "residential-real-estate-law",
                            "sex-crimes",
                            "sexual-harassment",
                            "spinal-cord-injuries",
                            "traffic-tickets",
                            "trusts",
                            "visas",
                            "white-collar-crime",
                            "wills",
                            "workplace-injuries",
                            "wrongful-termination",
                            "boating-accidents",
                            "brain-injury",
                            "commercial-truck-accidents",
                            "firearm-weapon-charges",
                            "marijuana-law",
                            "natural-resources-oil-gas",
                            "naturalization-citizenship",
                            "prenuptial-marital-agreements",
                            "probation-violations",
                            "seal-or-expunge-criminal-record",
                            "business-bankruptcy",
                            "consumer-bankruptcy",
                            "abc-business-bankruptcy-law",
                            "abc-consumer-bankruptcy-law",
                            "collections",
                            "administrative-law"
                        ],
                        "type": "string",
                        "description": "Practice area slug. Defaults to `personal-injury` if not set.",
                        "default": "personal-injury"
                    },
                    "profileUrls": {
                        "title": "Profile URLs (mode=byUrls)",
                        "type": "array",
                        "description": "Direct Lawyer Legion attorney profile URLs (e.g. `https://lawyers.lawyerlegion.com/florida/christian-dietrich-searcy-27004317`).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "enrichProfiles": {
                        "title": "Enrich with full profile data",
                        "type": "boolean",
                        "description": "Visit each attorney profile page to extract biography, bar admissions, education, certifications, federal court admissions. Slower but yields much richer data.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Hard cap on number of attorney records emitted.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
