# Healthcare Hiring Signals — Urgent Facilities by Name (`belcaidsaad/healthcare-recruitment-demand`) Actor

US healthcare facilities hiring with urgency markers — repost frequency, surges, multi-location duplicates, traveler/locum language, expansion signals. Each row scored across 5 demand axes. For SSM members selling staffing, CROs, equipment, or consulting.

- **URL**: https://apify.com/belcaidsaad/healthcare-recruitment-demand.md
- **Developed by:** [Saad Belcaid](https://apify.com/belcaidsaad) (community)
- **Categories:** Jobs, Lead generation, News
- **Stats:** 10 total users, 9 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Healthcare Recruitment Demand — Facilities Hiring with Urgency Signals

**Built for Mehdi 🇲🇦 (SSM) by [Saad Belcaid](https://www.skool.com/@saadbelcaid).**

Find US healthcare facilities hiring with **demand-signal urgency** — repost frequency, hiring surges, multi-location duplicates, traveler/locum/per-diem language, and expansion signals (new clinics, openings).

If you sell to healthcare facilities (CRO services, staffing, lab equipment, EMR/software, regulatory consulting, recruitment) — these are the facilities to call this week, ranked by how badly they need help.

---

### The dumb-simple version

A hospital posting one nurse job is normal. A hospital posting **15 nursing jobs across 4 locations** with **"$10K sign-on bonus"** language and one of those jobs has been **open 60 days** — that's a hospital in pain. Pain = budget. Budget = buying signal.

This scraper reads thousands of healthcare job postings and tags each one across 5 demand-signal axes:

1. **Urgency tier** — fresh (just posted) → critical (30+ days, can't fill)
2. **Hiring surge** — count of OTHER openings the same employer has posted
3. **Multi-location score** — same role × distinct locations under same employer
4. **Urgency language** — "stat", "traveler", "locum", "per diem", "$X sign-on bonus", "immediate hire"
5. **Expansion language** — "new clinic", "grand opening", "newly built", "new location"

The signal sentence per row reads like: *"Valley Spring Behavior Health (hospital) hiring psychiatry (Child & Adolescent Psychiatry Position) — open 60+ days, can't fill; 4 parallel openings at this employer; sign-on bonus; new clinic"*. CRM-ready.

---

### Volume

The default run pulls **~1,500 healthcare job postings** in 5–10 minutes. The source has 3,750+ active listings — bump `maxJobs` to 3000+ if you want the full universe.

---

### Max-value playbook

#### Day 1 — first run, get volume

```yaml
maxJobs: 1500
maxPages: 80
minUrgencyTier: "fresh"
````

Hit run. Wait ~5–10 min. Expect 1,000–1,500 rows.

#### Day 1, hour 2 — triage by who you sell to

Open the dataset. Filter by:

| If you sell... | Filter by |
|---|---|
| **Locum/travel staffing** | `urgency_language` contains "locum" or "traveler" or "per diem" |
| **Permanent placement (recruiters)** | `urgency_tier = critical` AND `surge_score >= 3` (employer is stuck and is paying) |
| **Sign-on bonus competition** (recruiters) | `urgency_language` contains "sign-on bonus" — they're paying premium = budget exists |
| **Multi-site healthcare orgs** (CROs, EMR, group purchasing) | `multi_location_score >= 3` — same role × 3+ locations = real org, real budget |
| **New facility build-outs** (equipment, IT, design, consulting) | `expansion_language` is non-empty — they just built or are about to open |
| **Specialty-specific** | `specialty = "oncology"` (or cardiology, ortho, ED, etc.) |
| **Facility-type-specific** | `facility_type = "urgent_care"` (or hospital, clinic, surgery\_center, nursing\_home) |

#### Day 2 onwards — daily drip

Schedule cron `0 8 * * 1-5` (8am UTC, Mon-Fri) with `maxJobs: 500`. Each weekday pulls fresh signals. Built for "build once, run daily, never come back."

***

### Filter recipes (copy-paste)

#### "Just give me the desperate ones"

```yaml
minUrgencyTier: "critical"
requireSurge: true
```

#### "Travel/locum agencies — hot leads"

```yaml
requireUrgencyLanguage: true
roleFunctions: ["physician", "nurse"]
```

#### "New facility openings (sell equipment, EMR, build-out)"

```yaml
requireExpansionLanguage: true
```

#### "Multi-site health systems"

```yaml
requireMultiLocation: true
```

#### "Oncology hiring (sell to cancer centers)"

```yaml
specialties: ["oncology"]
```

***

### Output — one row per healthcare hiring signal

| Field | Example |
|---|---|
| **`job_title`** | Cardiology Opening in Elkin, NC |
| **`company_name`** | Archway Physician Recruitment |
| `facility_type` | hospital / clinic / urgent\_care / nursing\_home / surgery\_center / rehab / home\_health / telemedicine |
| `role_function` | physician / nurse / physician\_assistant / nurse\_practitioner / allied\_health / admin\_executive / tech\_imaging / pharmacy / mental\_health / dental |
| **`specialty`** | oncology / cardiology / orthopedic / pediatric / emergency / neurology / psychiatry / obgyn / radiology / anesthesia / family\_medicine / internal\_medicine / GI / endo / rheum / pulm / urology / derm / ophthal / pathology |
| `location` | Elkin, NC, US |
| `date_posted` | 2025-09-13T... |
| `days_listed` | 89 |
| **`urgency_tier`** | fresh / normal / high / **critical** |
| **`surge_score`** | 5 (this employer has 5 OTHER openings) |
| **`multi_location_score`** | 3 (same role at 3 distinct locations) |
| **`urgency_language`** | `["stat hire", "relocation package"]` |
| **`expansion_language`** | `["new clinic", "newly built"]` |
| `is_likely_repost` | true (same employer posted near-identical title to same location before) |
| `salary_text` | $400,000–$500,000 / year |
| `apply_url` | direct link to apply |
| **`signal`** | "Archway Physician Recruitment (clinic) hiring cardiology (Cardiology Opening in Elkin, NC) — open 89+ days, can't fill; stat hire / relocation package" |

***

### Why each signal axis matters (in plain English)

| Signal | What it tells you |
|---|---|
| `surge_score >= 3` | Employer has 3+ other openings = real growth or real attrition. Either way, they're staffing up and have budget. |
| `multi_location_score >= 2` | Same role at 2+ locations under same employer = multi-site organization. Bigger ticket sales. |
| `urgency_language` non-empty | Sign-on bonuses, traveler/locum, "stat", "immediate" = they're paying premium because regular hiring failed. They need help NOW. |
| `expansion_language` non-empty | "New clinic", "grand opening" = greenfield build = they're buying equipment, IT, services, contractors RIGHT NOW. Highest ticket-size signal. |
| `is_likely_repost = true` | Same role posted multiple times at the same location = previous hire fell through OR turnover problem. They will pay a premium recruiter to fix it. |
| `urgency_tier = critical` (30+ days open) | Job has been live a month or more = market clearance failed = they will entertain ANY conversation. |

***

### Architecture

- Apify Actor, TypeScript, pure HTTP (no Playwright needed for v1)
- Source: HospitalRecruiting.com — verified 3,750+ active US healthcare job postings, JSON-LD `JobPosting` on every detail page
- Cross-row aggregator computes surge / multi-location / repost scores AFTER all jobs are fetched
- Bounded concurrency (default 8) for fast detail-page fetching
- Polite delay (250ms default) — easy on the source

### Costs

- Apify compute: ~5–10 min per run × 256 MB ≈ trivial CU
- No paid keys needed

***

### Connector OS Station integration

Pipe the dataset into Station as the demand side. Each row's `signal` field plugs straight into the I Layer for evaluation against your supply network (staffing agencies, CROs, EMR vendors, healthcare IT, equipment, regulatory consultants).

**Flow:** scrape → dataset → paste dataset ID into Station → match against your supply → scored introductions.

***

*Built by Saad Belcaid for Mehdi's SSM workflow. 🇲🇦*

# Actor input Schema

## `maxJobs` (type: `integer`):

Cap on detail pages fetched. Default 1500 covers most realistic runs.

## `maxPages` (type: `integer`):

Cap on search-result pagination. Each page yields ~25 jobs.

## `concurrency` (type: `integer`):

How many job-detail pages to fetch in parallel. 8 is comfortable.

## `politeDelayMs` (type: `integer`):

Throttle between fetches. 250ms is comfortable.

## `minUrgencyTier` (type: `string`):

Drop rows below this tier. critical = open 30+ days OR sign-on bonus / stat language. high = open 14+ days. normal = active. fresh = just posted.

## `roleFunctions` (type: `array`):

Restrict to specific role buckets. Choose from: physician, nurse, physician\_assistant, nurse\_practitioner, allied\_health, admin\_executive, tech\_imaging, pharmacy, mental\_health, dental

## `facilityTypes` (type: `array`):

Restrict to specific facility types. Choose from: hospital, clinic, urgent\_care, nursing\_home, surgery\_center, rehab, home\_health, telemedicine

## `specialties` (type: `array`):

Restrict to specific specialties. Choose from: oncology, cardiology, orthopedic, pediatric, emergency, neurology, psychiatry, obgyn, radiology, anesthesia, family\_medicine, internal\_medicine, gastroenterology, endocrinology, rheumatology, pulmonology, urology, dermatology, ophthalmology, pathology

## `requireUrgencyLanguage` (type: `boolean`):

Only emit rows with at least one urgency phrase (traveler / locum / per diem / sign-on bonus / stat / immediate).

## `requireExpansionLanguage` (type: `boolean`):

Only emit rows with at least one expansion phrase (new clinic / grand opening / newly built / new location).

## `requireSurge` (type: `boolean`):

Only emit rows where the same employer has 3+ other openings (surge\_score >= 3).

## `requireMultiLocation` (type: `boolean`):

Only emit rows where the same role appears at 2+ distinct locations under the same employer.

## Actor input object example

```json
{
  "maxJobs": 1500,
  "maxPages": 80,
  "concurrency": 8,
  "politeDelayMs": 250,
  "minUrgencyTier": "fresh",
  "roleFunctions": [],
  "facilityTypes": [],
  "specialties": [],
  "requireUrgencyLanguage": false,
  "requireExpansionLanguage": false,
  "requireSurge": false,
  "requireMultiLocation": 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("belcaidsaad/healthcare-recruitment-demand").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("belcaidsaad/healthcare-recruitment-demand").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 belcaidsaad/healthcare-recruitment-demand --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Healthcare Hiring Signals — Urgent Facilities by Name",
        "description": "US healthcare facilities hiring with urgency markers — repost frequency, surges, multi-location duplicates, traveler/locum language, expansion signals. Each row scored across 5 demand axes. For SSM members selling staffing, CROs, equipment, or consulting.",
        "version": "1.0",
        "x-build-id": "2jC8tlLnUcS6V5WiB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/belcaidsaad~healthcare-recruitment-demand/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-belcaidsaad-healthcare-recruitment-demand",
                "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/belcaidsaad~healthcare-recruitment-demand/runs": {
            "post": {
                "operationId": "runs-sync-belcaidsaad-healthcare-recruitment-demand",
                "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/belcaidsaad~healthcare-recruitment-demand/run-sync": {
            "post": {
                "operationId": "run-sync-belcaidsaad-healthcare-recruitment-demand",
                "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": {
                    "maxJobs": {
                        "title": "Maximum Jobs",
                        "minimum": 50,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Cap on detail pages fetched. Default 1500 covers most realistic runs.",
                        "default": 1500
                    },
                    "maxPages": {
                        "title": "Maximum Search Pages",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Cap on search-result pagination. Each page yields ~25 jobs.",
                        "default": 80
                    },
                    "concurrency": {
                        "title": "Concurrent Detail Fetches",
                        "minimum": 1,
                        "maximum": 32,
                        "type": "integer",
                        "description": "How many job-detail pages to fetch in parallel. 8 is comfortable.",
                        "default": 8
                    },
                    "politeDelayMs": {
                        "title": "Polite Delay Between Requests (ms)",
                        "minimum": 0,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Throttle between fetches. 250ms is comfortable.",
                        "default": 250
                    },
                    "minUrgencyTier": {
                        "title": "Minimum Urgency Tier",
                        "enum": [
                            "fresh",
                            "normal",
                            "high",
                            "critical"
                        ],
                        "type": "string",
                        "description": "Drop rows below this tier. critical = open 30+ days OR sign-on bonus / stat language. high = open 14+ days. normal = active. fresh = just posted.",
                        "default": "fresh"
                    },
                    "roleFunctions": {
                        "title": "Role Functions (filter)",
                        "type": "array",
                        "description": "Restrict to specific role buckets. Choose from: physician, nurse, physician_assistant, nurse_practitioner, allied_health, admin_executive, tech_imaging, pharmacy, mental_health, dental",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "facilityTypes": {
                        "title": "Facility Types (filter)",
                        "type": "array",
                        "description": "Restrict to specific facility types. Choose from: hospital, clinic, urgent_care, nursing_home, surgery_center, rehab, home_health, telemedicine",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "specialties": {
                        "title": "Specialties (filter)",
                        "type": "array",
                        "description": "Restrict to specific specialties. Choose from: oncology, cardiology, orthopedic, pediatric, emergency, neurology, psychiatry, obgyn, radiology, anesthesia, family_medicine, internal_medicine, gastroenterology, endocrinology, rheumatology, pulmonology, urology, dermatology, ophthalmology, pathology",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "requireUrgencyLanguage": {
                        "title": "Require Urgency Language",
                        "type": "boolean",
                        "description": "Only emit rows with at least one urgency phrase (traveler / locum / per diem / sign-on bonus / stat / immediate).",
                        "default": false
                    },
                    "requireExpansionLanguage": {
                        "title": "Require Expansion Language",
                        "type": "boolean",
                        "description": "Only emit rows with at least one expansion phrase (new clinic / grand opening / newly built / new location).",
                        "default": false
                    },
                    "requireSurge": {
                        "title": "Require Hiring Surge",
                        "type": "boolean",
                        "description": "Only emit rows where the same employer has 3+ other openings (surge_score >= 3).",
                        "default": false
                    },
                    "requireMultiLocation": {
                        "title": "Require Multi-Location",
                        "type": "boolean",
                        "description": "Only emit rows where the same role appears at 2+ distinct locations under the same employer.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
