# Japan Business Days & Calendar (Cabinet Office Official) (`minako-ph/japan-business-days-calendar`) Actor

Japanese business-day calculations, national holidays, and wareki (era) conversion. Official Cabinet Office holiday data, deterministic JSON output.

- **URL**: https://apify.com/minako-ph/japan-business-days-calendar.md
- **Developed by:** [Minako Yamamoto](https://apify.com/minako-ph) (community)
- **Categories:** Developer tools, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 calendar records

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

## Japan Business Days & Calendar (Cabinet Office Official)

Japan business days API for developers and AI agents: check, add and count business days with Japanese national holidays, custom company closures, and wareki (Japanese era) conversion in both directions. All answers are computed from the **official Cabinet Office (内閣府) "国民の祝日" holiday data**, bundled into the Actor at build time — **official data based, no scraping, no external calls at run time**, so results are deterministic and the Actor keeps working even when websites change. It parses Japanese era dates in the notations people actually write (令和8年7月11日 / R8.7.11 / reiwa 8), handles the 2019 Heisei→Reiwa era boundary correctly, and refuses to guess outside its recorded data range. Tested against frozen datasets on every release.

### What you get

One JSON record per input item. Real output for the era-boundary pair — the last day of Heisei and the first day of Reiwa (both public holidays in 2019):

```json
{
  "operation": "date_info",
  "date": "2019-04-30",
  "weekday": "tuesday",
  "weekday_ja": "火",
  "wareki": {
    "era": "heisei",
    "era_ja": "平成",
    "year": 31,
    "is_first_year": false,
    "formatted_ja": "平成31年4月30日"
  },
  "is_holiday": true,
  "holiday_name_ja": "休日",
  "holiday_name_en": "Public Holiday",
  "is_business_day": false,
  "non_business_reason": "national_holiday",
  "fiscal_year": 2019,
  "is_leap_year": false,
  "note": null,
  "source": "cao_holidays",
  "source_url": "https://www8.cao.go.jp/chosei/shukujitsu/syukujitsu.csv",
  "retrieved_at": "2026-07-13T00:00:00.000Z",
  "attribution": "出典：内閣府「国民の祝日」",
  "schema_version": "0.1.0"
}
````

```json
{
  "operation": "date_info",
  "date": "2019-05-01",
  "weekday": "wednesday",
  "wareki": {
    "era": "reiwa",
    "era_ja": "令和",
    "year": 1,
    "is_first_year": true,
    "formatted_ja": "令和元年5月1日"
  },
  "is_holiday": true,
  "holiday_name_ja": "休日（祝日扱い）",
  "is_business_day": false,
  "non_business_reason": "national_holiday",
  "fiscal_year": 2019,
  "is_leap_year": false
}
```

(second record abbreviated — every record carries the same full field set and attribution metadata)

Six operations, selected by the `operation` input:

- `date_info` — weekday, wareki, holiday, business-day status, Japanese fiscal year (April start) and leap year for each date
- `wareki_to_western` — parse Japanese era dates (kanji, abbreviated, romaji; year-only inputs return the era year's date range)
- `holidays` — national holidays of the given years, one record per holiday, English names included
- `holidays_next` — the next national holiday on or after `from_date` (defaults to today JST), with `days_until`
- `business_days_add` — the date N business days later (negative N goes backwards)
- `business_days_count` — business days between two dates, both ends included

`weekend_days` (default Saturday/Sunday), `include_national_holidays` (default true) and `extra_holidays` (your own company closures, up to 100 dates) apply to the business-day operations. Non-business reasons are judged in the order weekend → national\_holiday → extra\_holiday.

### How to use

1. Press **Start** — the prefilled input describes four dates: the 2019 era boundary pair, a substitute holiday and a regular weekday. First results arrive in seconds.
2. Switch `operation` and fill the matching input list (`dates`, `wareki_strings`, `years`, `from_date`, `items`, or `ranges`).
3. Read results from the default dataset as JSON/CSV, or call the Actor from your code / an AI agent via the Apify API (`run-sync-get-dataset-items` for synchronous use).

Invalid items (unparseable dates, out-of-range years) do not fail the run: each produces a per-item `_error` record — free of charge — and processing continues. Up to 1,000 input items per run.

### What this does NOT do

- **If you only need a list of holidays, you may not need a paid Actor at all**: free alternatives exist (Nager.Date-based holiday Actors covering 100+ countries, and the Cabinet Office open-data CSV itself). This Actor's value is the combination of business-day arithmetic, wareki parsing with real-world notation variants, and custom company closures on top of the official data.
- No dates before **1873-01-01** (Japan used a lunisolar calendar before adopting the Gregorian calendar; naive conversion would be historically wrong).
- No holiday or business-day answers **outside the recorded data range** (currently 1955–2027, machine-derived from the official CSV). Out-of-range items return an explicit error with the covered range — never a guess.
- No rokuyō (六曜), sekki (二十四節気) or other almanac data. No company/corporate data (see the family Actors below).
- Holiday **English names are this Actor's reference translations** — no official English names exist.
- It does not predict your company's closures — pass them in via `extra_holidays`.

### Pricing

Pay per event: **$0.003 per result record** plus $0.02 per Actor start. The **first 50 records of every run are free**, and `_error` records are never charged. There are no LLM or proxy costs behind this Actor, so pricing is flat and predictable.

### Data source & attribution

- Source: Cabinet Office of Japan, ["国民の祝日" (national holidays) open data](https://www8.cao.go.jp/chosei/shukujitsu/gaiyou.html) (CC-BY, via the official CSV).
- Every record carries `attribution: 出典：内閣府「国民の祝日」`.
- The holiday snapshot is refreshed through a reviewed manual pipeline when the Cabinet Office publishes new years. **National holidays can change by legislation** (as happened for the Tokyo 2020 Olympics); the data follows the official source.
- No uptime/SLA figures are promised; the Actor is deterministic and has no runtime network dependencies.

### More Japan data Actors

This Actor is part of a family of official-data-based Japan Actors. Typical combo: pull tender deadlines with [**Japan Government Tenders Scraper + AI Extraction**](https://apify.com/minako-ph/japan-tender-scraper) and count the remaining business days to each deadline with this Actor. See also [**Japan Company Filings (EDINET Official)**](https://apify.com/minako-ph/japan-edinet-filings) — structured financial filings of listed Japanese companies — and the developer profile for the full list as they are published.

### Contact

Found an issue or a notation this Actor should parse but doesn't? Open a ticket on the **Issues** tab — first response within 48 hours.

# Actor input Schema

## `operation` (type: `string`):

What to compute. date\_info = full info per date (weekday, wareki, holiday, business day, fiscal year); wareki\_to\_western = parse Japanese era dates like 令和8年7月11日 / R8.7.11 / reiwa 8; holidays = national holidays of the given years (one record per holiday); holidays\_next = next national holiday on or after from\_date; business\_days\_add = date N business days later (negative goes backwards); business\_days\_count = business days between two dates, both ends included.

## `dates` (type: `array`):

ISO dates (YYYY-MM-DD) to describe, e.g. 2019-04-30 (last day of Heisei), 2019-05-01 (first day of Reiwa), 2026-05-06 (substitute holiday), 2026-07-13 (regular weekday). Up to 1,000 input items per run across all operations.

## `wareki_strings` (type: `array`):

Japanese era dates in any common notation: kanji (令和8年7月11日), abbreviated (R8.7.11), or romaji (reiwa 8). Year-only inputs (令和8年 / reiwa 8) return the Western year and the date range that era year covers.

## `years` (type: `array`):

4-digit years, e.g. \[2026, 2027]. One output record per national holiday. Years outside the bundled data coverage produce an explicit per-item error instead of a guess.

## `from_date` (type: `string`):

ISO date (YYYY-MM-DD) to search from, inclusive: if from\_date itself is a holiday it is returned. When omitted, today in JST (Asia/Tokyo) is used.

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

Array of {"date": "YYYY-MM-DD", "days": N} objects, e.g. \[{"date": "2026-07-17", "days": 3}]. days may be negative to go backwards; |days| up to 5000. days = 0 returns the input date unchanged.

## `ranges` (type: `array`):

Array of {"from": "YYYY-MM-DD", "to": "YYYY-MM-DD"} objects, e.g. \[{"from": "2026-07-01", "to": "2026-07-31"}]. Both ends are included in the count. Each period can span up to 100 years.

## `weekend_days` (type: `array`):

Weekday names treated as non-business days, among: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is \["saturday", "sunday"]. Applies to date\_info, business\_days\_add and business\_days\_count.

## `include_national_holidays` (type: `boolean`):

Default true. Set false to count Japanese national holidays as business days. Non-business reasons are judged in the order weekend → national\_holiday → extra\_holiday.

## `extra_holidays` (type: `array`):

Your own company closures as ISO dates (YYYY-MM-DD), e.g. year-end shutdown \["2026-12-30", "2026-12-31"]. Up to 100 dates. Applies to date\_info, business\_days\_add and business\_days\_count.

## Actor input object example

```json
{
  "operation": "date_info",
  "dates": [
    "2019-04-30",
    "2019-05-01",
    "2026-05-06",
    "2026-07-13"
  ],
  "weekend_days": [
    "saturday",
    "sunday"
  ],
  "include_national_holidays": true
}
```

# 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 = {
    "operation": "date_info",
    "dates": [
        "2019-04-30",
        "2019-05-01",
        "2026-05-06",
        "2026-07-13"
    ],
    "weekend_days": [
        "saturday",
        "sunday"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("minako-ph/japan-business-days-calendar").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 = {
    "operation": "date_info",
    "dates": [
        "2019-04-30",
        "2019-05-01",
        "2026-05-06",
        "2026-07-13",
    ],
    "weekend_days": [
        "saturday",
        "sunday",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("minako-ph/japan-business-days-calendar").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 '{
  "operation": "date_info",
  "dates": [
    "2019-04-30",
    "2019-05-01",
    "2026-05-06",
    "2026-07-13"
  ],
  "weekend_days": [
    "saturday",
    "sunday"
  ]
}' |
apify call minako-ph/japan-business-days-calendar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=minako-ph/japan-business-days-calendar",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Japan Business Days & Calendar (Cabinet Office Official)",
        "description": "Japanese business-day calculations, national holidays, and wareki (era) conversion. Official Cabinet Office holiday data, deterministic JSON output.",
        "version": "0.1",
        "x-build-id": "7JB9fPk4EBfV1vQey"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/minako-ph~japan-business-days-calendar/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-minako-ph-japan-business-days-calendar",
                "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/minako-ph~japan-business-days-calendar/runs": {
            "post": {
                "operationId": "runs-sync-minako-ph-japan-business-days-calendar",
                "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/minako-ph~japan-business-days-calendar/run-sync": {
            "post": {
                "operationId": "run-sync-minako-ph-japan-business-days-calendar",
                "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": [
                    "operation"
                ],
                "properties": {
                    "operation": {
                        "title": "Operation",
                        "enum": [
                            "date_info",
                            "wareki_to_western",
                            "holidays",
                            "holidays_next",
                            "business_days_add",
                            "business_days_count"
                        ],
                        "type": "string",
                        "description": "What to compute. date_info = full info per date (weekday, wareki, holiday, business day, fiscal year); wareki_to_western = parse Japanese era dates like 令和8年7月11日 / R8.7.11 / reiwa 8; holidays = national holidays of the given years (one record per holiday); holidays_next = next national holiday on or after from_date; business_days_add = date N business days later (negative goes backwards); business_days_count = business days between two dates, both ends included."
                    },
                    "dates": {
                        "title": "Dates (for date_info)",
                        "type": "array",
                        "description": "ISO dates (YYYY-MM-DD) to describe, e.g. 2019-04-30 (last day of Heisei), 2019-05-01 (first day of Reiwa), 2026-05-06 (substitute holiday), 2026-07-13 (regular weekday). Up to 1,000 input items per run across all operations.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "wareki_strings": {
                        "title": "Wareki strings (for wareki_to_western)",
                        "type": "array",
                        "description": "Japanese era dates in any common notation: kanji (令和8年7月11日), abbreviated (R8.7.11), or romaji (reiwa 8). Year-only inputs (令和8年 / reiwa 8) return the Western year and the date range that era year covers.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "years": {
                        "title": "Years (for holidays)",
                        "type": "array",
                        "description": "4-digit years, e.g. [2026, 2027]. One output record per national holiday. Years outside the bundled data coverage produce an explicit per-item error instead of a guess."
                    },
                    "from_date": {
                        "title": "From date (for holidays_next)",
                        "type": "string",
                        "description": "ISO date (YYYY-MM-DD) to search from, inclusive: if from_date itself is a holiday it is returned. When omitted, today in JST (Asia/Tokyo) is used."
                    },
                    "items": {
                        "title": "Items (for business_days_add)",
                        "type": "array",
                        "description": "Array of {\"date\": \"YYYY-MM-DD\", \"days\": N} objects, e.g. [{\"date\": \"2026-07-17\", \"days\": 3}]. days may be negative to go backwards; |days| up to 5000. days = 0 returns the input date unchanged."
                    },
                    "ranges": {
                        "title": "Ranges (for business_days_count)",
                        "type": "array",
                        "description": "Array of {\"from\": \"YYYY-MM-DD\", \"to\": \"YYYY-MM-DD\"} objects, e.g. [{\"from\": \"2026-07-01\", \"to\": \"2026-07-31\"}]. Both ends are included in the count. Each period can span up to 100 years."
                    },
                    "weekend_days": {
                        "title": "Weekend days (common option)",
                        "type": "array",
                        "description": "Weekday names treated as non-business days, among: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is [\"saturday\", \"sunday\"]. Applies to date_info, business_days_add and business_days_count.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "include_national_holidays": {
                        "title": "Treat national holidays as non-business days (common option)",
                        "type": "boolean",
                        "description": "Default true. Set false to count Japanese national holidays as business days. Non-business reasons are judged in the order weekend → national_holiday → extra_holiday.",
                        "default": true
                    },
                    "extra_holidays": {
                        "title": "Extra holidays (common option)",
                        "type": "array",
                        "description": "Your own company closures as ISO dates (YYYY-MM-DD), e.g. year-end shutdown [\"2026-12-30\", \"2026-12-31\"]. Up to 100 dates. Applies to date_info, business_days_add and business_days_count.",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
