# Form QA Checker (`junipr/form-qa-checker`) Actor

Inspect web forms for labels, required fields, validation hints, broken submission indicators, and accessibility risks.

- **URL**: https://apify.com/junipr/form-qa-checker.md
- **Developed by:** [junipr](https://apify.com/junipr) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $15.00 / 1,000 browser page checkeds

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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

## Form QA Checker

<!-- FIXED_INCLUSIVE_PPE_20260707_START -->
### Store Positioning

**Store title:** Form QA Checker

**Short description:** Inspect web forms for labels, required fields, validation hints, broken submission indicators, and accessibility risks.

**SEO title:** Form QA Checker — browser, screenshot, and rendered-page audit

**SEO description:** Inspect web forms for labels, required fields, validation hints, broken submission indicators, and accessibility risks. Use it when rendered pages, screenshots, dynamic UI, or browser-visible evidence matters, with explicit caps and cost controls.

**Categories:** DEVELOPER_TOOLS

**Keywords:** form, qa, checker, web audit, browser/screenshot/rendered-page actor

### Fixed-Inclusive PPE Pricing

This actor uses pay-per-event pricing. Event prices include Apify platform usage; users are not expected to pay a separate platform-usage pass-through charge for the configured pricing model.

- Tier: B1 — Browser/screenshot/rendered-page actor
- Primary event: `browser-page-checked` at $0.01500 base
- Default max charge: $50.00
- Store discounts: FREE/BRONZE base, SILVER discounted, GOLD deepest approved discount

Event set:

- `actor-start`: base $0.05000, GOLD $0.04400. Form QA Checker: charged when actor start is completed. The price includes Apify platform usage; no separate usage pass-through is intended.
- `browser-page-checked`: base $0.01500, GOLD $0.01320. Form QA Checker: charged when browser page checked is completed. The price includes Apify platform usage; no separate usage pass-through is intended.
- `screenshot-captured`: base $0.01000, GOLD $0.00880. Form QA Checker: charged when screenshot captured is completed. The price includes Apify platform usage; no separate usage pass-through is intended.
- `issue-detected`: base $0.01300, GOLD $0.01140. Form QA Checker: charged when issue detected is completed. The price includes Apify platform usage; no separate usage pass-through is intended.
- `report-generated`: base $0.10000, GOLD $0.08800. Form QA Checker: charged when report generated is completed. The price includes Apify platform usage; no separate usage pass-through is intended.

### Public Task Concepts

- Audit Form QA controls on a capped public page set
- Find high-priority Form QA issues before release
- Validate Form QA evidence from supplied pages
- Prioritize Form QA fixes with severity and proof
- Export Form QA QA rows for client review
<!-- FIXED_INCLUSIVE_PPE_20260707_END -->

Inspect web forms for labels, required fields, validation hints, broken submission indicators, and accessibility risks.

### What This Actor Does

Form QA Checker inspects supplied HTML or renders public URLs in Chromium, then returns form-by-form evidence for labels, accessible names, required controls, submit controls, methods, actions, validation settings, and risky password submission patterns.

Optional full-page screenshots are stored under deterministic KVS keys only after the screenshot charge succeeds. The actor never submits arbitrary public forms; permissioned submission status or error evidence can be supplied in record metadata for correlation with markup findings.

### What This Actor Does Not Do

- It does not provide legal, medical, financial, investment, safety, or compliance advice.
- It does not guarantee completeness of any public source or third-party dataset.
- It does not collect sensitive personal data by default.
- It does not rely on unsupported private APIs.
- It does not automatically submit forms, create accounts, send messages, or trigger transactions.

### Best Use Cases

- form launch QA
- lead capture accessibility checks
- required-field and validation review

### Input Fields Explained

| Field | Type | Default | Notes |
| --- | --- | --- | --- |
| `records` | array | built-in records | Form snapshots with HTML and optional permissioned submission evidence. |
| `urls` | array | [] | Public pages to render; explicit URLs override schema-populated default records. |
| `fetchUrls` | boolean | false | Renders URL rows in Chromium before analysis. |
| `fetchTimeoutMs` | integer | 12000 | Browser navigation timeout, capped at 30 seconds. |
| `captureScreenshots` | boolean | false | Saves a full-page PNG for each rendered row after a screenshot charge. |
| `watchTerms` | array | actor defaults | Terms used to mark relevant records and alerts. |
| `includeReport` | boolean | true | Writes JSON and Markdown report artifacts to the key-value store. |
| `maxItems` | integer | 2 | Caps processed records. Maximum is 50. |
| `maxTextBytes` | integer | 500000 | Caps analyzed text per record. |
| `debug` | boolean | false | Enables debug logging. |

### Example Input

```json
{
  "records": [
    {
      "sourceId": "form-good",
      "sourceUrl": "https://example.com/quote",
      "title": "Quote form QA pass",
      "description": "Form includes labels, required hints, and submit action.",
      "category": "form qa",
      "keywords": [],
      "metadata": {
        "html": "<form><label for=\"name\">Name</label><input id=\"name\" required><label for=\"email\">Email</label><input id=\"email\" type=\"email\" required><button type=\"submit\">Send</button></form>"
      }
    },
    {
      "sourceId": "form-risk",
      "sourceUrl": "https://example.com/signup",
      "title": "Signup form missing basics",
      "description": "Form has unlabeled input and no submit button.",
      "category": "form qa",
      "keywords": [
        "unlabeled input"
      ],
      "metadata": {
        "html": "<form><input placeholder=\"Email\"></form>"
      }
    }
  ],
  "includeReport": true,
  "maxItems": 2
}
````

### Output Fields Explained

| Field | Meaning |
| --- | --- |
| `auditId` | Stable hash for the checked record. |
| `sourceId`, `sourceUrl` | Source identifiers for traceability. |
| `status`, `severity`, `score` | Normalized outcome and 0-100 quality/risk score. |
| `matchedKeywords` | Watch terms found in the record text or metadata. |
| `issues`, `issueCodes` | Actor-specific findings with severity and messages. |
| `recommendations` | Next actions for the operator or content/data owner. |
| `metadata` | Original metadata plus derived helper fields when applicable. |
| `pricingTemplate`, `pricingEventName` | PPE tier and primary billed event. |

### Example Output

```json
{
  "auditId": "formqa_b4381899d6fb1658",
  "actorSlug": "form-qa-checker",
  "actorName": "Form QA Checker",
  "sourceType": "input",
  "sourceId": "form-good",
  "sourceUrl": "https://example.com/quote",
  "title": "Quote form QA pass",
  "status": "warn",
  "severity": "medium",
  "score": 82,
  "matchedKeywords": [],
  "primaryEntity": null,
  "category": "form qa",
  "publishedAt": null,
  "summary": "Form includes labels, required hints, and submit action.",
  "issueCount": 1,
  "issues": [
    {
      "code": "form-action-missing",
      "severity": "warning",
      "message": "Forms without an explicit action (1).",
      "recommendation": "Confirm JavaScript submission is intentional and monitor the configured endpoint"
    }
  ],
  "issueCodes": [
    "form-action-missing"
  ],
  "recommendations": [
    "Confirm JavaScript submission is intentional and monitor the configured endpoint"
  ],
  "metadata": {
    "html": "<form><label for=\"name\">Name</label><input id=\"name\" required><label for=\"email\">Email</label><input id=\"email\" type=\"email\" required><button type=\"submit\">Send</button></form>",
    "htmlSignalCounts": {
      "images": 0,
      "inputs": 2,
      "forms": 1,
      "headings": 0
    },
    "sourceSpecific": {
      "formRows": [
        {
          "formIndex": 1,
          "id": null,
          "action": null,
          "method": "get",
          "controlCount": 2,
          "labeledControlCount": 2,
          "unlabeledControlCount": 0,
          "requiredControlCount": 2,
          "submitControlCount": 1,
          "issueCodes": [
            "form-action-missing"
          ],
          "status": "warn"
        }
      ],
      "formCount": 1,
      "renderedWithBrowser": false,
      "screenshotKey": null,
      "submissionEvidence": null,
      "safetyNote": "The actor inspects rendered form behavior and supplied permissioned submission evidence; it never submits arbitrary public forms automatically."
    },
    "normalizedTextPreview": "form-good https://example.com/quote Quote form QA pass Form includes labels, required hints, and submit action.   form qa {\"html\":\"  Name   Email   Send  \"}"
  },
  "textBytes": 321,
  "checkedAt": "2026-07-02T00:00:00.000Z",
  "pricingTemplate": "B1 — Browser/screenshot/rendered-page actor",
  "pricingEventName": "browser-page-checked"
}
```

### Cost-Control Tips

- Keep `maxItems` small for default and scheduled checks.
- Use supplied records or snapshots for deterministic QA runs.
- Leave `fetchUrls` off unless live source fetching is explicitly needed.
- Review warning rows before increasing caps.
- Schedule small frequent runs instead of broad one-off sweeps.

### Scheduling Examples

- Daily watchlist check with two to five high-value records.
- Weekly QA run before publishing a site, data, or actor update.
- Browser-visible form checks before a release.

### Public Task Examples

- Render and inspect forms on a capped set of public pages.
- Find unlabeled controls and missing submit buttons before release.
- Detect password forms using unsafe GET requests.
- Capture browser-visible evidence for client QA.
- Correlate permissioned submission errors with form markup findings.

### FAQ

#### Can I use this with live URLs?

Yes. Supply `urls` and enable `fetchUrls`. Chromium renders the page before the form controls are analyzed. Screenshots remain opt-in.

#### Why does it charge before pushing output?

The actor charges before page rows and optional screenshots. Charge-cap failures stop or skip the corresponding paid output cleanly.

#### What happens on charge limits?

The actor stops gracefully and writes a summary instead of pushing unpaid result rows.

#### Is this legal, financial, safety, or compliance advice?

No. The actor produces operational signals and structured data for review. Human owners remain responsible for decisions.

### Troubleshooting

- If the dataset is empty, check that `maxItems` is greater than zero and that records are supplied or defaults are enabled.
- If a record is flagged unexpectedly, inspect `issueCodes`, `matchedKeywords`, and the normalized metadata preview.
- If live fetching fails, rerun with supplied record bodies or snapshots and keep `fetchUrls` false.

### Limitations

The actor does not submit arbitrary forms because submissions can create records, messages, accounts, or charges. Client-side logic hidden behind user interaction, authentication, CAPTCHA, or conditional steps may need a permissioned manual test. A missing `action` can be intentional for JavaScript-managed forms and is reported as a review signal.

### Source And Safety Notes

Use public or permissioned pages. Do not place passwords, payment data, private form values, or session credentials in actor input.

### Changelog

- 2026-07-10: Added Chromium rendering, charged screenshot output, form-level evidence, submission-risk diagnostics, and expanded regression coverage.

# Actor input Schema

## `records` (type: `array`):

Records, snapshots, or source observations to process. Defaults to a tiny deterministic fixture.

## `urls` (type: `array`):

Optional URLs reserved for live fetching when Fetch URLs is true.

## `fetchUrls` (type: `boolean`):

Render each URL in Chromium before form analysis. Default is false for deterministic fixture runs.

## `fetchTimeoutMs` (type: `integer`):

Timeout for each browser navigation.

## `captureScreenshots` (type: `boolean`):

Capture one full-page PNG per rendered URL after the screenshot PPE charge succeeds.

## `watchTerms` (type: `array`):

Keywords or topics used to flag relevant records.

## `includeReport` (type: `boolean`):

Write JSON and Markdown report artifacts to the key-value store.

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

Maximum records to process in one run.

## `maxTextBytes` (type: `integer`):

Maximum searchable text bytes per record.

## `dryRun` (type: `boolean`):

Validate input and write a dry-run summary without PPE charges or dataset output.

## `debug` (type: `boolean`):

Enable debug logging.

## Actor input object example

```json
{
  "records": [
    {
      "sourceId": "form-good",
      "sourceUrl": "https://example.com/quote",
      "title": "Quote form QA pass",
      "description": "Form includes labels, required hints, and submit action.",
      "category": "form qa",
      "keywords": [],
      "metadata": {
        "html": "<form><label for=\"name\">Name</label><input id=\"name\" required><label for=\"email\">Email</label><input id=\"email\" type=\"email\" required><button type=\"submit\">Send</button></form>"
      }
    },
    {
      "sourceId": "form-risk",
      "sourceUrl": "https://example.com/signup",
      "title": "Signup form missing basics",
      "description": "Form has unlabeled input and no submit button.",
      "category": "form qa",
      "keywords": [
        "unlabeled input"
      ],
      "metadata": {
        "html": "<form><input placeholder=\"Email\"></form>"
      }
    }
  ],
  "urls": [],
  "fetchUrls": false,
  "fetchTimeoutMs": 12000,
  "captureScreenshots": false,
  "watchTerms": [
    "unlabeled input",
    "missing validation",
    "broken submission"
  ],
  "includeReport": true,
  "maxItems": 2,
  "maxTextBytes": 500000,
  "dryRun": false,
  "debug": false
}
```

# Actor output Schema

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

Structured result rows in the default dataset.

## `summary` (type: `string`):

Summary JSON in the key-value store when includeReport is enabled.

## `markdownReport` (type: `string`):

Markdown report in the key-value store when includeReport is enabled.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("junipr/form-qa-checker").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("junipr/form-qa-checker").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call junipr/form-qa-checker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Form QA Checker",
        "description": "Inspect web forms for labels, required fields, validation hints, broken submission indicators, and accessibility risks.",
        "version": "1.0",
        "x-build-id": "4DklqXMMWk3XWxvXR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/junipr~form-qa-checker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-junipr-form-qa-checker",
                "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/junipr~form-qa-checker/runs": {
            "post": {
                "operationId": "runs-sync-junipr-form-qa-checker",
                "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/junipr~form-qa-checker/run-sync": {
            "post": {
                "operationId": "run-sync-junipr-form-qa-checker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "records": {
                        "title": "Records To Check",
                        "type": "array",
                        "description": "Records, snapshots, or source observations to process. Defaults to a tiny deterministic fixture.",
                        "items": {
                            "type": "object"
                        },
                        "default": [
                            {
                                "sourceId": "form-good",
                                "sourceUrl": "https://example.com/quote",
                                "title": "Quote form QA pass",
                                "description": "Form includes labels, required hints, and submit action.",
                                "category": "form qa",
                                "keywords": [],
                                "metadata": {
                                    "html": "<form><label for=\"name\">Name</label><input id=\"name\" required><label for=\"email\">Email</label><input id=\"email\" type=\"email\" required><button type=\"submit\">Send</button></form>"
                                }
                            },
                            {
                                "sourceId": "form-risk",
                                "sourceUrl": "https://example.com/signup",
                                "title": "Signup form missing basics",
                                "description": "Form has unlabeled input and no submit button.",
                                "category": "form qa",
                                "keywords": [
                                    "unlabeled input"
                                ],
                                "metadata": {
                                    "html": "<form><input placeholder=\"Email\"></form>"
                                }
                            }
                        ]
                    },
                    "urls": {
                        "title": "URLs To Fetch",
                        "type": "array",
                        "description": "Optional URLs reserved for live fetching when Fetch URLs is true.",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "fetchUrls": {
                        "title": "Render URLs",
                        "type": "boolean",
                        "description": "Render each URL in Chromium before form analysis. Default is false for deterministic fixture runs.",
                        "default": false
                    },
                    "fetchTimeoutMs": {
                        "title": "Browser Timeout (ms)",
                        "minimum": 1000,
                        "maximum": 30000,
                        "type": "integer",
                        "description": "Timeout for each browser navigation.",
                        "default": 12000
                    },
                    "captureScreenshots": {
                        "title": "Capture Screenshots",
                        "type": "boolean",
                        "description": "Capture one full-page PNG per rendered URL after the screenshot PPE charge succeeds.",
                        "default": false
                    },
                    "watchTerms": {
                        "title": "Watch Terms",
                        "type": "array",
                        "description": "Keywords or topics used to flag relevant records.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "unlabeled input",
                            "missing validation",
                            "broken submission"
                        ]
                    },
                    "includeReport": {
                        "title": "Include Report Artifacts",
                        "type": "boolean",
                        "description": "Write JSON and Markdown report artifacts to the key-value store.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum records to process in one run.",
                        "default": 2
                    },
                    "maxTextBytes": {
                        "title": "Max Text Bytes",
                        "minimum": 100,
                        "maximum": 2000000,
                        "type": "integer",
                        "description": "Maximum searchable text bytes per record.",
                        "default": 500000
                    },
                    "dryRun": {
                        "title": "Dry Run",
                        "type": "boolean",
                        "description": "Validate input and write a dry-run summary without PPE charges or dataset output.",
                        "default": false
                    },
                    "debug": {
                        "title": "Debug Logs",
                        "type": "boolean",
                        "description": "Enable debug logging.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
