# Okaloosaclerk Parser Spider (`getdataforme/okaloosaclerk-parser-spider`) Actor

- **URL**: https://apify.com/getdataforme/okaloosaclerk-parser-spider.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** AI, Automation, E-commerce
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Okaloosaclerk Parser Spider - Apify Actor

🕷️ **Automated web scraping actor for okaloosacleark**

### 📋 Overview

This Apify actor scrapes data from **okaloosacleark** using Standard Scrapy technology. 
It was automatically generated and synchronized from the central repository.

### 🔗 Repository Information

| Property | Value |
|----------|-------|
| **Repository Name** | `okaloosaclerk_parser_spider_apify` |
| **Spider Name** | `okaloosaclerk_parser_spider` |
| **Target Domain** | okaloosacleark |
| **Technology Type** | Standard Scrapy |
| **Template Used** | `apify_template` |
| **Source Path** | `central_repo/src/spiders/okaloosacleark` |
| **GitHub Repository** | [View Repository](https://github.com/getdataforme/okaloosaclerk_parser_spider_apify) |

### 🏠 Parent Repository

This actor is automatically synchronized from the central repository:

- **Central Repository**: [`getdataforme/central_repo`](https://github.com/getdataforme/central_repo)
- **Source Spider File**: `central_repo/src/spiders/okaloosacleark/okaloosaclerk_parser_spider.py`
- **Synchronization**: Automatic via GitHub Actions
- **Last Sync**: 2025-09-09 10:39:31 UTC

### 🔄 Development Workflow

#### Making Changes
1. **DO NOT** edit files directly in this repository
2. Navigate to the [central repository](https://github.com/getdataforme/central_repo)
3. Edit the spider file at: `central_repo/src/spiders/okaloosacleark/okaloosaclerk_parser_spider.py`
4. Commit and push changes to the central repository
5. The GitHub Action will automatically sync changes to this repository

#### Sync Process
- Changes to spider files trigger automatic synchronization
- The actor configuration and input schema are regenerated
- This README is updated with the latest information

### 📁 Repository Structure

````

├── src/
│   ├── main.py          # Apify actor entry point
│   └── spiders/
│       └── okaloosaclerk\_parser\_spider.py    # Spider implementation
├── .actor/
│   ├── actor.json       # Actor configuration
│   └── input\_schema.json # Input parameters schema
├── requirements.txt     # Python dependencies
└── README.md           # This file

````

### 🚀 Usage

#### Local Development
```bash
## Clone the repository
git clone https://github.com/getdataforme/okaloosaclerk_parser_spider_apify.git
cd okaloosaclerk_parser_spider_apify

## Install dependencies
pip install -r requirements.txt

## Run locally (if applicable)
python src/main.py
````

#### Input Configuration

The actor accepts input parameters as defined in `.actor/input_schema.json`.
Common parameters may include:

- URLs to scrape
- Output format preferences
- Rate limiting settings
- Custom extraction parameters

### 🔗 Important Links

- 🏠 **[Central Repository](https://github.com/getdataforme/central_repo)** - Main development repository
- 📁 **[This Repository](https://github.com/getdataforme/okaloosaclerk_parser_spider_apify)** - Generated Apify actor
- 🕷️ **[Source Spider](https://github.com/getdataforme/central_repo/blob/main/central_repo/src/spiders/okaloosacleark/okaloosaclerk_parser_spider.py)** - Original spider file
- 📚 **[Apify Documentation](https://docs.apify.com/)** - Apify platform documentation

### ⚠️ Important Notes

- **This repository is auto-generated** - Direct changes will be overwritten
- **All modifications** should be made in the central repository
- **Synchronization is automatic** - No manual intervention required
- **Issues and PRs** should be submitted to the central repository

***

*This README was automatically generated on 2025-09-09 10:39:31 UTC by the central repository sync process.*

# Actor input Schema

## `ItemLimit` (type: `integer`):

The item limit for the spider.

## `CaseType` (type: `array`):

The case type for the spider.

## `DateFrom` (type: `string`):

The date from for the spider.

## `DateTo` (type: `string`):

The date to for the spider.

## `Casetypedocument` (type: `array`):

The casetypedocument for the spider.

## Actor input object example

```json
{}
```

# 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("getdataforme/okaloosaclerk-parser-spider").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("getdataforme/okaloosaclerk-parser-spider").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 getdataforme/okaloosaclerk-parser-spider --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=getdataforme/okaloosaclerk-parser-spider",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Okaloosaclerk Parser Spider",
        "version": "0.0",
        "x-build-id": "zdE8XZCJqDS1aZ9yI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/getdataforme~okaloosaclerk-parser-spider/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-getdataforme-okaloosaclerk-parser-spider",
                "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/getdataforme~okaloosaclerk-parser-spider/runs": {
            "post": {
                "operationId": "runs-sync-getdataforme-okaloosaclerk-parser-spider",
                "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/getdataforme~okaloosaclerk-parser-spider/run-sync": {
            "post": {
                "operationId": "run-sync-getdataforme-okaloosaclerk-parser-spider",
                "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": {
                    "ItemLimit": {
                        "title": "Item Limit",
                        "minimum": 1,
                        "type": "integer",
                        "description": "The item limit for the spider."
                    },
                    "CaseType": {
                        "title": "Case Type",
                        "type": "array",
                        "description": "The case type for the spider.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "All",
                                "219",
                                "213",
                                "211",
                                "183",
                                "234",
                                "252",
                                "185",
                                "188",
                                "194",
                                "199",
                                "202",
                                "206",
                                "229",
                                "209",
                                "222",
                                "191",
                                "187",
                                "210",
                                "239",
                                "293",
                                "302",
                                "66087",
                                "66086",
                                "258",
                                "262",
                                "267",
                                "270",
                                "285",
                                "291",
                                "297",
                                "304",
                                "268",
                                "295",
                                "299",
                                "301",
                                "305",
                                "309",
                                "312",
                                "264",
                                "269",
                                "271",
                                "275",
                                "64877",
                                "43638",
                                "278",
                                "43641",
                                "274",
                                "308",
                                "338",
                                "341",
                                "343",
                                "347",
                                "354",
                                "362",
                                "319",
                                "43651",
                                "333",
                                "359",
                                "201",
                                "225",
                                "228",
                                "214",
                                "221",
                                "65035",
                                "233",
                                "65039",
                                "251",
                                "65177",
                                "65178",
                                "195",
                                "215",
                                "241",
                                "65036",
                                "216",
                                "220",
                                "255",
                                "65037",
                                "245",
                                "43637",
                                "336",
                                "272",
                                "276",
                                "296",
                                "300",
                                "65179",
                                "314",
                                "328",
                                "65038",
                                "350",
                                "65034",
                                "259",
                                "226",
                                "200",
                                "212",
                                "223",
                                "232",
                                "242",
                                "250",
                                "320",
                                "322",
                                "192",
                                "224",
                                "273",
                                "298",
                                "311",
                                "288",
                                "64876",
                                "237",
                                "189",
                                "196",
                                "279",
                                "303",
                                "325",
                                "332",
                                "335",
                                "356",
                                "360",
                                "349",
                                "357",
                                "256",
                                "65942",
                                "193",
                                "249",
                                "238",
                                "248",
                                "186",
                                "208",
                                "218",
                                "227",
                                "235",
                                "246",
                                "257",
                                "282",
                                "280",
                                "324",
                                "363",
                                "326"
                            ],
                            "enumTitles": [
                                "All",
                                "Ap Appeal From County Court",
                                "Ap Appeal From County Court Civil",
                                "Ca Anti Trust Trade Regulation",
                                "Ca Auto Negligence",
                                "Ca Business Transaction",
                                "Ca Civil Forfeiture",
                                "Ca Commercial Foreclosure 250K Or More",
                                "Ca Condominium",
                                "Ca Constitutional Challenge Proposed Amendment",
                                "Ca Constitutional Challenge Statute Or Ordinance",
                                "Ca Contraband Forfeiture",
                                "Ca Contract Indebtedness",
                                "Ca Corporate Trust",
                                "Ca Dangerous Dog Appeal",
                                "Ca Declaratory Judgment",
                                "Ca Discrimination Employment Or Other",
                                "Ca Eminent Domain",
                                "Ca Establish Foreign Judgment",
                                "Ca Extended Medical Malpractice",
                                "Ca Habeas Corpus Oth Circ Cvl",
                                "Ca Homestead Residential Foreclosure 0 50K",
                                "Ca Homestead Residential Foreclosure 250K Or More",
                                "Ca Homestead Residential Foreclosure 50K 499999",
                                "Ca Insurance Claim",
                                "Ca Intellectual Property",
                                "Ca Interpleader",
                                "Ca Jimmy Ryce Act",
                                "Ca Libel Slander",
                                "Ca Lien Forec Less Than 50K",
                                "Ca Lien Forec Greater Than 250K",
                                "Ca Lien Forec 50K 250K",
                                "Ca Negligence Other",
                                "Ca Negligence Business Governance",
                                "Ca Negligence Business Torts",
                                "Ca Negligence Construction Defect",
                                "Ca Negligence Environmental Toxic Tort",
                                "Ca Negligence Mass Tort",
                                "Ca Negligence Negligent Security",
                                "Ca Negligence Nursing Home",
                                "Ca Negligence Premises Liability Commercial",
                                "Ca Negligence Premises Liability Residential",
                                "Ca Negligence Third Party Indemnification",
                                "Ca Nh Res Foreclosure 0 50K",
                                "Ca Non Homestead Mortgage Foreclosure Greater Than 250K",
                                "Ca Non Homestead Residential Foreclosure",
                                "Ca Oth Real Prop Less Than 50K",
                                "Ca Other Circuit Civil",
                                "Ca Other Real Property Foreclosure 50K 249999",
                                "Ca Product Liability",
                                "Ca Professional Malpractice Business",
                                "Ca Professional Malpractice Medical",
                                "Ca Professional Malpractice Other Professional",
                                "Ca Quiet Title",
                                "Ca Securities Litigation",
                                "Ca Share Holder Derivative Action",
                                "Ca Trade Secret",
                                "Ca Trust Litigation",
                                "Ca Writ Of Mandamus",
                                "Cc Animal Services",
                                "Cc Auto Negligence County Civil 1 15000",
                                "Cc Auto Negligence County Civil 15001 30000",
                                "Cc Contract Indebtedness 1 15000",
                                "Cc Contract Indebtedness 15000 30000",
                                "Cc Contract Indebtedness 30001 50000",
                                "Cc County Civil 15001 30000",
                                "Cc County Civil 30001 50000",
                                "Cc County Civil 8001 15000",
                                "Cc County Civil Foreclosures 30001 50000",
                                "Cc County Civil Lein Foreclosures 30001 50000",
                                "Cc County Foreclosure 15000 30000",
                                "Cc Distress For Rent 1 15000",
                                "Cc Distress For Rent 15001 30000",
                                "Cc Distress For Rent 30001 50000",
                                "Cc Eviction Non Residential",
                                "Cc Eviction Residential",
                                "Cc Foreign Judgment 15001 30000",
                                "Cc Foreign Judgment 30001 50000",
                                "Cc Foreign Judgment 8001 15000",
                                "Cc Lien Foreclosures County 15000 30000",
                                "Cc Mechanics Lien",
                                "Cc Motor Vehicle Repair Act",
                                "Cc Other County Civil",
                                "Cc Other Negligence County Civil 1 15000",
                                "Cc Other Negligence County Civil 15001 30000",
                                "Cc Other Negligence County Civil 30001 50000",
                                "Cc Replevin 1 14999",
                                "Cc Replevin 15001 30000",
                                "Cc Replevin 30001 50000",
                                "Cc Replevin 8001 15000",
                                "Cc Auto Negligence County Civil 30001 50000",
                                "Cf Felony",
                                "Cj Delinquency",
                                "Cj Emergency Transfer 1",
                                "Cj Emergency Transfer 2",
                                "Cj Emergency Transfer 3",
                                "Cj Emergency Transfer 4",
                                "Cj Emergency Transfer 5",
                                "Cj Emergency Transfer 6",
                                "Cj Transferred Delinquency",
                                "Cj Transferred Petitions",
                                "Cm Emergency Temp Restraining Order",
                                "Cm Evidence Contraband",
                                "Cm Foreign Subpoena",
                                "Cm Notice Of Registration",
                                "Cm Other Administrative",
                                "Cm Other Domestic Relations Cm",
                                "Co County Ordinance",
                                "Cp Caveat",
                                "Cp Curatorship",
                                "Cp Disposition Of Personal Property Wo Administration",
                                "Cp Formal Administration",
                                "Cp Notice Of Trust",
                                "Cp Petition Order To Admit Foreign Wills",
                                "Cp Probate",
                                "Cp Probate Misc Filing Fee 231",
                                "Cp Summary Administration Less Than 1000",
                                "Cp Summary Administration Greater Than 1000",
                                "Cp Trust Petition",
                                "Cp Trusts Probate",
                                "Ct Criminal Traffic",
                                "Ct Criminal Traffic Arrest",
                                "Dp Adoption Petition",
                                "Dp Child Family In Need Of Services",
                                "Dp Dependency Petition",
                                "Dp Dependency Petition Transferred For Disposition",
                                "Dp Disability Of Nonage Of Minors",
                                "Dp Emergency Transfer 1",
                                "Dp Emergency Transfer 2",
                                "Dp Emergency Transfer 3",
                                "Dp Emergency Transfer 4",
                                "Dp Emergency Transfer 5",
                                "Dp Emergency Transfer 6",
                                "Dp Judicial Waiver Parental Ntc Of Abortion",
                                "Dp Other Dependency",
                                "Dp Shelter Petition",
                                "Dp Termination Petition",
                                "Dp Transferred Petitions"
                            ]
                        }
                    },
                    "DateFrom": {
                        "title": "Date From",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$|^(\\d+)\\s*(day|week|month|year)s?$",
                        "type": "string",
                        "description": "The date from for the spider."
                    },
                    "DateTo": {
                        "title": "Date To",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$|^(\\d+)\\s*(day|week|month|year)s?$",
                        "type": "string",
                        "description": "The date to for the spider."
                    },
                    "Casetypedocument": {
                        "title": "Casetypedocument",
                        "type": "array",
                        "description": "The casetypedocument for the spider.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Complaint",
                                "Civil Cover Sheet"
                            ],
                            "enumTitles": [
                                "Complaint",
                                "Civil Cover Sheet"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
