# Skillshouse Jobs Scraper (`memo23/skillshouse-scraper`) Actor

Scrape skillshouse.co.uk — Bradford district employment & skills hub powered by Alcium ATS. SSR HTML cards parsed in one HTTP fetch: ~100 vacancies with title, employer, location, contract type, logo. Optional detail fetch for salary + closing date. JSON or CSV out.

- **URL**: https://apify.com/memo23/skillshouse-scraper.md
- **Developed by:** [Muhamed Didovic](https://apify.com/memo23) (community)
- **Categories:** Jobs, AI, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.99 / 1,000 results

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

## SkillsHouse Bradford Jobs Scraper

**Scrape the SkillsHouse Bradford jobs board at skillshouse.co.uk.** Powered by Alcium Software ATS — but contrary to first appearances, the jobs page is **fully server-rendered** at `/jobseeker/jobs-apprenticeships/`. ~100 vacancies in one HTML fetch with title, employer, location, contract type, teaser description, employer logo, and per-job apply URL. Optional one-fetch-per-job detail enrichment for full HTML body + salary + closing date. JSON or CSV out, no compute charge per run, just per result.

#### How it works

![How SkillsHouse Scraper works](https://raw.githubusercontent.com/muhamed-didovic/muhamed-didovic.github.io/main/assets/how-it-works-skillshouse.png)

#### ✨ Why use this scraper?

SkillsHouse is the Bradford district's employment + skills hub — connecting residents to local employers across care, construction, retail, NHS, charity sector, and apprenticeships. Tracking Bradford labour-market openings? Building a regional jobs aggregator? Sourcing for apprenticeships?

- 🎯 **Two starting points.** The full listing URL (`/jobseeker/jobs-apprenticeships/`) or any direct `/vacancy-details/<id>/<slug>` URL.
- ⚡ **One HTTP call for ~100 jobs.** The listing page (321 KB) renders every vacancy as `.card-title` + `.user-name` + `.user-location` + `.card-button` cards — no JavaScript needed.
- 🏷️ **Card-level structured data.** Title, vacancy ref number, employer name, location, contract type (`Permanent` / `Contract` / `Apprenticeship`), employer logo URL, short description teaser.
- 📋 **Detail-page enrichment (opt-in).** Fetch each `/vacancy-details/<id>/<slug>` for the full HTML body + labelled `Salary` / `Closing Date` / `Hours` fields.
- 🇬🇧 **Bradford district focus.** Bradford, Keighley, Shipley, Bingley, Ilkley — district-wide employer base across many sectors.
- 📤 **Clean exports.** One row per vacancy. JSON + CSV exported automatically.

#### 🎯 Use cases

| Team | What they build |
|------|-----------------|
| **Bradford employment-and-skills programmes** | Cross-employer daily hiring intelligence |
| **Apprenticeship platforms** | Auto-discover apprenticeship vacancies in the district |
| **Recruiters** | Bradford candidate-sourcing feeds across sectors |
| **Sector publications** | Auto-populate Bradford jobs landing pages |
| **Local council / DWP** | Labour-market tracking dashboards |

#### 📥 Supported inputs

| URL pattern | Behaviour |
|---|---|
| `https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/` | **Full listing** (default — ~100 jobs) |
| `https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/vacancy-details/<id>/<slug>` | **Single job** — fetches detail directly |

Leave `startUrls` empty for the full listing.

**Not supported:** the `/jobs/` hub page (it's just menu navigation, no real listings); hosts outside `skillshouse.co.uk`.

#### 🔄 How it works

1. **Fetch `/jobseeker/jobs-apprenticeships/`** — Alcium ATS SSR HTML (~321 KB).
2. **For each `.card-button[href*="/vacancy-details/"]` anchor**, walk up to the parent card container.
3. **Extract**:
   - `.card-title` → title
   - `.card-mid-text` (skipping "Vacancy Ref" lines) → contract type
   - `.user-name` → employer
   - `.user-location` → location (title-cased)
   - `.card-desc` → teaser description
   - `img` → logo URL
4. **For each (when `enrichDetail: true`)**, fetch `/vacancy-details/<id>/<slug>` for the full description HTML + labelled fields.
5. **Push one row per vacancy** to the dataset.

#### ⚙️ Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `startUrls` | array | `["https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/"]` | Listing URL or single-job URLs. Empty = listing. |
| `enrichDetail` | boolean | `true` | When `true`, fetches each `/vacancy-details/<id>/<slug>` page for the full HTML description + labelled Salary/Closing/Hours fields. Disable for listing-only output (still ~100 rows with title, employer, location). |
| `maxItems` | integer | `1000` | Hard cap on rows pushed. |
| `maxConcurrency` | integer | `3` | Parallel detail-page fetch limit. |
| `maxRequestRetries` | integer | `5` | Retries before a failed request is given up. |
| `proxy` | object | No proxy | Site does not anti-bot. |

#### 📊 Output overview

Each scraped vacancy is one **single dataset row** of `type: "job"`. Listing fields (title, employer, location, contract type) merged with optional detail-page enrichment (full description, salary, closing date, hours).

#### 📦 Output sample

```json
{
  "type": "job",
  "source": "skillshouse.co.uk",
  "sourceProvider": "alcium",
  "jobId": "223915",
  "slug": "223915",
  "jobUrl": "https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/vacancy-details/223915/Support-Worker-%E2%80%93-16-hours-Keighley",
  "applyUrlInternal": "https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/vacancy-details/223915/Support-Worker-%E2%80%93-16-hours-Keighley?apply=true",
  "title": "Support Worker – 16 hours, Keighley",
  "description": "<div>Are you ready to embark on a fulfilling…</div>",
  "descriptionText": "Are you ready to embark on a fulfilling…",
  "descriptionTeaser": "Are you ready to embark on a fulfilling…",
  "companyName": "Catholic Care - Keighley",
  "companyLogoUrl": "https://bradfordees.evolutive.co.uk/store/logos/490+1516922.jpg",
  "location": "Keighley",
  "remote": false,
  "salary": { "currency": "GBP", "min": 23000, "max": 25000, "raw": "£23,000 – £25,000" },
  "salaryRaw": "£23,000 – £25,000",
  "hours": "16 hours",
  "categories": [],
  "employmentTypes": ["Permanent"],
  "contractType": "Permanent",
  "status": "publish",
  "postedDate": null,
  "closingDate": "Friday 30 May 2026",
  "modifiedDate": null,
  "applyType": "internal",
  "applyUrl": "https://skillshouse.co.uk/jobseeker/jobs-apprenticeships/vacancy-details/223915/Support-Worker-%E2%80%93-16-hours-Keighley?apply=true",
  "applyEmail": null,
  "externalApplyUrl": null,
  "scrapedAt": "2026-05-22T19:45:00.000Z"
}
````

#### 🗂 Key output fields

| Group | Fields |
|---|---|
| **Identifiers** | `type`, `source`, `sourceProvider` (`alcium`), `jobId` (Alcium vacancy ref), `slug`, `jobUrl`, `applyUrlInternal`, `scrapedAt` |
| **Content** | `title`, `description` (HTML, from detail), `descriptionText` (plain), `descriptionTeaser` (from listing card) |
| **Dates** | `closingDate` (raw text), `modifiedDate` |
| **Employer** | `companyName`, `companyLogoUrl` (from card img — hosted on bradfordees.evolutive.co.uk) |
| **Location** | `location` (title-cased), `remote` |
| **Compensation** | `salary.{currency, min, max, raw}`, `salaryRaw`, `hours` |
| **Work pattern** | `contractType`, `employmentTypes[]` |
| **Apply flow** | `applyType` (always `internal`), `applyUrl` (with `?apply=true`), `applyEmail` (null), `externalApplyUrl` (null) |

#### ❓ FAQ

**Why is `applyType` always "internal"?**
Skillshouse uses Alcium's internal apply flow — applicants click "Apply" on the listing and go through Alcium's form. The actor preserves the URL with `?apply=true` in `applyUrl` for downstream redirect.

**Why is salary sometimes null?**
Salary is in the detail page, not the card. Enable `enrichDetail: true` (default) to fetch each vacancy detail and pick up the labelled Salary field.

**Why are there sometimes duplicate-looking titles (e.g. 4× "Support Worker – 16 hours, Keighley")?**
Each is a separate vacancy reference at the same employer — Alcium creates one record per role/shift even when titles match. Use `jobId` (numeric ref) as the unique key.

**Can I scrape private pages or applicant data?**
No. Only the public `/jobseeker/jobs-apprenticeships/` listing and public `/vacancy-details/<id>/<slug>` pages.

**How do I limit results?**
Set `maxItems`. With ~100 jobs typically listed, `maxItems: 150` covers everything safely.

#### 💬 Support

- For issues or feature requests, please use the **Issues** tab on the actor's Apify Console page.
- Author's website: <https://muhamed-didovic.github.io/>
- Email: <muhamed.didovic@gmail.com>

#### 🛠 Additional services

- Custom output shape, additional fields, or one-off datasets: <muhamed.didovic@gmail.com>
- Build a similar actor for other Alcium-Software-powered job boards in your area: drop an email.
- For API access (no Apify fee, just usage): <muhamed.didovic@gmail.com>

#### 🔎 Explore more scrapers

See other scrapers at [memo23's Apify profile](https://apify.com/memo23) — covering job boards, real estate, social media, and more.

***

### ⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by SkillsHouse Bradford, City of Bradford Metropolitan District Council, Alcium Software, Evolutive, or any of their subsidiaries or affiliates. All trademarks mentioned are the property of their respective owners.

The scraper accesses only the publicly available `/jobseeker/jobs-apprenticeships/` listing page and public `/vacancy-details/<id>/<slug>` pages on skillshouse.co.uk — no authenticated endpoints, recruiter-only features, or content behind a login. Users are responsible for ensuring their use complies with skillshouse.co.uk's Terms of Service, applicable data-protection law (GDPR, CCPA, etc.), and any contractual obligations of their own organisation.

***

### SEO Keywords

skillshouse scraper, scrape skillshouse.co.uk, skillshouse bradford jobs api, alcium software ats scraper, bradford jobs scraper, bradford apprenticeships scraper, keighley jobs scraper, bradford employment skills hub api, Apify skillshouse, west yorkshire jobs scraper, bradford labour market data, bradford district recruitment data, evolutive ats scraper, bradford care jobs scraper, bradford nhs jobs scraper, charityjob alternative scraper, snicket alternative scraper, doing good leeds alternative scraper, uk regional jobs scraper, alcium ssr html scraper

# Actor input Schema

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

Supported shapes: `https://skillshouse.co.uk/jobs`, `https://skillshouse.co.uk/job-positions/<slug>`. Leave empty for the full listing.

## `enrichDetail` (type: `boolean`):

When enabled, each job triggers one extra HTTP call to /job-positions/<slug> to extract the long-form HTML description. Disable to skip — the listing already gives you title, employer, salary, and closing date.

## `enrichEmails` (type: `boolean`):

If enabled, tries to find a contact email for each employer by discovering the company's website (Clearbit) and reading its contact/about pages. Adds contactEmail + contactWebsite columns plus a detailed emailEnrichment object. Best-effort.

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

Hard cap on rows pushed. Skillshouse typically lists 5-10 live vacancies.

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

Maximum detail-page fetches in parallel.

## `minConcurrency` (type: `integer`):

Reserved.

## `maxRequestRetries` (type: `integer`):

Retries before a failed request is given up.

## `proxy` (type: `object`):

Webflow CDN does not anti-bot — proxy is optional.

## Actor input object example

```json
{
  "startUrls": [
    "https://skillshouse.co.uk/jobs"
  ],
  "enrichDetail": true,
  "enrichEmails": false,
  "maxItems": 1000,
  "maxConcurrency": 3,
  "minConcurrency": 1,
  "maxRequestRetries": 5,
  "proxy": {
    "useApifyProxy": 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 = {
    "startUrls": [
        "https://skillshouse.co.uk/jobs"
    ],
    "proxy": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/skillshouse-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 = {
    "startUrls": ["https://skillshouse.co.uk/jobs"],
    "proxy": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/skillshouse-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 '{
  "startUrls": [
    "https://skillshouse.co.uk/jobs"
  ],
  "proxy": {
    "useApifyProxy": false
  }
}' |
apify call memo23/skillshouse-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Skillshouse Jobs Scraper",
        "description": "Scrape skillshouse.co.uk — Bradford district employment & skills hub powered by Alcium ATS. SSR HTML cards parsed in one HTTP fetch: ~100 vacancies with title, employer, location, contract type, logo. Optional detail fetch for salary + closing date. JSON or CSV out.",
        "version": "0.0",
        "x-build-id": "CjQWiyXVtm60lKVe9"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/memo23~skillshouse-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-memo23-skillshouse-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/memo23~skillshouse-scraper/runs": {
            "post": {
                "operationId": "runs-sync-memo23-skillshouse-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/memo23~skillshouse-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-memo23-skillshouse-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": "skillshouse.co.uk URLs",
                        "type": "array",
                        "description": "Supported shapes: `https://skillshouse.co.uk/jobs`, `https://skillshouse.co.uk/job-positions/<slug>`. Leave empty for the full listing.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "enrichDetail": {
                        "title": "Fetch each detail page for the full HTML description (recommended)",
                        "type": "boolean",
                        "description": "When enabled, each job triggers one extra HTTP call to /job-positions/<slug> to extract the long-form HTML description. Disable to skip — the listing already gives you title, employer, salary, and closing date.",
                        "default": true
                    },
                    "enrichEmails": {
                        "title": "Enrich with employer contact emails (experimental)",
                        "type": "boolean",
                        "description": "If enabled, tries to find a contact email for each employer by discovering the company's website (Clearbit) and reading its contact/about pages. Adds contactEmail + contactWebsite columns plus a detailed emailEnrichment object. Best-effort.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Maximum jobs to scrape",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Hard cap on rows pushed. Skillshouse typically lists 5-10 live vacancies.",
                        "default": 1000
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum detail-page fetches in parallel.",
                        "default": 3
                    },
                    "minConcurrency": {
                        "title": "Min concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Reserved.",
                        "default": 1
                    },
                    "maxRequestRetries": {
                        "title": "Max request retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Retries before a failed request is given up.",
                        "default": 5
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Webflow CDN does not anti-bot — proxy is optional.",
                        "default": {
                            "useApifyProxy": 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
