# Ukraine ProZorro Reconstruction Contracts Scraper (`jungle_synthesizer/ukraine-usr-reconstruction-contracts-scraper`) Actor

Scrapes Ukraine ProZorro public-procurement contracts in reconstruction CPV / DK021 categories (construction, engineering, demolition, capital repair). Emits buyer, supplier, EDRPOU codes, contract value, dates, item descriptions. No auth.

- **URL**: https://apify.com/jungle\_synthesizer/ukraine-usr-reconstruction-contracts-scraper.md
- **Developed by:** [BowTiedRaccoon](https://apify.com/jungle_synthesizer) (community)
- **Categories:** Business, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

## Ukraine ProZorro Reconstruction Contracts Scraper

Pulls awarded reconstruction contracts from Ukraine's [ProZorro public-procurement system](https://prozorro.gov.ua). Returns buyer, supplier, EDRPOU codes, contract value, item descriptions, dates, and parent-tender linkage for construction, demolition, capital repair, and engineering deals — the line items that actually rebuild the country.

---

### Ukraine ProZorro Reconstruction Contracts Scraper Features

- Walks the ProZorro public API newest-first, so the freshest signed deals show up first.
- Filters client-side by DK021 / CPV classification (45* construction, 71* engineering, 34900000 demolition, 90* cleanup) and by Ukrainian-language keywords (відбудова, реконструкція, відновлення, капітальний ремонт). Override either list if your slice of "reconstruction" is narrower.
- Returns ~25 fields per contract — buyer name + EDRPOU + region, supplier name + EDRPOU + scale, value in UAH, dates, item descriptions, CPV codes, and a direct link to the contract page on prozorro.gov.ua.
- Pure JSON API. No proxy, no auth, no captcha. The data is publicly funded and designed for bulk consumption.
- Cyrillic / UTF-8 throughout — names and addresses come back in the original Ukrainian, not transliterated.
- Optional minimum-value filter in UAH for buyers who only care about the big-ticket awards.

---

### Who Uses Ukrainian Reconstruction Contract Data?

- **EU and US firms bidding rebuild work** — Map who's already winning what, who the active buyers are, and which oblasts have the most pipeline.
- **Sanctions and compliance teams** — Screen supplier ownership chains against Russia-linked beneficiaries before signing on as a sub.
- **Anti-corruption NGOs** — Track donor-funded contracts (EU, USAID, World Bank) flowing through municipal buyers, and flag the unusual ones.
- **Investigative journalists** — Follow the money. The full procuringEntity chain is in the data.
- **Construction-industry analysts** — Build deal-flow dashboards by region, CPV category, or buyer kind.
- **Government affairs and diplomatic missions** — Keep a running view of post-war reconstruction spend without scraping the portal yourself.

---

### How the Ukraine ProZorro Reconstruction Contracts Scraper Works

1. Walks the ProZorro `/api/2.5/contracts` cursor feed in descending date order, page by page.
2. For each contract ID, fetches the full payload from the public API — items, suppliers, buyer, value, dates, classifications.
3. Drops anything that doesn't match either the CPV prefix list or the Ukrainian keyword list. Optionally drops cancelled / terminated contracts and below-threshold values.
4. Emits the survivor as a flat JSON record. No nested objects in arrays — just clean fields you can drop straight into a database or spreadsheet.

---

### Input

```json
{
  "maxItems": 100,
  "onlySignedContracts": true,
  "minValueUah": 0,
  "cpvPrefixes": [],
  "keywords": []
}
````

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `maxItems` | integer | `10` | Maximum number of reconstruction contracts to return. The scraper walks the feed newest-first and filters client-side, so larger values fetch more underlying records. Range: 1–5000. |
| `onlySignedContracts` | boolean | `true` | When true, drops `cancelled` / `terminated` contracts. Set false to include the full lifecycle. |
| `minValueUah` | integer | `0` | Skip contracts below this UAH value. 0 disables the filter. Note that small UAH amounts may have been originally signed in EUR or USD. |
| `cpvPrefixes` | array | `[]` | Override the default DK021 / CPV prefix list. Empty array uses the defaults: `45`, `71`, `34900000`, `90`. Pass `["45"]` for construction-only, `["71"]` for engineering-only, etc. |
| `keywords` | array | `[]` | Override the default Ukrainian keyword list. Empty array uses the defaults: `відбудова`, `реконструкц`, `відновлення`, `відновлювальн`, `капітальний ремонт`. Substring match, case-insensitive. |

#### Engineering-only example

```json
{
  "maxItems": 50,
  "cpvPrefixes": ["71"],
  "onlySignedContracts": true
}
```

#### Big-ticket awards only

```json
{
  "maxItems": 100,
  "minValueUah": 5000000,
  "onlySignedContracts": true
}
```

***

### Ukraine ProZorro Reconstruction Contracts Scraper Output Fields

```json
{
  "contract_id": "6954e14eaaab4bd18187f34f6049c763",
  "contract_number": "UA-2026-05-01-011820-a-a1",
  "tender_id": "2121e6bb895641d2ad02112bd6fa4185",
  "tender_number": "",
  "status": "active",
  "date_signed": "2026-04-29T00:00:00+03:00",
  "date_modified": "2026-05-01T22:26:58.606160+03:00",
  "period_start": "2026-04-29T00:00:00+03:00",
  "period_end": "2026-12-31T23:59:59+02:00",
  "title": "Проектно-вишукувальні послуги з розроблення технічної документації...",
  "value_amount": 19500,
  "value_currency": "UAH",
  "value_with_vat": false,
  "buyer_name": "Виходянська сільська рада",
  "buyer_edrpou": "04377701",
  "buyer_region": "Одеська область",
  "buyer_locality": "Одеський район",
  "supplier_name": "ФОП Рогачко С.П.",
  "supplier_edrpou": "2487904601",
  "supplier_region": "Одеська область",
  "supplier_locality": "м.Біляївка",
  "supplier_scale": "sme",
  "additional_suppliers": [],
  "cpv_codes": ["71330000-0"],
  "item_descriptions": ["Проектно-вишукувальні послуги..."],
  "reconstruction_signal": "cpv",
  "profile_url": "https://prozorro.gov.ua/contract/6954e14eaaab4bd18187f34f6049c763",
  "tender_profile_url": "https://prozorro.gov.ua/tender/2121e6bb895641d2ad02112bd6fa4185",
  "scraped_at": "2026-05-01T19:29:28.769Z"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `contract_id` | string | ProZorro internal contract UUID. |
| `contract_number` | string | Human-readable contract identifier (e.g. `UA-2025-...-c1`). |
| `tender_id` | string | UUID of the parent tender on ProZorro. |
| `tender_number` | string | Parent tender's `UA-...` identifier when carried by the contract. |
| `status` | string | `active`, `complete`, `pending`, `terminated`, or `cancelled`. |
| `date_signed` | string (ISO 8601) | Date the contract was signed. |
| `date_modified` | string (ISO 8601) | Last modification timestamp. |
| `period_start` | string (ISO 8601) | Performance period start. |
| `period_end` | string (ISO 8601) | Performance period end. |
| `title` | string | Contract title in Ukrainian. |
| `value_amount` | number | Signed contract value (numeric). |
| `value_currency` | string | Currency code, typically `UAH`. |
| `value_with_vat` | boolean | Whether the signed value includes VAT. |
| `buyer_name` | string | Procuring entity legal name. |
| `buyer_edrpou` | string | Buyer's EDRPOU code (Ukraine state register ID). |
| `buyer_region` | string | Buyer's oblast / region. |
| `buyer_locality` | string | Buyer's city or settlement. |
| `supplier_name` | string | Primary awardee name. |
| `supplier_edrpou` | string | Supplier's EDRPOU code. |
| `supplier_region` | string | Supplier's oblast. |
| `supplier_locality` | string | Supplier's city. |
| `supplier_scale` | string | `micro`, `sme`, or `large`. |
| `additional_suppliers` | array of strings | Additional suppliers beyond the primary one, each formatted as `Name (EDRPOU 12345) — Locality`. |
| `cpv_codes` | array of strings | DK021 / CPV classification codes from the contract items. |
| `item_descriptions` | array of strings | Item descriptions from the contract, in Ukrainian. |
| `reconstruction_signal` | string | Why the contract matched: `cpv`, `keyword`, or `cpv+keyword`. |
| `profile_url` | string | Public ProZorro contract page URL. |
| `tender_profile_url` | string | Parent tender page URL. |
| `scraped_at` | string (ISO 8601) | When this record was scraped. |

***

### FAQ

#### How do I scrape Ukrainian reconstruction contracts from ProZorro?

The Ukraine ProZorro Reconstruction Contracts Scraper does it for you. Set `maxItems`, hit run, and it walks the public API filtering for construction, engineering, demolition, and capital-repair contracts.

#### Does the Ukraine ProZorro Reconstruction Contracts Scraper need a proxy?

No. ProZorro's public API has no rate limit beyond a courtesy delay we apply ourselves, and there's no captcha or auth.

#### Can I narrow the scrape to just one CPV category?

Yes. Pass `cpvPrefixes: ["45"]` for construction work only, `["71"]` for architectural / engineering services, or any combination. Empty array uses the full default set.

#### What's the difference between a "cpv" and "keyword" reconstruction signal?

The Ukraine ProZorro Reconstruction Contracts Scraper marks each contract with how it qualified. `cpv` means the classification code matched a reconstruction prefix; `keyword` means the title or item description contained a Ukrainian reconstruction word; `cpv+keyword` means both. Both signals together is the highest-confidence match.

#### How recent are the contracts?

ProZorro is real-time. Contracts appear in the feed within seconds of being signed in any of the authorised marketplaces, and this scraper walks newest-first.

#### Are values in UAH or original currency?

Whatever ProZorro reports — `value_currency` tells you which. Most are UAH. Some donor-funded reconstruction contracts (EU, USAID, World Bank) are denominated in EUR or USD; use `value_currency` to filter or convert.

***

### Need More Features?

Want supplier sanctions enrichment, donor-source tagging, or full parent-tender history? File a feature request — we ship custom fields fast.

### Why Use the Ukraine ProZorro Reconstruction Contracts Scraper?

- **First Ukraine-specific procurement scraper on Apify** — There's nothing else covering this dataset on the store.
- **Native Ukrainian text** — Names, addresses, and item descriptions stay in Ukrainian. No transliteration loss when you join against EDRPOU registries downstream.
- **Both CPV and keyword filtering** — Catches contracts that don't have the "right" classification but obviously belong (and vice versa).
- **EDRPOU codes for buyer and supplier** — The state-register ID that anchors every Ukrainian legal entity. Lets you cross-reference against sanctions lists, beneficial-owner registries, and YouControl exports without name-matching guesswork.

# Actor input Schema

## `sp_intended_usage` (type: `string`):

Please describe how you plan to use the data extracted by this crawler.

## `sp_improvement_suggestions` (type: `string`):

Provide any feedback or suggestions for improvements.

## `sp_contact` (type: `string`):

Provide your email address so we can get in touch with you.

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

Maximum number of reconstruction contracts to return. Default 10.
The scraper walks the ProZorro feed newest-first and filters
client-side, so larger values fetch more underlying records.

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

Override the default Ukrainian-language reconstruction keyword list.
Matches against contract title and item descriptions, case-insensitive.
Leave empty to use the built-in defaults (відбудова, реконструкція,
відновлення, відновлювальн, капітальний ремонт).

## `cpvPrefixes` (type: `array`):

Override the default classification-code prefix list. ProZorro uses
Ukraine's DK021 classifier (a localised CPV variant). A contract
passes if any of its items has a classification id starting with
one of these. Defaults: 45 (construction), 71 (engineering),
34900000 (demolition), 90 (cleaning / refuse). Leave empty to use defaults.

## `minValueUah` (type: `integer`):

Skip contracts with a signed value below this threshold (in Ukrainian
hryvnia). Set to 0 to include everything. Small UAH values may have
been originally signed in EUR or USD.

## `onlySignedContracts` (type: `boolean`):

When true, skip contracts in `cancelled` / `terminated` status and
emit only currently-active or completed signings.

## Actor input object example

```json
{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 10,
  "keywords": [],
  "cpvPrefixes": [],
  "minValueUah": 0,
  "onlySignedContracts": true
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 10,
    "keywords": [],
    "cpvPrefixes": [],
    "minValueUah": 0,
    "onlySignedContracts": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("jungle_synthesizer/ukraine-usr-reconstruction-contracts-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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 10,
    "keywords": [],
    "cpvPrefixes": [],
    "minValueUah": 0,
    "onlySignedContracts": True,
}

# Run the Actor and wait for it to finish
run = client.actor("jungle_synthesizer/ukraine-usr-reconstruction-contracts-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 '{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 10,
  "keywords": [],
  "cpvPrefixes": [],
  "minValueUah": 0,
  "onlySignedContracts": true
}' |
apify call jungle_synthesizer/ukraine-usr-reconstruction-contracts-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Ukraine ProZorro Reconstruction Contracts Scraper",
        "description": "Scrapes Ukraine ProZorro public-procurement contracts in reconstruction CPV / DK021 categories (construction, engineering, demolition, capital repair). Emits buyer, supplier, EDRPOU codes, contract value, dates, item descriptions. No auth.",
        "version": "0.1",
        "x-build-id": "xg1XiXwt6rUu9B36i"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/jungle_synthesizer~ukraine-usr-reconstruction-contracts-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-jungle_synthesizer-ukraine-usr-reconstruction-contracts-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/jungle_synthesizer~ukraine-usr-reconstruction-contracts-scraper/runs": {
            "post": {
                "operationId": "runs-sync-jungle_synthesizer-ukraine-usr-reconstruction-contracts-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/jungle_synthesizer~ukraine-usr-reconstruction-contracts-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-jungle_synthesizer-ukraine-usr-reconstruction-contracts-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": [
                    "maxItems"
                ],
                "properties": {
                    "sp_intended_usage": {
                        "title": "What is the intended usage of this data?",
                        "minLength": 1,
                        "type": "string",
                        "description": "Please describe how you plan to use the data extracted by this crawler."
                    },
                    "sp_improvement_suggestions": {
                        "title": "How can we improve this crawler for you?",
                        "minLength": 1,
                        "type": "string",
                        "description": "Provide any feedback or suggestions for improvements."
                    },
                    "sp_contact": {
                        "title": "Contact Email",
                        "minLength": 1,
                        "type": "string",
                        "description": "Provide your email address so we can get in touch with you."
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of reconstruction contracts to return. Default 10.\nThe scraper walks the ProZorro feed newest-first and filters\nclient-side, so larger values fetch more underlying records.\n",
                        "default": 10
                    },
                    "keywords": {
                        "title": "Reconstruction keywords (Ukrainian)",
                        "type": "array",
                        "description": "Override the default Ukrainian-language reconstruction keyword list.\nMatches against contract title and item descriptions, case-insensitive.\nLeave empty to use the built-in defaults (відбудова, реконструкція,\nвідновлення, відновлювальн, капітальний ремонт).\n",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cpvPrefixes": {
                        "title": "CPV / DK021 code prefixes",
                        "type": "array",
                        "description": "Override the default classification-code prefix list. ProZorro uses\nUkraine's DK021 classifier (a localised CPV variant). A contract\npasses if any of its items has a classification id starting with\none of these. Defaults: 45 (construction), 71 (engineering),\n34900000 (demolition), 90 (cleaning / refuse). Leave empty to use defaults.\n",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minValueUah": {
                        "title": "Minimum contract value (UAH)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip contracts with a signed value below this threshold (in Ukrainian\nhryvnia). Set to 0 to include everything. Small UAH values may have\nbeen originally signed in EUR or USD.\n",
                        "default": 0
                    },
                    "onlySignedContracts": {
                        "title": "Only signed (active) contracts",
                        "type": "boolean",
                        "description": "When true, skip contracts in `cancelled` / `terminated` status and\nemit only currently-active or completed signings.\n",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
