# Jobsite UK Scraper (`memo23/jobsite-scraper`) Actor

Scrape 45,000+ UK jobs from Jobsite.co.uk via the official mobile API. Filters: keyword, location, posted-within, employer-type, min-salary, job-type. Rich rows: title, employer + logo, structured salary (min/max/currency/period), location + lat/lng, applyUrl.

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

## Pricing

from $0.90 / 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

## Jobsite UK Jobs Scraper

Scrape job postings from **Jobsite.co.uk** — title, employer + logo, location with lat/lng, **structured salary band** (min / max / currency / period), `datePosted`, `validThrough`, employment type, industry, and a populated `applyUrl` when the role is direct-apply. One flat row per job from rich `JobPosting` JSON-LD plus structured salary metadata.

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

### Why this actor

Jobsite.co.uk is one of the UK's longest-running general-purpose job boards, with ~45,000 live postings at any time across every sector. This actor delivers clean structured rows fast:

- **Efficient JSON listing pagination** at 50 items per page, with `totalItems` reported up-front so we know exactly when we've reached the end of the result set
- **Server-side filters** — `postedWithin` (1 / 3 / 7 / 14 days), `companyTypes` (direct employer / agency), `salary` (minimum), and `jobType` (permanent / contract / temporary / part-time / work-from-home) all honoured server-side, identical to the web page
- **Apify Residential GB** for the per-job detail fetch (`/job-ad/{id}`) — the only proxy pool that consistently returns 200 OK on UK job-board detail pages
- **JobPosting JSON-LD parsing** — every row carries the full 14-field JSON-LD detail plus structured salary metadata (min/max/currency/period) so you don't have to regex it client-side
- **`applyUrl` populated** when `directApply: true` (≈ 60–70 % of jobs) — the candidate-facing apply URL, not just the search-page URL
- **Mixed input** — listing URLs auto-paginate + emit one row per detail; direct detail URLs scrape one row each

### Use cases

- **Recruitment market intelligence** — salary benchmarking by region/role, employer activity tracking on Jobsite's general UK pool
- **Sales prospecting** — find companies hiring in your target verticals + locations, with employer name + logo + Jobsite company page URL on every row
- **HR competitive analysis** — compare your salary bands against the Jobsite market signal
- **ATS / job-aggregator integration** — clean structured input for downstream pipelines (structured salary, lat/lng, `applyUrl`)
- **Geospatial analytics** — every row carries `location.lat` + `location.lng` from JSON-LD `PostalAddress.geo`

### Input

| Field | Type | Required | Notes |
|---|---|---|---|
| `startUrls` | `string[]` | yes | Mix of listing URLs (`https://www.jobsite.co.uk/jobs/in-london`, `/jobs/{keyword}/in-{location}`) and direct detail URLs (`/job/{title-slug}/{org-slug}-job{id}`). Filters supported in the query string: `?postedWithin=1\|3\|7\|14`, `?companytypes=1\|2`, `?salary={int}`, `?jobType=permanent\|contract\|temporary\|partTime\|workFromHome`. |
| `maxItems` | `integer` | no | Maximum job rows emitted **per listing URL**. 3 listings × `maxItems: 100` → up to 300 total rows. Direct detail URLs always emit 1 row each. Each row = one paid dataset item. Default `1000`. Free-tier users have a hidden global ceiling of `100` rows. |
| `maxConcurrency` | `integer` | no | Parallel HTTP requests for detail-page fetches. Sweet spot 3–5 via Apify Residential GB. Default `4`. |
| `maxRequestRetries` | `integer` | no | Per-URL retry budget on proxy CONNECT failures, HTTP/2 stream resets, and network errors. Each retry rotates the proxy session with mild exponential backoff. Default `6`. |
| `proxy` | object | no | **Apify Residential GB required** for the detail-page fetch. Default is wired correctly — don't override unless you know what you're doing. |

#### Example input

