# SaaS Review Gap Battlecard Scorer (`rotvuvo/saas-review-gap-battlecard-scorer`) Actor

Score imported SaaS review rows into complaint and praise themes, buyer language, competitor weakness signals, evidence-backed battlecard angles, positioning hooks, and roadmap ideas. Use it after a review export, spreadsheet, CRM notes, or manual research.

- **URL**: https://apify.com/rotvuvo/saas-review-gap-battlecard-scorer.md
- **Developed by:** [Wit Nomad](https://apify.com/rotvuvo) (community)
- **Categories:** Marketing, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## SaaS Review Gap Battlecard Scorer

Turn imported SaaS review rows into evidence-backed competitor weakness, positioning, roadmap, and sales battlecard signals.

### What it does

This Actor reads review rows you already have from sources like G2, Capterra, Trustpilot, Chrome Web Store, App Store, Shopify App Store, spreadsheets, CRM notes, or manual research. It does not scrape those sites.

For each deduped review row, it produces:

- normalized source, competitor, rating, review URL, and review date;
- deterministic sentiment band;
- complaint themes and praise themes;
- buyer-language snippets and evidence snippets;
- competitor weakness score and level;
- sales battlecard angle;
- positioning hook;
- roadmap signal;
- content or enablement idea;
- warnings and risk flags for unsupported interpretation.

### Input

This MVP supports `items mode` only.

Required:

- `items`: non-empty array of SaaS review-like row objects.

Optional:

- `yourProduct`: product, service, or offer profile for positioning hooks.
- `targetCompetitors`: competitor names to prioritize.
- `targetSegments`: buyer roles or ICP terms for talk tracks.
- `themeKeywords`: custom complaint themes to detect.
- `maxItems`: maximum rows to process. Default: `500`.
- `scrapedAt`: reference timestamp for deterministic metadata.

Common row fields:

- `competitorName`, `productName`, `appName`, `companyName`
- `source`, `reviewSource`, `platform`, `site`
- `rating`, `stars`, `score`
- `reviewTitle`, `title`, `headline`
- `reviewText`, `text`, `body`, `description`, `summary`
- `pros`, `cons`
- `date`, `reviewDate`, `publishedAt`, `postedAt`
- `reviewUrl`, `url`, `sourceUrl`
- `role`, `jobTitle`, `companySize`, `segment`

Example input:

```json
{
  "items": [
    {
      "competitorName": "Acme CRM",
      "source": "G2",
      "rating": 2,
      "reviewTitle": "Powerful automations, painful onboarding",
      "reviewText": "The workflow builder is flexible, but onboarding took weeks. Our RevOps team struggled with integrations and reporting exports.",
      "cons": "Onboarding, integrations, reporting, and support were painful.",
      "reviewUrl": "https://reviews.example/g2/acme-crm/onboarding-gap"
    }
  ],
  "yourProduct": "Lightweight CRM automation platform for SaaS teams",
  "targetCompetitors": ["Acme CRM"],
  "targetSegments": ["RevOps", "SaaS founders"]
}
````

### Output

The Actor pushes one dataset item per deduped review evidence row. The default dataset is documented by `.actor/dataset_schema.json` for the Store/API output tab.

Key output fields:

- `competitorName`
- `source`
- `rating`
- `sentimentBand`
- `complaintThemes`
- `praiseThemes`
- `buyerLanguage`
- `evidenceSnippets`
- `competitorWeaknessScore`
- `weaknessLevel`
- `salesBattlecardAngle`
- `positioningHook`
- `roadmapSignal`
- `contentIdea`
- `riskFlags`
- `warnings`

### Scoring

The weakness score is deterministic. It increases when imported review evidence contains low ratings, negative language, complaint themes, and usable evidence snippets. A high score means the row may be useful as a competitor weakness signal; it does not prove churn, budget, account intent, market share, or legal truth.

### MVP limitations

- It does not scrape review sites.
- It does not call G2, Capterra, Trustpilot, app stores, or other external websites.
- It does not bypass logins, paywalls, or robots rules.
- It does not use AI/LLM.
- It does not claim that one review proves competitor weakness by itself.
- It does not guarantee sales outcomes, buyer intent, churn, legal compliance, or factual completeness.
- It supports deterministic top-level row fields only in this version.

### Running it

In Apify Console, start with the prefilled input in Apify Console or paste your own review rows using the example input shape above. The prefilled sample produces a non-empty dataset for Store QA.

For local source checkout verification:

```bash
npm install
npm test
apify validate-schema
```

To run locally without Apify storage, save input as `input.json` and run:

```bash
node src/main.js --input input.json --output output.json
```

# Actor input Schema

## `mode` (type: `string`):

Input mode. This version supports pasted/imported SaaS review rows only.

## `items` (type: `array`):

Rows from G2, Capterra, Trustpilot, Chrome Web Store, App Store, Shopify App Store, spreadsheets, CRM notes, or manual review research. Common fields: competitorName, productName, source, rating, reviewTitle, reviewText, pros, cons, date, reviewUrl, companySize, role, segment.

## `yourProduct` (type: `string,object`):

Product, service, or offer profile used to write deterministic positioning hooks and talk tracks.

## `targetCompetitors` (type: `array`):

Competitor or product names to prioritize. Rows outside this list still run but receive a warning.

## `targetSegments` (type: `array`):

Buyer roles, company segments, or ICP terms that should be reflected in generated battlecard angles.

## `themeKeywords` (type: `array`):

Optional custom keywords to surface as extra themes when they appear in reviews.

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

Maximum input review rows to process.

## `scrapedAt` (type: `string`):

Optional ISO timestamp for deterministic output metadata. This Actor does not scrape; the field preserves compatibility with imported review rows.

## Actor input object example

```json
{
  "mode": "items",
  "items": [
    {
      "competitorName": "Acme CRM",
      "source": "G2",
      "rating": 2,
      "reviewTitle": "Powerful automations, painful onboarding",
      "reviewText": "The workflow builder is flexible, but onboarding took weeks. Our RevOps team struggled with integrations and reporting exports. Support was slow when the sync broke.",
      "pros": "Automation rules are powerful once configured.",
      "cons": "Onboarding, integrations, reporting, and support were painful.",
      "date": "2026-06-28",
      "role": "RevOps Manager",
      "companySize": "51-200",
      "reviewUrl": "https://reviews.example/g2/acme-crm/onboarding-gap"
    },
    {
      "competitorName": "Acme CRM",
      "source": "G2",
      "rating": 5,
      "reviewTitle": "Reliable dashboard for the sales team",
      "reviewText": "The dashboards are reliable and the team likes the clean UI. We still wish implementation was faster for smaller teams.",
      "pros": "Reliable dashboards and clean UI.",
      "cons": "Implementation can be slow.",
      "date": "2026-06-20",
      "role": "Sales Ops Lead",
      "companySize": "11-50",
      "reviewUrl": "https://reviews.example/g2/acme-crm/reliable-dashboard"
    },
    {
      "competitorName": "GrowthStack",
      "source": "Capterra",
      "rating": 3,
      "reviewTitle": "Good product, pricing surprise at renewal",
      "reviewText": "Good automation and templates, but pricing jumped at renewal. The billing page was confusing and integrations with our data warehouse needed custom work.",
      "pros": "Templates and automation saved time.",
      "cons": "Pricing, billing clarity, and data integrations were weak.",
      "date": "2026-06-12",
      "role": "Founder",
      "companySize": "1-10",
      "reviewUrl": "https://reviews.example/capterra/growthstack/pricing-renewal"
    }
  ],
  "yourProduct": "Lightweight CRM automation platform for SaaS teams that need fast onboarding, clean integrations, and transparent pricing",
  "targetCompetitors": [
    "Acme CRM",
    "GrowthStack"
  ],
  "targetSegments": [
    "RevOps",
    "SaaS founders",
    "sales operations"
  ],
  "themeKeywords": [
    "data warehouse",
    "renewal"
  ],
  "maxItems": 500,
  "scrapedAt": "2026-07-07T00:00:00.000Z"
}
```

# 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 = {
    "mode": "items",
    "items": [
        {
            "competitorName": "Acme CRM",
            "source": "G2",
            "rating": 2,
            "reviewTitle": "Powerful automations, painful onboarding",
            "reviewText": "The workflow builder is flexible, but onboarding took weeks. Our RevOps team struggled with integrations and reporting exports. Support was slow when the sync broke.",
            "pros": "Automation rules are powerful once configured.",
            "cons": "Onboarding, integrations, reporting, and support were painful.",
            "date": "2026-06-28",
            "role": "RevOps Manager",
            "companySize": "51-200",
            "reviewUrl": "https://reviews.example/g2/acme-crm/onboarding-gap"
        },
        {
            "competitorName": "Acme CRM",
            "source": "G2",
            "rating": 5,
            "reviewTitle": "Reliable dashboard for the sales team",
            "reviewText": "The dashboards are reliable and the team likes the clean UI. We still wish implementation was faster for smaller teams.",
            "pros": "Reliable dashboards and clean UI.",
            "cons": "Implementation can be slow.",
            "date": "2026-06-20",
            "role": "Sales Ops Lead",
            "companySize": "11-50",
            "reviewUrl": "https://reviews.example/g2/acme-crm/reliable-dashboard"
        },
        {
            "competitorName": "GrowthStack",
            "source": "Capterra",
            "rating": 3,
            "reviewTitle": "Good product, pricing surprise at renewal",
            "reviewText": "Good automation and templates, but pricing jumped at renewal. The billing page was confusing and integrations with our data warehouse needed custom work.",
            "pros": "Templates and automation saved time.",
            "cons": "Pricing, billing clarity, and data integrations were weak.",
            "date": "2026-06-12",
            "role": "Founder",
            "companySize": "1-10",
            "reviewUrl": "https://reviews.example/capterra/growthstack/pricing-renewal"
        }
    ],
    "yourProduct": "Lightweight CRM automation platform for SaaS teams that need fast onboarding, clean integrations, and transparent pricing",
    "targetCompetitors": [
        "Acme CRM",
        "GrowthStack"
    ],
    "targetSegments": [
        "RevOps",
        "SaaS founders",
        "sales operations"
    ],
    "themeKeywords": [
        "data warehouse",
        "renewal"
    ],
    "scrapedAt": "2026-07-07T00:00:00.000Z"
};

// Run the Actor and wait for it to finish
const run = await client.actor("rotvuvo/saas-review-gap-battlecard-scorer").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 = {
    "mode": "items",
    "items": [
        {
            "competitorName": "Acme CRM",
            "source": "G2",
            "rating": 2,
            "reviewTitle": "Powerful automations, painful onboarding",
            "reviewText": "The workflow builder is flexible, but onboarding took weeks. Our RevOps team struggled with integrations and reporting exports. Support was slow when the sync broke.",
            "pros": "Automation rules are powerful once configured.",
            "cons": "Onboarding, integrations, reporting, and support were painful.",
            "date": "2026-06-28",
            "role": "RevOps Manager",
            "companySize": "51-200",
            "reviewUrl": "https://reviews.example/g2/acme-crm/onboarding-gap",
        },
        {
            "competitorName": "Acme CRM",
            "source": "G2",
            "rating": 5,
            "reviewTitle": "Reliable dashboard for the sales team",
            "reviewText": "The dashboards are reliable and the team likes the clean UI. We still wish implementation was faster for smaller teams.",
            "pros": "Reliable dashboards and clean UI.",
            "cons": "Implementation can be slow.",
            "date": "2026-06-20",
            "role": "Sales Ops Lead",
            "companySize": "11-50",
            "reviewUrl": "https://reviews.example/g2/acme-crm/reliable-dashboard",
        },
        {
            "competitorName": "GrowthStack",
            "source": "Capterra",
            "rating": 3,
            "reviewTitle": "Good product, pricing surprise at renewal",
            "reviewText": "Good automation and templates, but pricing jumped at renewal. The billing page was confusing and integrations with our data warehouse needed custom work.",
            "pros": "Templates and automation saved time.",
            "cons": "Pricing, billing clarity, and data integrations were weak.",
            "date": "2026-06-12",
            "role": "Founder",
            "companySize": "1-10",
            "reviewUrl": "https://reviews.example/capterra/growthstack/pricing-renewal",
        },
    ],
    "yourProduct": "Lightweight CRM automation platform for SaaS teams that need fast onboarding, clean integrations, and transparent pricing",
    "targetCompetitors": [
        "Acme CRM",
        "GrowthStack",
    ],
    "targetSegments": [
        "RevOps",
        "SaaS founders",
        "sales operations",
    ],
    "themeKeywords": [
        "data warehouse",
        "renewal",
    ],
    "scrapedAt": "2026-07-07T00:00:00.000Z",
}

# Run the Actor and wait for it to finish
run = client.actor("rotvuvo/saas-review-gap-battlecard-scorer").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 '{
  "mode": "items",
  "items": [
    {
      "competitorName": "Acme CRM",
      "source": "G2",
      "rating": 2,
      "reviewTitle": "Powerful automations, painful onboarding",
      "reviewText": "The workflow builder is flexible, but onboarding took weeks. Our RevOps team struggled with integrations and reporting exports. Support was slow when the sync broke.",
      "pros": "Automation rules are powerful once configured.",
      "cons": "Onboarding, integrations, reporting, and support were painful.",
      "date": "2026-06-28",
      "role": "RevOps Manager",
      "companySize": "51-200",
      "reviewUrl": "https://reviews.example/g2/acme-crm/onboarding-gap"
    },
    {
      "competitorName": "Acme CRM",
      "source": "G2",
      "rating": 5,
      "reviewTitle": "Reliable dashboard for the sales team",
      "reviewText": "The dashboards are reliable and the team likes the clean UI. We still wish implementation was faster for smaller teams.",
      "pros": "Reliable dashboards and clean UI.",
      "cons": "Implementation can be slow.",
      "date": "2026-06-20",
      "role": "Sales Ops Lead",
      "companySize": "11-50",
      "reviewUrl": "https://reviews.example/g2/acme-crm/reliable-dashboard"
    },
    {
      "competitorName": "GrowthStack",
      "source": "Capterra",
      "rating": 3,
      "reviewTitle": "Good product, pricing surprise at renewal",
      "reviewText": "Good automation and templates, but pricing jumped at renewal. The billing page was confusing and integrations with our data warehouse needed custom work.",
      "pros": "Templates and automation saved time.",
      "cons": "Pricing, billing clarity, and data integrations were weak.",
      "date": "2026-06-12",
      "role": "Founder",
      "companySize": "1-10",
      "reviewUrl": "https://reviews.example/capterra/growthstack/pricing-renewal"
    }
  ],
  "yourProduct": "Lightweight CRM automation platform for SaaS teams that need fast onboarding, clean integrations, and transparent pricing",
  "targetCompetitors": [
    "Acme CRM",
    "GrowthStack"
  ],
  "targetSegments": [
    "RevOps",
    "SaaS founders",
    "sales operations"
  ],
  "themeKeywords": [
    "data warehouse",
    "renewal"
  ],
  "scrapedAt": "2026-07-07T00:00:00.000Z"
}' |
apify call rotvuvo/saas-review-gap-battlecard-scorer --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=rotvuvo/saas-review-gap-battlecard-scorer",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SaaS Review Gap Battlecard Scorer",
        "description": "Score imported SaaS review rows into complaint and praise themes, buyer language, competitor weakness signals, evidence-backed battlecard angles, positioning hooks, and roadmap ideas. Use it after a review export, spreadsheet, CRM notes, or manual research.",
        "version": "0.1",
        "x-build-id": "1J0dxIA3O06A2hCyg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/rotvuvo~saas-review-gap-battlecard-scorer/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-rotvuvo-saas-review-gap-battlecard-scorer",
                "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/rotvuvo~saas-review-gap-battlecard-scorer/runs": {
            "post": {
                "operationId": "runs-sync-rotvuvo-saas-review-gap-battlecard-scorer",
                "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/rotvuvo~saas-review-gap-battlecard-scorer/run-sync": {
            "post": {
                "operationId": "run-sync-rotvuvo-saas-review-gap-battlecard-scorer",
                "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": [
                    "items"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "items"
                        ],
                        "type": "string",
                        "description": "Input mode. This version supports pasted/imported SaaS review rows only.",
                        "default": "items"
                    },
                    "items": {
                        "title": "SaaS review rows",
                        "minItems": 1,
                        "type": "array",
                        "description": "Rows from G2, Capterra, Trustpilot, Chrome Web Store, App Store, Shopify App Store, spreadsheets, CRM notes, or manual review research. Common fields: competitorName, productName, source, rating, reviewTitle, reviewText, pros, cons, date, reviewUrl, companySize, role, segment.",
                        "items": {
                            "type": "object"
                        }
                    },
                    "yourProduct": {
                        "title": "Your product / offer",
                        "description": "Product, service, or offer profile used to write deterministic positioning hooks and talk tracks."
                    },
                    "targetCompetitors": {
                        "title": "Target competitors",
                        "type": "array",
                        "description": "Competitor or product names to prioritize. Rows outside this list still run but receive a warning.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "targetSegments": {
                        "title": "Target buyer segments",
                        "type": "array",
                        "description": "Buyer roles, company segments, or ICP terms that should be reflected in generated battlecard angles.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "themeKeywords": {
                        "title": "Custom complaint themes",
                        "type": "array",
                        "description": "Optional custom keywords to surface as extra themes when they appear in reviews.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum rows",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum input review rows to process.",
                        "default": 500
                    },
                    "scrapedAt": {
                        "title": "Reference timestamp",
                        "type": "string",
                        "description": "Optional ISO timestamp for deterministic output metadata. This Actor does not scrape; the field preserves compatibility with imported review rows."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
