# UST, LUST & Spill Registry Screener — National + NY/CA/TX/FL (`malonestar/state-tank-spill-registry-screener`) Actor

Underground storage tank (UST/LUST) and spill registry screener. Screen any US coordinate against the national EPA UST Finder plus NY, CA, TX and FL state registries — tank leaks, spills, and cleanup cases with case type, status, contaminant, and distance per hit, for Phase I ESA due diligence.

- **URL**: https://apify.com/malonestar/state-tank-spill-registry-screener.md
- **Developed by:** [Kyle Maloney](https://apify.com/malonestar) (community)
- **Categories:** Real estate, Developer tools, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.50 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## State UST, LUST & Spill Registry Screener — National + NY, CA, TX, FL

A **national + state-level underground storage tank (UST/LUST) and spill/leak
registry screener**. Give it a list of asset coordinates and it screens each
one for nearby tank leaks, spills, and cleanup cases — records that federal-
only screens routinely miss because day-to-day UST/LUST/spill enforcement
mostly lives at the state agency, not the EPA. v1.1 adds a **national EPA UST
Finder baseline** (facilities + LUST releases, every US state) on top of
deep coverage for **New York** (DEC Spills + DEC Bulk Storage), **California**
(SWRCB GeoTracker), **Texas** (TCEQ PST facilities + LPST leak sites), and
**Florida** (DEP petroleum contamination sites). More states can be added the
same way, one config block at a time.

### Coverage at a glance
| Source | Scope | What it adds | Coordinates |
|---|---|---|---|
| EPA UST Finder | National (all 50 states) | Registered UST facilities + LUST releases — the federal baseline | Yes (per-record) |
| NY DEC Spills | New York | Reported petroleum/chemical spills, material, quantity, open/closed | Yes (where geocoded) |
| NY DEC Bulk Storage | New York | Registered PBS/CBS/MOSF bulk storage tank facilities | No — county-matched |
| CA GeoTracker | California | LUST Cleanup Sites, Military UST Sites, Land Disposal Sites, UIC cases | Yes |
| TX PST | Texas | TCEQ-registered petroleum storage tank facilities | Yes (falls back to county-matched if the geo query fails) |
| TX LPST | Texas | TCEQ leaking PST (LPST) cleanup sites | No — county-matched |
| FL DEP | Florida | DEP petroleum contamination / discharge sites | Yes (converted from DMS) |

Rows without precise coordinates (NY Bulk Storage, TX LPST, and any
county-mode fallback) are still returned — matched to the asset's county —
rather than silently dropped, so a "clear" result always means "nothing
found," not "the query failed."

### Who this is for
- **Phase I ESA consultants** who need a fast, repeatable first pass on
  federal and state tank/spill records before ordering (or in place of, for a
  quick triage) a full commercial environmental database report.
- **CRE lenders and acquisition teams** screening a pipeline of properties
  for tank/spill red flags before underwriting.
- **Environmental attorneys and consultants** doing due diligence or
  litigation support who need to check "is there a known spill or leaking
  tank near this address," anywhere in the US.

### What it does
For each asset (`lat`, `lon`, `label`):
1. Queries the **national EPA UST Finder** database (unless `includeNational`
   is set to `false`) for nearby registered UST facilities and LUST releases.
2. Queries whichever of **NY, CA, TX, FL** are selected in `states` for their
   own state-level registries (see the coverage table above).
3. Filters everything to your `radiusMiles`, sorts nearest-first, and returns
   one row per case/spill/facility. **An asset with zero hits still returns
   exactly one "clear" row** (`clear_flag: true`) so a screening verdict is
   always explicit and billable — you never have to guess whether an empty
   result means "clean" or "the query failed."

### Example input
```json
{
  "assets": [
    { "lat": 40.678, "lon": -73.944, "label": "Brooklyn NY site" },
    { "lat": 34.052, "lon": -118.243, "label": "Downtown LA site" },
    { "lat": 29.76, "lon": -95.37, "label": "Houston TX site" }
  ],
  "radiusMiles": 1,
  "states": ["NY", "CA", "TX", "FL"],
  "includeNational": true,
  "openCasesOnly": false,
  "maxResultsPerAsset": 20
}
````

### Output fields

| Field | Description |
|---|---|
| `asset_label`, `asset_lat`, `asset_lon` | Echoed from your input. |
| `radius_miles` | The search radius used for this run. |
| `state` | `NY`, `CA`, `TX`, or `FL`. For national EPA UST Finder hits this is resolved from the record itself when available. Null on clear/error rows. |
| `source` | `NY DEC Spills`, `NY DEC Bulk Storage`, `CA GeoTracker`, `TX PST`, `TX LPST`, `FL DEP`, or `EPA UST Finder`. |
| `site_name` | Facility/site name associated with the case. |
| `case_or_spill_id` | The registry's own case/spill/facility ID. |
| `case_type` | e.g. `Spill - Petroleum`, `Bulk Storage — PBS`, `LUST Cleanup Site`, `PST Facility`, `LPST Leak Site`, `Petroleum Contamination Site`, `UST Facility`, `UST Release (LUST)`. |
| `status` | Registry status text. |
| `is_open` | Best-effort open/closed determination. |
| `contaminant` | Contaminant / material released (where reported). |
| `quantity_released`, `units` | Reported quantity and units (NY Spills / CA GeoTracker only). |
| `event_date` | Spill/report date, where the source exposes one. |
| `closure_date` | Case closure / NFA date, if closed. |
| `distance_miles` | Great-circle distance from the asset to the case. Null on county-scoped matches (no precise coordinates available from that source). |
| `address`, `county` | Where reported. |
| `phase1_flag` | Per-asset rollup: true if any hit for this asset is still open. |
| `clear_flag` | True only on the single "no hits" summary row for an asset. |
| `source_url` | Link back to the record where the source supports one. |
| `disclaimer`, `checked_at`, `error` | Standard screening metadata. |

### Use as an MCP tool

This actor is discoverable and callable by AI agents (Claude, Cursor, etc.)
via [mcp.apify.com](https://mcp.apify.com) — the input/output schemas are
field-documented so an agent can chain this into a larger due-diligence
workflow (e.g. alongside `epa-contaminated-site-screener`,
`usace-levee-flood-risk-screener`, or `site-due-diligence-bundle`).

### FAQ

**Can I search for underground storage tanks by address?**
Geocode the address to lat/lon first (e.g. with the free Census geocoder or
your own tool), then pass the coordinates in `assets`.

**Does this cover Texas LPST sites?**
Yes — `states: ["TX"]` (or leave the default, which includes TX) returns TCEQ
PST facility registrations and LPST leaking-tank cleanup sites, tagged
`source: "TX LPST"` with `case_type: "LPST Leak Site"`.

**Is there a national underground storage tank database search?**
Yes — leave `includeNational: true` (the default) and every asset is also
screened against the EPA's national UST Finder database (registered
facilities + LUST releases), regardless of which state it's in.

**Does this cover LUST sites in California?**
Yes — CA GeoTracker case types include `LUST Cleanup Site`, `Military UST
Site`, `Land Disposal Site`, and `UIC`, all returned with `case_type`.

**Can I find NY DEC spill records or bulk storage tanks near a property?**
Yes — NY DEC Spills returns material, quantity, and open/closed status; NY
DEC Bulk Storage returns registered PBS/CBS/MOSF tank facilities (matched by
county, since that dataset doesn't expose coordinates).

**Does this cover Florida petroleum contamination sites?**
Yes — FL DEP petroleum contamination / discharge sites are returned with
`case_type: "Petroleum Contamination Site"`; coordinates are converted from
the source's degrees/minutes/seconds fields.

**Is this a substitute for a licensed Phase I ESA?**
No. This is a fast records screen, not an ASTM E1527 Phase I Environmental
Site Assessment. Always confirm findings with the agency of record and a
licensed environmental professional before any transaction decision.

### Pricing

$10 per 1,000 results (single automatic Result/dataset-item event — no
double-charging). An asset with zero hits still bills one result (the
"clear" row), matching how the actor's other due-diligence screeners price.

### Data sources

- EPA UST Finder: hosted ArcGIS FeatureServer, `services.arcgis.com` (keyless;
  service name is resolved at runtime from a short candidate list).
- NY DEC Spills: `data.ny.gov/resource/u44d-k5fk.json` (Socrata, keyless).
- NY DEC Bulk Storage: `data.ny.gov/resource/pteg-c78n.json` (Socrata, keyless).
- CA GeoTracker sites: `gispublic.waterboards.ca.gov` hosted ArcGIS
  FeatureServer (keyless).
- TX PST facilities: `data.texas.gov/resource/jx8f-z4hu.json` (Socrata, keyless).
- TX LPST leak sites: `data.texas.gov/resource/hedz-nn4q.json` (Socrata, keyless).
- FL DEP petroleum contamination: `ca.dep.state.fl.us` ArcGIS MapServer (keyless).

### Disclaimer

Screening aid only — NOT a substitute for a licensed Phase I Environmental
Site Assessment (ASTM E1527) or an official state/federal records search.
Distances are measured to a database point (often a facility/site centroid,
not a property boundary); records without usable coordinates are still
returned when a county-level match is available, but cannot be
distance-screened. Coverage, field names, and status codes vary by source and
can change without notice.

# Actor input Schema

## `assets` (type: `array`):

Property/asset locations to screen for nearby underground storage tank (UST), leaking UST (LUST), spill, and cleanup cases. Each item is {"lat": <number>, "lon": <number>, "label": "..."}; an optional "county" hint improves matching for every county-scoped source (NY DEC Spills/Bulk Storage, TX PST/LPST, FL DEP) if the live FCC county lookup ever fails. One dataset row is produced per case/spill found within the radius; an asset with zero hits still returns a single "clear" row so screening verdicts are always explicit.

## `radiusMiles` (type: `number`):

Search radius in miles around each asset for nearby UST/LUST/spill/cleanup cases. Default 1 mile. Range 0.1-10.

## `states` (type: `array`):

Which state-level tank/spill registries to query, in addition to the national EPA UST Finder baseline (see includeNational). Covers New York (DEC Spills + DEC Bulk Storage PBS/CBS/MOSF), California (SWRCB GeoTracker), Texas (TCEQ PST facilities + LPST leak sites), and Florida (DEP petroleum contamination sites). An asset outside all four states still gets a graceful 'clear' (or national-only) result.

## `includeNational` (type: `boolean`):

When true (default), also screen the national EPA UST Finder database (UST facilities + LUST releases) for every asset, regardless of which state is selected in "states". This gives a federal baseline even outside NY/CA/TX/FL. Set to false to screen only the states selected above.

## `openCasesOnly` (type: `boolean`):

When true, only return cases/spills that are still open (not closed / no-further-action). When false (default), return both open and closed cases within the radius.

## `maxResultsPerAsset` (type: `integer`):

Maximum number of case/spill rows returned per asset, across all selected states plus the national baseline (nearest first). Default 100. Range 1-2000. Prefill is set to a smaller 20 so the default demo run (which now spans 5 sources across 3 states) stays fast and inexpensive.

## Actor input object example

```json
{
  "assets": [
    {
      "lat": 40.678,
      "lon": -73.944,
      "label": "Brooklyn NY site"
    },
    {
      "lat": 34.052,
      "lon": -118.243,
      "label": "Downtown LA site"
    },
    {
      "lat": 29.76,
      "lon": -95.37,
      "label": "Houston TX site"
    }
  ],
  "radiusMiles": 1,
  "states": [
    "NY",
    "CA",
    "TX",
    "FL"
  ],
  "includeNational": true,
  "openCasesOnly": false,
  "maxResultsPerAsset": 20
}
```

# Actor output Schema

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

The default dataset with one row per case/spill or clear-screen result.

# 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 = {
    "assets": [
        {
            "lat": 40.678,
            "lon": -73.944,
            "label": "Brooklyn NY site"
        },
        {
            "lat": 34.052,
            "lon": -118.243,
            "label": "Downtown LA site"
        },
        {
            "lat": 29.76,
            "lon": -95.37,
            "label": "Houston TX site"
        }
    ],
    "radiusMiles": 1,
    "states": [
        "NY",
        "CA",
        "TX",
        "FL"
    ],
    "includeNational": true,
    "openCasesOnly": false,
    "maxResultsPerAsset": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("malonestar/state-tank-spill-registry-screener").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 = {
    "assets": [
        {
            "lat": 40.678,
            "lon": -73.944,
            "label": "Brooklyn NY site",
        },
        {
            "lat": 34.052,
            "lon": -118.243,
            "label": "Downtown LA site",
        },
        {
            "lat": 29.76,
            "lon": -95.37,
            "label": "Houston TX site",
        },
    ],
    "radiusMiles": 1,
    "states": [
        "NY",
        "CA",
        "TX",
        "FL",
    ],
    "includeNational": True,
    "openCasesOnly": False,
    "maxResultsPerAsset": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("malonestar/state-tank-spill-registry-screener").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 '{
  "assets": [
    {
      "lat": 40.678,
      "lon": -73.944,
      "label": "Brooklyn NY site"
    },
    {
      "lat": 34.052,
      "lon": -118.243,
      "label": "Downtown LA site"
    },
    {
      "lat": 29.76,
      "lon": -95.37,
      "label": "Houston TX site"
    }
  ],
  "radiusMiles": 1,
  "states": [
    "NY",
    "CA",
    "TX",
    "FL"
  ],
  "includeNational": true,
  "openCasesOnly": false,
  "maxResultsPerAsset": 20
}' |
apify call malonestar/state-tank-spill-registry-screener --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=malonestar/state-tank-spill-registry-screener",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "UST, LUST & Spill Registry Screener — National + NY/CA/TX/FL",
        "description": "Underground storage tank (UST/LUST) and spill registry screener. Screen any US coordinate against the national EPA UST Finder plus NY, CA, TX and FL state registries — tank leaks, spills, and cleanup cases with case type, status, contaminant, and distance per hit, for Phase I ESA due diligence.",
        "version": "1.0",
        "x-build-id": "ruBTPiDrQcsCJA7Bc"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/malonestar~state-tank-spill-registry-screener/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-malonestar-state-tank-spill-registry-screener",
                "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/malonestar~state-tank-spill-registry-screener/runs": {
            "post": {
                "operationId": "runs-sync-malonestar-state-tank-spill-registry-screener",
                "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/malonestar~state-tank-spill-registry-screener/run-sync": {
            "post": {
                "operationId": "run-sync-malonestar-state-tank-spill-registry-screener",
                "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": [
                    "assets"
                ],
                "properties": {
                    "assets": {
                        "title": "Assets to screen",
                        "type": "array",
                        "description": "Property/asset locations to screen for nearby underground storage tank (UST), leaking UST (LUST), spill, and cleanup cases. Each item is {\"lat\": <number>, \"lon\": <number>, \"label\": \"...\"}; an optional \"county\" hint improves matching for every county-scoped source (NY DEC Spills/Bulk Storage, TX PST/LPST, FL DEP) if the live FCC county lookup ever fails. One dataset row is produced per case/spill found within the radius; an asset with zero hits still returns a single \"clear\" row so screening verdicts are always explicit."
                    },
                    "radiusMiles": {
                        "title": "Screening radius (miles)",
                        "minimum": 0.1,
                        "maximum": 10,
                        "type": "number",
                        "description": "Search radius in miles around each asset for nearby UST/LUST/spill/cleanup cases. Default 1 mile. Range 0.1-10.",
                        "default": 1
                    },
                    "states": {
                        "title": "States to screen",
                        "type": "array",
                        "description": "Which state-level tank/spill registries to query, in addition to the national EPA UST Finder baseline (see includeNational). Covers New York (DEC Spills + DEC Bulk Storage PBS/CBS/MOSF), California (SWRCB GeoTracker), Texas (TCEQ PST facilities + LPST leak sites), and Florida (DEP petroleum contamination sites). An asset outside all four states still gets a graceful 'clear' (or national-only) result.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "NY",
                                "CA",
                                "TX",
                                "FL"
                            ],
                            "enumTitles": [
                                "New York (DEC Spills + Bulk Storage)",
                                "California (GeoTracker)",
                                "Texas (TCEQ PST + LPST)",
                                "Florida (DEP Petroleum Contamination)"
                            ]
                        },
                        "default": [
                            "NY",
                            "CA",
                            "TX",
                            "FL"
                        ]
                    },
                    "includeNational": {
                        "title": "Include national EPA UST Finder baseline",
                        "type": "boolean",
                        "description": "When true (default), also screen the national EPA UST Finder database (UST facilities + LUST releases) for every asset, regardless of which state is selected in \"states\". This gives a federal baseline even outside NY/CA/TX/FL. Set to false to screen only the states selected above.",
                        "default": true
                    },
                    "openCasesOnly": {
                        "title": "Open cases only",
                        "type": "boolean",
                        "description": "When true, only return cases/spills that are still open (not closed / no-further-action). When false (default), return both open and closed cases within the radius.",
                        "default": false
                    },
                    "maxResultsPerAsset": {
                        "title": "Max results per asset",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of case/spill rows returned per asset, across all selected states plus the national baseline (nearest first). Default 100. Range 1-2000. Prefill is set to a smaller 20 so the default demo run (which now spans 5 sources across 3 states) stays fast and inexpensive.",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