```json
{
  "startUrls": [
    "https://www.jobsite.co.uk/jobs/software-engineer/in-london",
    "https://www.jobsite.co.uk/jobs/in-manchester?postedWithin=7&companytypes=2"
  ],
  "maxItems": 200,
  "maxConcurrency": 4,
  "proxy": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "GB" }
}
````

### Output schema

Every row has `rowType: "job"`. **14 fields from JSON-LD + structured salary band + lat/lng + applyUrl.**

```jsonc
{
  "rowType":           "job",
  "sourceSearchUrl":   "https://www.jobsite.co.uk/jobs/in-london",
  "jobId":             "107245246",
  "jobUrl":            "https://www.jobsite.co.uk/job/regional-optimization-lead/bp-energy-job107245246",
  "sourceSite":        "jobsite.co.uk",
  "title":             "Regional Optimization Lead",

  // ── JobPosting JSON-LD ──
  "description":       "<p>Entity: Supply, Trading & Shipping…</p>",
  "datePosted":        "2026-05-07T02:51:32.477Z",
  "validThrough":      "2026-06-18T02:51:32.477Z",
  "employmentType":    "FULL_TIME",
  "industry":          "Management, Management-Area Management",
  "directApply":       true,
  "jobLocationType":   null,
  "applicantLocationRequirements": [],

  // ── Employer ──
  "employer": {
    "name":            "BP Energy",
    "url":             "https://www.jobsite.co.uk/jobs/bp-energy?cmpId=1428985&cmp=1",
    "logoUrl":         "https://www.jobsite.co.uk/CompanyLogos/2e66e5e85ad5408380e06078af3eb663.png"
  },

  // ── Location ──
  "location": {
    "text":            "St James, London, WC2N 5DU, GB",
    "locality":        "St James",
    "region":          "London",
    "postalCode":      "WC2N 5DU",
    "country":         "GB",
    "lat":             51.50445,
    "lng":             -0.13601
  },

  // ── Salary ──
  "salary": {
    "rawText":         "£70,967 to £83,926 per annum",
    "min":             70967,
    "max":             83926,
    "currency":        "GBP",
    "period":          "annum"
  },

  // ── Apply flow ──
  "applyUrl":          "https://www.jobsite.co.uk/job/regional-optimization-lead/bp-energy-job107245246",
  "applyType":         "internal",

  "scrapedAt":         "2026-05-21T20:25:31.012Z"
}
```

### Apply flow — what `applyUrl` and `applyType` mean

Every row carries two apply-flow fields derived from the JSON-LD `directApply` flag:

| `directApply` | `applyType` | `applyUrl` | Meaning |
|---|---|---|---|
| `true` | `"internal"` | **= `jobUrl`** | Jobsite hosts a one-click apply form on the job page itself. Send the candidate to `applyUrl` (which is the same as `jobUrl`) and they can apply without leaving Jobsite. |
| `false` | `"external"` | `null` | The actual apply destination is an external recruiter ATS (e.g. Workday, Greenhouse). Open `jobUrl` in a browser and click *Apply* to be redirected. |
| missing | `"unknown"` | `null` | JSON-LD didn't surface the flag. Treat the same as `"external"`. |

**Practical rule of thumb:** ≈ 60–70 % of Jobsite listings are `directApply: true`, so for that majority you get a usable `applyUrl` directly.

### Notes & limitations

- **Apify Residential GB is mandatory** for the per-job detail fetch. UK-residential routing is the only path that consistently returns 200 OK on detail pages.
- **`employmentType` fill ≈ 70%.** Not every JobPosting JSON-LD declares it. We don't synthesize when missing.
- **`jobLocationType` only set for remote/hybrid roles.** Non-remote jobs leave it `null` — matches JSON-LD semantics.
- **Salary fill ≈ 95% when surfaced.** Structured min/max/currency/period available on most rows; when both layers lack salary, the field is `null` — we don't synthesize.
- **No radius-based filter.** Use a tighter `where=` location instead, or post-filter rows by `location.lat`/`location.lng`.
- **No maximum-salary filter.** Only minimum (`?salary=N`). For range filtering, do it client-side on the row's `salary.max`.

### FAQ

**Which Jobsite URLs work?**
Two types: **listing URLs** (`/jobs/in-london`, `/jobs/software-engineer/in-manchester`, `/jobs/{company-slug}-jobs`) which auto-paginate and emit one row per linked job, and **direct detail URLs** (`/job/{title-slug}/{org-slug}-job{id}`) which scrape one row each. You can mix both in the same `startUrls` array.

**Why do I need Apify Residential GB?**
Jobsite's detail pages are gated to UK residential proxy pools. Datacenter IPs and non-GB residential routes consistently fail. Apify Residential GB is the only pool we've tested that returns clean 200 OK on every probe.

**What's the difference between `sourceSearchUrl`, `jobUrl`, and `applyUrl`?**
Three distinct things:

- **`sourceSearchUrl`** — the *search/listing page* you pasted as input. Breadcrumb back to "where this row came from in your batch", not a URL anyone clicks to view the job.
- **`jobUrl`** — the *per-job detail page* on Jobsite. Use this to view the full listing in a browser.
- **`applyUrl`** — *where the candidate clicks to apply*. Equal to `jobUrl` when `directApply=true` (Jobsite hosts the form); `null` when `directApply=false` (external recruiter ATS).

**What does each dataset-item charge cover?**
One job row with all 14 JSON-LD fields plus the structured salary band (min/max/currency/period) and structured location (lat/lng). `maxItems` is **per listing URL**, so a `maxItems: 100` run with 2 listings = up to 200 charges. The Apify Store pricing event is `apify-default-dataset-item` — Apify auto-charges per row written to the default dataset.

**Why does one search return fewer rows than the Jobsite page shows?**
Two possibilities: (1) **`maxItems` cap.** It's per-listing-URL — if you set `maxItems: 100` and pasted one URL, that's the ceiling. (2) **Filter combo narrows the pool.** The Jobsite "10,000+ jobs in London" badge counts the *unfiltered* corpus; once you apply `postedWithin=1` or `companytypes=2`, the actual filterable count is often a fraction of the headline number. The actor's log emits `[INTERNAL] totalItems=N` so you can see the real server-side count after filtering.

### Support

- **Bugs / feature requests** — open an issue on the GitHub repo
- **Custom exports / tailored fields** — drop a note via the Apify Store contact form
- **Other actors** — see my [Apify Store profile](https://apify.com/memo23) for the rest of the catalog

***

### ⚠️ Disclaimer

This Actor is an independent tool and is **not affiliated with, endorsed by, or sponsored by** Jobsite.co.uk or any of its parent / sister companies. All trademarks mentioned are the property of their respective owners.

The scraper extracts only **publicly visible** job postings from Jobsite.co.uk — no login, no CAPTCHA solving, no credential forgery. The actor uses a conservative concurrency cap (default 4 parallel requests) to avoid burdening Jobsite's infrastructure.

Users are responsible for:

- Complying with Jobsite.co.uk's Terms of Service
- Following UK GDPR + your jurisdiction's data-protection laws when storing or processing scraped postings
- Not contacting candidates listed by employers in scraped postings
- Not republishing scraped data in a way that competes commercially with Jobsite

***

### SEO Keywords

jobsite scraper, scrape jobsite, jobsite uk scraper, jobsite.co.uk scraper, jobsite api, Apify jobsite, uk jobs scraper, uk job board scraping, jobpostings api, jobposting json-ld scraper, uk recruitment api, recruitment scraper uk, uk salary data, salary band extraction, uk job market data, hiring intelligence uk, employer hiring data, b2b sales prospecting uk, london jobs scraping, manchester jobs scraper, edinburgh jobs scraper, apify residential gb

# Actor input Schema

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

Mix of listing URLs (e.g. `https://www.jobsite.co.uk/jobs/in-london`, `https://www.jobsite.co.uk/jobs/software-engineer/in-london`) and direct job-detail URLs. Filters supported in the query string: `?postedWithin=1|3|7|14`, `?companytypes=1|2`, `?salary={int}`, `?jobType=permanent|contract|temporary|partTime|workFromHome`. Listings auto-paginate; details emit one row each.

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

