# GitHub Issues & Pull Requests Monitor (`automly/github-issues-pr-monitor`) Actor

Monitor GitHub repositories, organizations, users, or search queries for issues and pull requests — new, updated, closed, and merged activity — as clean structured records.

- **URL**: https://apify.com/automly/github-issues-pr-monitor.md
- **Developed by:** [Automly](https://apify.com/automly) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.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

## GitHub Issues & Pull Requests Monitor

Monitor GitHub **issues** and **pull requests** across repositories, organizations, users, or any GitHub search query — and export clean, structured records of new, updated, closed, and merged activity.

Built for recurring monitoring: point it at the projects you care about, schedule it, and get a tidy dataset of issue and PR activity every run.

### What you can do with it

- **Developer relations** — keep an eye on issues and PRs across the repos your community depends on.
- **Security triage** — watch for newly opened issues or PRs that mention security-relevant topics.
- **Competitive & market tracking** — follow activity in competitors' open-source projects.
- **OSS maintenance** — track incoming issues and pull requests across an entire organization.
- **Sales & lead signals** — surface people opening issues or PRs around topics you sell into.

### Features

- Monitor by **repository** (`owner/repo`), **organization**, **user**, or raw **GitHub search query**.
- Collect **issues**, **pull requests**, or **both**.
- Filter by **state** (open / closed / all), **labels**, and **updated-since** timestamp.
- Pull-request records include **merged state** and **merge date**.
- Optional **comment counts** and **reaction counts** per item.
- **Incremental monitoring**: optionally remember the last activity per source and only collect what changed on the next run.
- Works without any credentials for public data; add a **GitHub token** for substantially higher rate limits and to read private repositories your token can access.

### Input

| Field | Type | Description |
| --- | --- | --- |
| `repositories` | array | Repositories to monitor as `owner/repo` (or a full GitHub URL). |
| `organizations` | array | Organization logins to monitor across their repositories. |
| `users` | array | User logins whose issues and pull requests to monitor. |
| `searchQueries` | array | Raw GitHub issue-search queries for advanced monitoring. |
| `itemKinds` | string | `issues`, `pullRequests`, or `both` (default `both`). |
| `state` | string | `open`, `closed`, or `all` (default `open`). |
| `since` | string | Only items updated at/after this ISO-8601 timestamp, e.g. `2024-01-01T00:00:00Z`. |
| `labels` | array | Only items carrying all of these labels. |
| `maxItems` | integer | Maximum total items to collect across all sources (1–1000). |
| `includeCommentsCount` | boolean | Include the number of comments per item (default `true`). |
| `includeLabels` | boolean | Include the list of label names per item (default `true`). |
| `includeReactions` | boolean | Include the total reaction count per item (default `false`). |
| `useStateCheckpoint` | boolean | Remember the latest activity per source between runs (default `false`). |
| `requestDelayMs` | integer | Minimum delay between requests, in milliseconds (default `250`). |
| `githubToken` | string | Optional GitHub token. Can also be set via the `GITHUB_TOKEN` environment variable. |
| `proxyConfiguration` | object | Optional proxy configuration for very large or frequent runs. |

You can combine sources freely — for example, monitor two repositories, an entire organization, and a custom search query in a single run.

#### Example input

```json
{
  "repositories": ["apify/apify-sdk-python"],
  "organizations": ["apify"],
  "itemKinds": "both",
  "state": "open",
  "since": "2024-01-01T00:00:00Z",
  "maxItems": 100,
  "includeCommentsCount": true,
  "includeReactions": true
}
````

### Output

Each dataset record represents one issue or pull request:

| Field | Description |
| --- | --- |
| `sourceKind` | `repository`, `organization`, `user`, or `searchQuery`. |
| `monitorQuery` | The source that produced the item. |
| `repository` | Full `owner/repo` name. |
| `owner` | Repository owner login. |
| `itemKind` | `issue` or `pullRequest`. |
| `itemId` | GitHub global identifier. |
| `itemNumber` | Issue or PR number within the repository. |
| `itemUrl` | Canonical GitHub URL. |
| `title` | Item title. |
| `bodyText` | Full item body (Markdown). |
| `summary` | Single-line summary of the body. |
| `state` | `open` or `closed`. |
| `isMerged` | `true` when a pull request has been merged. |
| `createdAt` / `updatedAt` / `closedAt` / `mergedAt` | Activity timestamps. |
| `authorLogin` | Login of the item's author. |
| `labels` | Label names. |
| `assignees` | Assignee logins. |
| `commentsCount` | Number of comments (when included). |
| `reactionsCount` | Total reactions (when included). |
| `milestone` | Milestone title, if any. |
| `isDraft` | `true` for draft pull requests. |
| `isLocked` | `true` when the conversation is locked. |
| `fetchedAt` | When the record was collected. |

#### Example output record

```json
{
  "sourceKind": "repository",
  "monitorQuery": "apify/apify-sdk-python",
  "repository": "apify/apify-sdk-python",
  "owner": "apify",
  "itemKind": "pullRequest",
  "itemNumber": 312,
  "itemUrl": "https://github.com/apify/apify-sdk-python/pull/312",
  "title": "Add retry option",
  "bodyText": "Adds a configurable retry option to the client so transient failures are retried automatically.",
  "summary": "Adds a configurable retry option to the client so transient failures are retried automatically.",
  "state": "open",
  "isMerged": false,
  "createdAt": "2024-05-01T10:00:00Z",
  "updatedAt": "2024-05-02T08:30:00Z",
  "authorLogin": "octocat",
  "labels": ["enhancement"],
  "commentsCount": 4,
  "reactionsCount": 7,
  "isDraft": false,
  "fetchedAt": "2024-05-02T09:00:00Z"
}
```

### Recurring monitoring

There are two ways to collect only fresh activity each run:

1. **Set `since`** to the timestamp of your last run.
2. **Enable `useStateCheckpoint`** so the actor remembers the latest activity per source automatically and collects only newer items next time. An explicit `since` always takes precedence.

Pair this with Apify **scheduling** to run the monitor every hour or day.

### Rate limits & tokens

GitHub allows a limited number of unauthenticated requests per hour. For small public runs no credentials are needed. For larger runs, frequent schedules, or private repositories your token can access, add a **GitHub token** (input `githubToken` or the `GITHUB_TOKEN` environment variable) to raise the limit substantially. If GitHub's rate limit is reached mid-run, the actor stops fetching, keeps whatever it has already collected, and finishes successfully — the run summary (the `OUTPUT` key-value record) sets `rateLimited: true` so you can detect a truncated run.

### Notes

- A pull request is a kind of issue on GitHub; this actor labels each record clearly as `issue` or `pullRequest`.
- Organization, user, and search-query monitoring uses GitHub search, which returns up to 1000 of the most recent matches per source.

# Actor input Schema

## `repositories` (type: `array`):

Repositories to monitor, as 'owner/repo' (e.g. 'apify/apify-sdk-python') or a full GitHub URL. Each repository is listed directly, returning both issues and pull requests.

## `organizations` (type: `array`):

Organization logins to monitor across all of their public repositories (e.g. 'apify'). Uses GitHub search, which returns up to 1000 most recent matches.

## `users` (type: `array`):

User logins whose issues and pull requests should be monitored (e.g. 'octocat'). Uses GitHub search, which returns up to 1000 most recent matches.

## `searchQueries` (type: `array`):

Raw GitHub issue-search queries for advanced monitoring, e.g. 'repo:apify/crawlee label:bug' or 'org:microsoft vscode in:title'. Item kind, state, and 'since' qualifiers are added automatically when not already present.

## `itemKinds` (type: `string`):

Which kinds of items to collect. One of: 'issues', 'pullRequests', or 'both'.

## `state` (type: `string`):

Which item state to collect. One of: 'open', 'closed', or 'all'.

## `since` (type: `string`):

Only collect items updated at or after this ISO-8601 timestamp, e.g. '2024-01-01T00:00:00Z'. Leave empty to collect the most recent items. Great for recurring monitoring runs.

## `labels` (type: `array`):

Only collect items carrying all of these labels (e.g. 'bug', 'good first issue'). Leave empty to ignore labels.

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

Maximum total number of items to collect across all sources (1-1000).

## `includeCommentsCount` (type: `boolean`):

Include the number of comments on each item.

## `includeLabels` (type: `boolean`):

Include the list of label names on each item.

## `includeReactions` (type: `boolean`):

Include the total reaction count on each item.

## `useStateCheckpoint` (type: `boolean`):

Remember the latest 'updated' time per source between runs and only collect newer items on the next run. An explicit 'since' value always takes precedence.

## `requestDelayMs` (type: `integer`):

Minimum delay between GitHub API requests, in milliseconds. Helps stay within rate limits on large runs.

## `githubToken` (type: `string`):

Optional GitHub personal access token. Raises rate limits and allows access to private repositories you can see. Can also be supplied via the GITHUB\_TOKEN environment variable.

## `proxyConfiguration` (type: `object`):

Optional proxy configuration. Useful for very large or frequent runs; the GitHub API works fine over a direct connection for most use cases.

## Actor input object example

```json
{
  "repositories": [
    "apify/apify-sdk-python"
  ],
  "itemKinds": "both",
  "state": "open",
  "maxItems": 50,
  "includeCommentsCount": true,
  "includeLabels": true,
  "includeReactions": false,
  "useStateCheckpoint": false,
  "requestDelayMs": 250
}
```

# Actor output Schema

## `items` (type: `string`):

All issues and pull requests produced by this run.

## `overview` (type: `string`):

Dataset presented using the dataset schema overview view.

# 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 = {
    "repositories": [
        "apify/apify-sdk-python"
    ],
    "itemKinds": "both",
    "state": "open"
};

// Run the Actor and wait for it to finish
const run = await client.actor("automly/github-issues-pr-monitor").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 = {
    "repositories": ["apify/apify-sdk-python"],
    "itemKinds": "both",
    "state": "open",
}

# Run the Actor and wait for it to finish
run = client.actor("automly/github-issues-pr-monitor").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 '{
  "repositories": [
    "apify/apify-sdk-python"
  ],
  "itemKinds": "both",
  "state": "open"
}' |
apify call automly/github-issues-pr-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=automly/github-issues-pr-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "GitHub Issues & Pull Requests Monitor",
        "description": "Monitor GitHub repositories, organizations, users, or search queries for issues and pull requests — new, updated, closed, and merged activity — as clean structured records.",
        "version": "1.0",
        "x-build-id": "J1lrPzaOGFX0AJRuL"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automly~github-issues-pr-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automly-github-issues-pr-monitor",
                "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/automly~github-issues-pr-monitor/runs": {
            "post": {
                "operationId": "runs-sync-automly-github-issues-pr-monitor",
                "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/automly~github-issues-pr-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-automly-github-issues-pr-monitor",
                "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": {
                    "repositories": {
                        "title": "Repositories",
                        "type": "array",
                        "description": "Repositories to monitor, as 'owner/repo' (e.g. 'apify/apify-sdk-python') or a full GitHub URL. Each repository is listed directly, returning both issues and pull requests.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "organizations": {
                        "title": "Organizations",
                        "type": "array",
                        "description": "Organization logins to monitor across all of their public repositories (e.g. 'apify'). Uses GitHub search, which returns up to 1000 most recent matches.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "users": {
                        "title": "Users",
                        "type": "array",
                        "description": "User logins whose issues and pull requests should be monitored (e.g. 'octocat'). Uses GitHub search, which returns up to 1000 most recent matches.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Raw GitHub issue-search queries for advanced monitoring, e.g. 'repo:apify/crawlee label:bug' or 'org:microsoft vscode in:title'. Item kind, state, and 'since' qualifiers are added automatically when not already present.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "itemKinds": {
                        "title": "Item kinds",
                        "type": "string",
                        "description": "Which kinds of items to collect. One of: 'issues', 'pullRequests', or 'both'.",
                        "default": "both"
                    },
                    "state": {
                        "title": "State",
                        "type": "string",
                        "description": "Which item state to collect. One of: 'open', 'closed', or 'all'.",
                        "default": "open"
                    },
                    "since": {
                        "title": "Updated since (ISO datetime)",
                        "type": "string",
                        "description": "Only collect items updated at or after this ISO-8601 timestamp, e.g. '2024-01-01T00:00:00Z'. Leave empty to collect the most recent items. Great for recurring monitoring runs."
                    },
                    "labels": {
                        "title": "Labels",
                        "type": "array",
                        "description": "Only collect items carrying all of these labels (e.g. 'bug', 'good first issue'). Leave empty to ignore labels.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum total number of items to collect across all sources (1-1000).",
                        "default": 50
                    },
                    "includeCommentsCount": {
                        "title": "Include comment count",
                        "type": "boolean",
                        "description": "Include the number of comments on each item.",
                        "default": true
                    },
                    "includeLabels": {
                        "title": "Include labels",
                        "type": "boolean",
                        "description": "Include the list of label names on each item.",
                        "default": true
                    },
                    "includeReactions": {
                        "title": "Include reactions",
                        "type": "boolean",
                        "description": "Include the total reaction count on each item.",
                        "default": false
                    },
                    "useStateCheckpoint": {
                        "title": "Incremental monitoring (checkpoint)",
                        "type": "boolean",
                        "description": "Remember the latest 'updated' time per source between runs and only collect newer items on the next run. An explicit 'since' value always takes precedence.",
                        "default": false
                    },
                    "requestDelayMs": {
                        "title": "Delay between requests (ms)",
                        "minimum": 0,
                        "maximum": 60000,
                        "type": "integer",
                        "description": "Minimum delay between GitHub API requests, in milliseconds. Helps stay within rate limits on large runs.",
                        "default": 250
                    },
                    "githubToken": {
                        "title": "GitHub token",
                        "type": "string",
                        "description": "Optional GitHub personal access token. Raises rate limits and allows access to private repositories you can see. Can also be supplied via the GITHUB_TOKEN environment variable."
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional proxy configuration. Useful for very large or frequent runs; the GitHub API works fine over a direct connection for most use cases."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
