# SEC 13D & 13G Beneficial Ownership Change Report (`taroyamada/sec-13d-13g-beneficial-ownership-change-report`) Actor

Track issuer watchlists using official SEC EDGAR Schedule 13D, 13D/A, 13G, and 13G/A filings. Receive source-linked beneficial ownership change alerts, descriptive reports, and evidence exports. No API key or login is required; a descriptive SEC User-Agent is required.

- **URL**: https://apify.com/taroyamada/sec-13d-13g-beneficial-ownership-change-report.md
- **Developed by:** [naoki anzai](https://apify.com/taroyamada) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 sec schedule 13d or 13g filing rows

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

## SEC 13D & 13G Beneficial Ownership Change Report

For investor-relations, corporate-development, legal-operations, and public-markets research teams, this Actor accepts issuer CIKs or official tickers, reads official SEC EDGAR Schedule 13D/13G filings, and returns source-linked beneficial-ownership change alerts, descriptive reports, and evidence exports.

It does not predict investor intent, classify activism, recommend trades, or provide investment advice. No API key or login is required; a descriptive SEC User-Agent is required.

### Store Quickstart

1. Run once with `initialRunMode: "baseline_only"`. The selected issuer observations are stored and the first run returns zero rows and zero charges.
2. Schedule the same monitor after a later Schedule 13D, 13D/A, 13G, or 13G/A filing. Only new, removed, amended, replaced, or changed observations produce alerts and report/export value events.
3. Use `generateReport: true` and `emitExport: true` for the report-first workflow. Keep `emitRawRows: false` unless individual filing observations are needed.

### Run the next report

- Compare institutional portfolio disclosures with [SEC 13F Institutional Holdings Change Report](https://apify.com/taroyamada/sec-13f-institutional-holdings-change-report).
- Compare filing-level material disclosure candidates with [SEC EDGAR Material Disclosure Watch](https://apify.com/taroyamada/sec-edgar-material-disclosure-watch-scraper).

### Input Examples

#### 1. Issuer CIK watch

```json
{
  "watchlists": [{
    "id": "issuer-watch",
    "issuers": [{ "cik": "0000320193", "label": "Apple" }],
    "maxFilingsPerIssuer": 3,
    "maxAlertsPerIssuer": 20
  }],
  "userAgent": "your-company-ownership-watch/1.0 ops@yourcompany.com",
  "initialRunMode": "baseline_only",
  "generateReport": true,
  "emitExport": true
}
````

#### 2. Ticker watch with an ownership threshold

```json
{
  "watchlists": [{
    "id": "technology-issuers",
    "issuers": [{ "ticker": "MSFT", "label": "Microsoft" }],
    "minOwnershipPercent": 5,
    "maxFilingsPerIssuer": 4,
    "maxAlertsPerIssuer": 10
  }],
  "userAgent": "your-company-ownership-watch/1.0 https://example.com/sec-contact",
  "initialRunMode": "baseline_only",
  "generateReport": true
}
```

#### 3. Small paid backfill

```json
{
  "watchlists": [{
    "id": "focused-backfill",
    "issuers": [{ "cik": "0000320193" }],
    "cusips": ["037833100"],
    "maxFilingsPerIssuer": 2,
    "maxAlertsPerIssuer": 5
  }],
  "userAgent": "your-company-ownership-watch/1.0 ops@yourcompany.com",
  "initialRunMode": "emit_backfill",
  "generateReport": true,
  "emitRawRows": true,
  "emitExport": true,
  "maxChargeUsd": 50
}
```

### Output Contract

The output uses four fixed row types:

- `sec_13d_13g_filing_row`: one optional compact reporting-person observation.
- `sec_beneficial_ownership_change_alert`: one new, removed, increased, decreased, amended, replaced, or changed observation.
- `sec_ownership_change_report`: one descriptive report across the selected issuer watchlists.
- `sec_ownership_export`: one compact JSON evidence export with source URLs.

Each observation includes the reporting person, issuer CIK/name, security title, CUSIP when present, aggregate shares, ownership percentage, voting/dispositive power, form, amendment flag, filing date, event date when present, accession number, and exact SEC source URL. Purpose text is retained as source-linked filing context only.

### Pricing

| Event | Price | Use |
| --- | ---: | --- |
| `sec-13d-13g-filing-row` | $0.006 | Optional compact filing observation |
| `sec-beneficial-ownership-change-alert` | $0.35 | New, removed, amended, replaced, or changed observation |
| `sec-ownership-change-report` | $15.00 | Descriptive issuer ownership change report |
| `sec-ownership-export` | $10.00 | JSON evidence export with filing links |

Baseline-only runs and unchanged runs are free. A per-run `maxChargeUsd` cap fails closed before delivery. Keep the issuer list and cap small until the expected number of changed observations is understood.

### Compliance Guardrails

- Only official SEC `data.sec.gov/submissions` JSON, SEC EDGAR archive filing documents, and the official SEC ticker index are used.
- No API key, login, browser session, private data, contact extraction, filing bypass, CAPTCHA handling, or non-official mirror is used.
- Keep the User-Agent descriptive, include a real production contact, use bounded issuers and request caps, and retain the default pacing.
- Schedule 13D/13G filings are public disclosures. They may be amended and do not establish intent, control, activism, performance, or future ownership.
- The output is descriptive evidence only. It is not investment advice, a buy/sell/hold signal, a valuation, a forecast, a risk score, or a guarantee.

### State and Billing Safety

State is written only after all billable rows are delivered successfully. A state read/write failure stops the run. An unchanged run emits zero rows and zero charges. Unknown billing events, missing `chargedCount`, charge-cap violations, invalid SEC URLs, malformed filing documents, and missing reporting-person fields fail closed. The delivery audit is written locally as `sec-13d-13g-delivery-audit.json` and to the Apify key-value store as `PHASE89_DELIVERY_AUDIT`.

### See Also

- [SEC 13F Institutional Holdings Change Report](https://apify.com/taroyamada/sec-13f-institutional-holdings-change-report) for periodic institutional portfolio holdings changes.
- [SEC EDGAR Material Disclosure Watch](https://apify.com/taroyamada/sec-edgar-material-disclosure-watch-scraper) for filing-level disclosure metadata and reports.

### Limitations

Schedule 13D/13G records are periodic or event-driven and may be amended. CUSIP/class identity, reporting-person names, ownership percentages, voting fields, and purpose text should be reviewed against the linked filing. The Actor does not infer performance, intent, control, activism, or future behavior.

# Actor input Schema

## `watchlists` (type: `array`):

Each watchlist contains one or more issuer CIKs or official tickers plus optional filing filters.

## `lookbackFilings` (type: `integer`):

Bounded number of recent Schedule 13D/13G filings inspected for each issuer. Amendments are retained as distinct filings.

## `monitorKey` (type: `string`):

Stable state namespace for a recurring beneficial ownership watch.

## `userAgent` (type: `string`):

Required descriptive value, for example your-company-ownership-watch/1.0 ops@yourcompany.com. Replace the example contact with your own application contact before production use.

## `initialRunMode` (type: `string`):

baseline\_only stores current observations with zero rows; emit\_backfill emits selected current observations as a first paid report.

## `generateReport` (type: `boolean`):

Emit one report-first descriptive ownership change report when selected observations change.

## `emitRawRows` (type: `boolean`):

Optional low-priced source-linked observation rows for changed or backfilled reporting persons.

## `emitExport` (type: `boolean`):

Emit a compact JSON export of ownership observations, changes, and official SEC filing links.

## `emitUnchanged` (type: `boolean`):

Accepted for compatibility, but unchanged observations remain free and emit zero rows and zero charges.

## `maxRequests` (type: `integer`):

Hard per-run request bound including ticker lookup, submissions JSON, and filing documents.

## `requestIntervalMs` (type: `integer`):

Minimum delay between official SEC requests. Keep a conservative interval and respect SEC access guidance.

## `maxChargeUsd` (type: `number`):

Fail closed before delivery if planned PPE charges exceed this cap.

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

Return deterministic representative rows for all event types without SEC requests, state writes, or charges.

## Actor input object example

```json
{
  "watchlists": [
    {
      "id": "sample-issuers",
      "issuers": [
        {
          "cik": "0000320193",
          "label": "Sample issuer"
        }
      ],
      "issuerKeywords": [],
      "cusips": [],
      "minOwnershipPercent": 0,
      "maxFilingsPerIssuer": 3,
      "maxAlertsPerIssuer": 25
    }
  ],
  "lookbackFilings": 3,
  "monitorKey": "sec-13d-13g-beneficial-ownership-watch",
  "userAgent": "taroyamada-sec-13d-13g-beneficial-ownership-change-report/1.0 https://apify.com/taroyamada/sec-13d-13g-beneficial-ownership-change-report",
  "initialRunMode": "baseline_only",
  "generateReport": true,
  "emitRawRows": false,
  "emitExport": false,
  "emitUnchanged": false,
  "maxRequests": 30,
  "requestIntervalMs": 1100,
  "maxChargeUsd": 50,
  "dryRun": false
}
```

# 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("taroyamada/sec-13d-13g-beneficial-ownership-change-report").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("taroyamada/sec-13d-13g-beneficial-ownership-change-report").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 taroyamada/sec-13d-13g-beneficial-ownership-change-report --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=taroyamada/sec-13d-13g-beneficial-ownership-change-report",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC 13D & 13G Beneficial Ownership Change Report",
        "description": "Track issuer watchlists using official SEC EDGAR Schedule 13D, 13D/A, 13G, and 13G/A filings. Receive source-linked beneficial ownership change alerts, descriptive reports, and evidence exports. No API key or login is required; a descriptive SEC User-Agent is required.",
        "version": "0.1",
        "x-build-id": "NBDCH5c2dNQkBNbNB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/taroyamada~sec-13d-13g-beneficial-ownership-change-report/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-taroyamada-sec-13d-13g-beneficial-ownership-change-report",
                "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/taroyamada~sec-13d-13g-beneficial-ownership-change-report/runs": {
            "post": {
                "operationId": "runs-sync-taroyamada-sec-13d-13g-beneficial-ownership-change-report",
                "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/taroyamada~sec-13d-13g-beneficial-ownership-change-report/run-sync": {
            "post": {
                "operationId": "run-sync-taroyamada-sec-13d-13g-beneficial-ownership-change-report",
                "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": [
                    "watchlists",
                    "userAgent"
                ],
                "properties": {
                    "watchlists": {
                        "title": "Issuer watchlists",
                        "type": "array",
                        "description": "Each watchlist contains one or more issuer CIKs or official tickers plus optional filing filters.",
                        "default": [
                            {
                                "id": "sample-issuers",
                                "issuers": [
                                    {
                                        "cik": "0000320193",
                                        "label": "Sample issuer"
                                    }
                                ],
                                "issuerKeywords": [],
                                "cusips": [],
                                "minOwnershipPercent": 0,
                                "maxFilingsPerIssuer": 3,
                                "maxAlertsPerIssuer": 25
                            }
                        ]
                    },
                    "lookbackFilings": {
                        "title": "Filings to inspect per issuer",
                        "minimum": 1,
                        "maximum": 6,
                        "type": "integer",
                        "description": "Bounded number of recent Schedule 13D/13G filings inspected for each issuer. Amendments are retained as distinct filings.",
                        "default": 3
                    },
                    "monitorKey": {
                        "title": "Monitor key",
                        "type": "string",
                        "description": "Stable state namespace for a recurring beneficial ownership watch.",
                        "default": "sec-13d-13g-beneficial-ownership-watch"
                    },
                    "userAgent": {
                        "title": "SEC User-Agent",
                        "type": "string",
                        "description": "Required descriptive value, for example your-company-ownership-watch/1.0 ops@yourcompany.com. Replace the example contact with your own application contact before production use.",
                        "default": "taroyamada-sec-13d-13g-beneficial-ownership-change-report/1.0 https://apify.com/taroyamada/sec-13d-13g-beneficial-ownership-change-report"
                    },
                    "initialRunMode": {
                        "title": "Initial run mode",
                        "enum": [
                            "baseline_only",
                            "emit_backfill"
                        ],
                        "type": "string",
                        "description": "baseline_only stores current observations with zero rows; emit_backfill emits selected current observations as a first paid report.",
                        "default": "baseline_only"
                    },
                    "generateReport": {
                        "title": "Generate ownership change report",
                        "type": "boolean",
                        "description": "Emit one report-first descriptive ownership change report when selected observations change.",
                        "default": true
                    },
                    "emitRawRows": {
                        "title": "Emit filing observation rows",
                        "type": "boolean",
                        "description": "Optional low-priced source-linked observation rows for changed or backfilled reporting persons.",
                        "default": false
                    },
                    "emitExport": {
                        "title": "Generate evidence export",
                        "type": "boolean",
                        "description": "Emit a compact JSON export of ownership observations, changes, and official SEC filing links.",
                        "default": false
                    },
                    "emitUnchanged": {
                        "title": "Emit unchanged observations",
                        "type": "boolean",
                        "description": "Accepted for compatibility, but unchanged observations remain free and emit zero rows and zero charges.",
                        "default": false
                    },
                    "maxRequests": {
                        "title": "Maximum SEC requests",
                        "minimum": 1,
                        "maximum": 150,
                        "type": "integer",
                        "description": "Hard per-run request bound including ticker lookup, submissions JSON, and filing documents.",
                        "default": 30
                    },
                    "requestIntervalMs": {
                        "title": "Request interval milliseconds",
                        "minimum": 100,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Minimum delay between official SEC requests. Keep a conservative interval and respect SEC access guidance.",
                        "default": 1100
                    },
                    "maxChargeUsd": {
                        "title": "Maximum charge USD",
                        "minimum": 0.006,
                        "maximum": 250,
                        "type": "number",
                        "description": "Fail closed before delivery if planned PPE charges exceed this cap.",
                        "default": 50
                    },
                    "dryRun": {
                        "title": "Dry run",
                        "type": "boolean",
                        "description": "Return deterministic representative rows for all event types without SEC requests, state writes, or charges.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