Maximum job rows emitted **per listing URL**. Pass 3 listings with `maxItems: 100` → up to 300 total rows (100 each). Direct detail URLs always emit 1 row each. Each row is one paid dataset item. Default 1000. Free-tier users are additionally capped at 100 total rows.

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

Parallel HTTP requests for detail-page fetches. Concurrency 3-5 is the sweet spot via Apify Residential GB.

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

Per-URL retry budget on network errors, proxy CONNECT failures, HTTP/2 stream resets, and transient 4xx responses. Each retry rotates the proxy session. Default 6.

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

Apify Residential GB required for the detail-page fetch. The listing pagination path is more permissive but the detail HTML is locked to Apify Residential GB.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.jobsite.co.uk/jobs/in-london"
  ],
  "maxItems": 1000,
  "maxConcurrency": 4,
  "maxRequestRetries": 6,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "GB"
  }
}
```

# 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://www.jobsite.co.uk/jobs/in-london"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "GB"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/jobsite-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://www.jobsite.co.uk/jobs/in-london"],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "GB",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/jobsite-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://www.jobsite.co.uk/jobs/in-london"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "GB"
  }
}' |
apify call memo23/jobsite-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Jobsite UK Scraper",
        "description": "Scrape 45,000+ UK jobs from Jobsite.co.uk via the official mobile API. Filters: keyword, location, posted-within, employer-type, min-salary, job-type. Rich rows: title, employer + logo, structured salary (min/max/currency/period), location + lat/lng, applyUrl.",
        "version": "0.1",
        "x-build-id": "W2UNdteI9LtCDWX5t"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/memo23~jobsite-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-memo23-jobsite-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~jobsite-scraper/runs": {
            "post": {
                "operationId": "runs-sync-memo23-jobsite-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~jobsite-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-memo23-jobsite-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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Jobsite URLs",
                        "type": "array",
                        "description": "Mix of listing URLs (e.g. `https://www.jobsite.co.uk/jobs/in-london`, `https://www.jobsite.co.uk/jobs/software-engineer/in-london`) and direct job-detail URLs. Filters supported in the query string: `?postedWithin=1|3|7|14`, `?companytypes=1|2`, `?salary={int}`, `?jobType=permanent|contract|temporary|partTime|workFromHome`. Listings auto-paginate; details emit one row each.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max jobs per listing URL",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum job rows emitted **per listing URL**. Pass 3 listings with `maxItems: 100` → up to 300 total rows (100 each). Direct detail URLs always emit 1 row each. Each row is one paid dataset item. Default 1000. Free-tier users are additionally capped at 100 total rows.",
                        "default": 1000
                    },
                    "maxConcurrency": {
                        "title": "Max parallel requests",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Parallel HTTP requests for detail-page fetches. Concurrency 3-5 is the sweet spot via Apify Residential GB.",
                        "default": 4
                    },
                    "maxRequestRetries": {
                        "title": "Max request retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Per-URL retry budget on network errors, proxy CONNECT failures, HTTP/2 stream resets, and transient 4xx responses. Each retry rotates the proxy session. Default 6.",
                        "default": 6
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Residential GB required for the detail-page fetch. The listing pagination path is more permissive but the detail HTML is locked to Apify Residential GB.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "GB"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
