# Airbnb Explorer (`jupri/airbnb`) Actor

💫  All-in-One Airbnb.com Scraper

- **URL**: https://apify.com/jupri/airbnb.md
- **Developed by:** [cat](https://apify.com/jupri) (community)
- **Categories:** Travel
- **Stats:** 848 total users, 7 monthly users, 100.0% runs succeeded, 20 bookmarks
- **User rating**: 1.00 out of 5 stars

## Pricing

$30.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

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

## Welcome to Airbnb.com Scraper 

![dont be sad readme is here](https://raw.githubusercontent.com/JupriGH/resources/main/cats/catframe.png)

### About Airbnb.com

<img height="96" src="https://upload.wikimedia.org/wikipedia/commons/6/69/Airbnb_Logo_B%C3%A9lo.svg">

**Airbnb, Inc.** ([/ˌɛərˌbiːɛnˈbiː/](https://en.wikipedia.org/wiki/Help:IPA/English "Help:IPA/English")  [_AIR-BEE-en-BEE_](https://en.wikipedia.org/wiki/Help:Pronunciation_respelling_key "Help:Pronunciation respelling key")) is an American company that operates an [online marketplace](https://en.wikipedia.org/wiki/Online_marketplace "Online marketplace") for lodging, primarily [homestays](https://en.wikipedia.org/wiki/Homestay "Homestay") for vacation rentals, and tourism activities. Based in San Francisco, California, the platform is accessible via website and [mobile app](https://en.wikipedia.org/wiki/Mobile_app "Mobile app"). Airbnb does not own any of the listed properties; instead, it profits by receiving [commission](https://en.wikipedia.org/wiki/Commission_(remuneration) "Commission (remuneration)") from each booking. The company was founded in 2008 by Brian Chesky, Nathan Blecharczyk, and Joe Gebbia. Airbnb is a shortened version of its original name, AirBedandBreakfast.com.

### About This Actor

![enter image description here](https://r.bing.com/rp/Xt-zKwSTuQ0RnKzKlPIAsQ7TLko.png)

Scrape data about properties around the world. Check for availability on specific dates. Get detailed information such as amenities, description, ratings, reviews and more. Search for properties using comprehensive list of filters.

> **Notes**
> *The AirBnB website limiting result to 15 pages x 20 item_per_page = 300. The Actor will get as many records as possible beyond the limit, but not much.*

### Tutorial

#### Example #1: Basic Usage

Searching and limiting number of results.

```yaml
{ "location": "Antarctica", "limit": 100 }
````

```yaml
{ "location": "953482945276817965 751307134149677284" } # hotels IDs
```

|Parameter | Type | Description|
|--|--|--|
|`location`| ***string*** |City, country or continent you wish to go, or Hotel-ID|
|`limit`| ***integer*** |Number of results to fetch|

#### Example #2: Trip Length

***Chose one of 3 types of  Trip :***

| Mode | Options (`trip_length`) | Other Parameters |
|-|-|-|
| **📅 Exact Date** | `"date" "date-1" "date-2" "date-3" "date-7" ` | `check_in`,  `check_out`
| **🌕 Monthly**  | `"monthly"` | `montly_start`,  `montly_length`
| **⌛ Flexible**  | `"weekend"` `"one_week"` `"one_month"` | Optional: `trip_month`

```yaml
## mode: Exact date 
{ 
	"location"			: "India",			# to India
	"trip_length" 		: "date",			# on exact date
	"check_in"			: "2024-06-23", 	# on 23 June
	"check_out"			: "2024-06-28",		# until 28 June
	"limit"				: 10
}
```

```yaml
## mode: Mothly 
{ 
	"location"			: "Bali",			# to Bali
	"trip_length" 		: "monthly",		# monthly 
	"monthly_start"		: "2024-07-01", 	# from June
	"monthly_length"	: 2,				# for 2 months
	"limit"				: 10
}
```

```yaml
## mode: Flexible
{ 
	"location"			: "United States",	# to United States
	"trip_length" 		: "one_week",		# for 1 week
	"trip_month"		: [1, 4, 5], 		# in January or April or March.
	"limit"				: 10
}
```

***Check IN / OUT***

| Parameter | Type | Format | Description|
|-|-|-|-|
|`check_in`| ***string*** | `YYYY-MM-DD` | Check-in date |
|`check_out`| ***string*** | `YYYY-MM-DD` | Check-out date |

# Actor input Schema

## `location` (type: `array`):

💡 🧭 <code>LOCATION</code>, 🔗 <code>URL</code> or ❓ <code>COMMAND</code>

## `example` (type: `string`):

💡 <b>Examples:</b> Select one or more examples, then hit <code>START!</code><p>Clear the <b>LOCATION</b> input before running an example.</p> <p>OR, enter your own queries in the <code>LOCATION</code> input.</p>

## `search_mode` (type: `string`):

No description

## `limit` (type: `integer`):

💡 Number of results (per-query)

## `locale` (type: `string`):

💡 Output Language

## `currency` (type: `string`):

💡 Output Currency

## `map_viewer` (type: `boolean`):

No description

## `includes.description` (type: `boolean`):

💡 Long description

## `includes.pricing` (type: `boolean`):

💡 More detailed & accurate pricing

## `includes.amenities` (type: `boolean`):

💡 Grouped amenities

## `includes.highlights` (type: `boolean`):

💡 Hotel Highlights

## `includes.rating` (type: `boolean`):

💡 Ratings details

## `includes.sleeps` (type: `boolean`):

💡 Sleeping arangements

## `includes.location` (type: `boolean`):

💡 Surrounding area

## `includes.images` (type: `boolean`):

💡 Complete gallery

## `includes.host` (type: `boolean`):

💡 Meet your host

## `includes.calendar` (type: `integer`):

💡 Availability Calendar <code><i>(1-12 Months, starting from current Month)</i></code>

## `includes.reviews` (type: `integer`):

💡 Number of reviews to fetch <code><i>(max=50). To filter, use REVIEWS filters below</i></code>.

## `reviews_search` (type: `string`):

💡 Search within reviews

## `reviews_sort` (type: `string`):

💡 Reviews sorting

## `superhost` (type: `boolean`):

💡 Stay with recognized Hosts

## `airbnb_plus` (type: `boolean`):

💡 A selection of places to stay verified for quality and design

## `airbnb_luxe` (type: `boolean`):

💡 Handpicked luxury homes with personally arranged services

## `guest_fav` (type: `boolean`):

💡 The most loved homes on Airbnb, according to guests

## `work_trip` (type: `boolean`):

💡 People traveling for work have rated these places highly

## `reviews_count` (type: `integer`):

💡 Minimum numbers of visible reviews

## `host_id` (type: `string`):

No description

## `host_languages` (type: `array`):

No description

## `experience_types` (type: `array`):

No description

## `experience_traveler` (type: `array`):

No description

## `experience_duration_min` (type: `integer`):

No description

## `experience_duration_max` (type: `integer`):

No description

## `experience_time` (type: `array`):

No description

## `experience_languages` (type: `array`):

No description

## `trip_length` (type: `string`):

No description

## `check_in` (type: `string`):

💡 Exact date (YYYY-MM-DD) <i><code>\[check\_in]</code></i>

## `check_out` (type: `string`):

💡 Exact date (YYYY-MM-DD) <i><code>\[check\_out]</code></i>

## `monthly_start` (type: `string`):

💡 Start date (YYYY-MM-DD) <i><code>\[monthly\_start]</code></i>

## `monthly_length` (type: `integer`):

💡 How many months ? <i><code>\[monthly\_length]</code></i>

## `trip_month` (type: `array`):

💡 Optional months INPUT for FLEXIBLE Trip. <i><code>\[trip\_month]</code></i>

## `adults` (type: `integer`):

💡 Ages 13 year above

## `children` (type: `integer`):

💡 Ages 2-12 year

## `infants` (type: `integer`):

💡 Under 2 year

## `pets` (type: `integer`):

No description

## `min_price` (type: `integer`):

No description

## `max_price` (type: `integer`):

No description

## `discounted` (type: `boolean`):

💡 Discounted Stays

## `instant_book` (type: `boolean`):

💡 Listings you can book without waiting for Host approval

## `amenities.self_checkin` (type: `boolean`):

💡 Easy access to the property once you arrive

## `free_cancel` (type: `boolean`):

💡 Only show stays that offer free cancellation

## `category` (type: `string`):

No description

## `types` (type: `array`):

No description

## `room_types` (type: `array`):

No description

## `species` (type: `array`):

No description

## `bedrooms` (type: `integer`):

💡 Minimum Bedrooms

## `beds` (type: `integer`):

💡 Minimum Beds

## `bathrooms` (type: `integer`):

💡 Minimum Bathrooms

## `home_essential` (type: `array`):

No description

## `home_amenities` (type: `array`):

No description

## `tags` (type: `array`):

No description

## `home_safety` (type: `array`):

No description

## `home_access` (type: `array`):

No description

## `bedroom_amenities` (type: `array`):

No description

## `bathroom_amenities` (type: `array`):

No description

## `equipment_amenities` (type: `array`):

No description

## `home_features` (type: `array`):

No description

## `no_experiment` (type: `boolean`):

No description

## `dev_proxy_config` (type: `object`):

💡 <b>Supported protocol:</b><br><br><b>HTTP(S), SOCKS5</b><br><code>{http|socks5}://{user:pass}@{hostname|ip-address}:port</code><br><br><b>Example</b>: <code>socks5://example.com:9000</code>

## `dev_custom_headers` (type: `array`):

💡 Additional HTTP Headers

## `dev_custom_cookies` (type: `array`):

💡 Additional HTTP Cookies

## `dev_transform_fields` (type: `array`):

💡 <b>Transform the resulting output. Select only needed fields.</b><br><br>For nested object use <b>DOT</b>. For example: <pre>address.streetAddress</pre><br>For nested array use <b>NUMBER</b> <i>(index of array element starting from index=0)</i>. For example: <pre>images.0.url</pre>

## `dev_dataset_name` (type: `string`):

💡 <b>Save results into custom named Dataset, use mask to customize dataset name</b><br><br><code>{ACTOR} = actor name<br>{DATE} = date (YYYYMMDD)<br>{TIME} = time (HHMMSS)</code><br><br>This masks can be used to autogenerate Dataset Name.<br><br>example: <i><code>data-{DATE}</code></i><br>Depending on today date the dataset name will be: <code>data-20230603</code><i><br><br>default: <code>data-{ACTOR}-{DATE}-{TIME}</code></i>

## `dev_dataset_clear` (type: `boolean`):

Clear Dataset before insert/update.

## `dev_no_strip` (type: `boolean`):

💡 Keep/Save empty values <i><code>(NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)</code></i>

## `dev_fileupload` (type: `string`):

💡 Upload your file and copy & paste the URL somewhere.

## Actor input object example

```json
{
  "location": [
    "Bali"
  ],
  "limit": 5
}
```

# Actor output Schema

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

No description

## `extras` (type: `string`):

No description

## `results` (type: `string`):

No description

## `mapViewer` (type: `string`):

No description

# 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 = {
    "location": [
        "Bali"
    ],
    "limit": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("jupri/airbnb").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 = {
    "location": ["Bali"],
    "limit": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("jupri/airbnb").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 '{
  "location": [
    "Bali"
  ],
  "limit": 5
}' |
apify call jupri/airbnb --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Airbnb Explorer",
        "description": "💫  All-in-One Airbnb.com Scraper",
        "version": "0.4",
        "x-build-id": "3YSE0NqPOQxk3pmEN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/jupri~airbnb/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-jupri-airbnb",
                "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/jupri~airbnb/runs": {
            "post": {
                "operationId": "runs-sync-jupri-airbnb",
                "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/jupri~airbnb/run-sync": {
            "post": {
                "operationId": "run-sync-jupri-airbnb",
                "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": {
                    "location": {
                        "title": "❓ Location",
                        "type": "array",
                        "description": "💡 🧭 <code>LOCATION</code>, 🔗 <code>URL</code> or ❓ <code>COMMAND</code>",
                        "items": {
                            "type": "string"
                        }
                    },
                    "example": {
                        "title": "💡 Examples",
                        "enum": [
                            "Bali",
                            "https://www.airbnb.com/s/Bandung/homes",
                            "https://www.airbnb.com/rooms/1378641599696447961",
                            "1378641599696447961",
                            "1378641599696447961/reviews",
                            "https://www.airbnb.com/experiences/269716"
                        ],
                        "type": "string",
                        "description": "💡 <b>Examples:</b> Select one or more examples, then hit <code>START!</code><p>Clear the <b>LOCATION</b> input before running an example.</p> <p>OR, enter your own queries in the <code>LOCATION</code> input.</p>"
                    },
                    "search_mode": {
                        "title": "🔎 Search Mode",
                        "enum": [
                            "hotel",
                            "experience"
                        ],
                        "type": "string",
                        "description": ""
                    },
                    "limit": {
                        "title": "♾️ Limit",
                        "type": "integer",
                        "description": "💡 Number of results (per-query)"
                    },
                    "locale": {
                        "title": "🌐 Locale",
                        "enum": [
                            "en-US",
                            "az-AZ",
                            "id-ID",
                            "bs-BA",
                            "ca-ES",
                            "cs-CZ",
                            "sr-ME",
                            "da-DK",
                            "de-DE",
                            "de-AT",
                            "de-CH",
                            "de-LU",
                            "et-EE",
                            "en-AU",
                            "en-CA",
                            "en-GY",
                            "en-IN",
                            "en-IE",
                            "en-NZ",
                            "en-SG",
                            "en-AE",
                            "en-GB",
                            "es-AR",
                            "es-BZ",
                            "es-BO",
                            "es-CL",
                            "es-CO",
                            "es-CR",
                            "es-EC",
                            "es-SV",
                            "es-ES",
                            "es-US",
                            "es-GT",
                            "es-HN",
                            "es-MX",
                            "es-NI",
                            "es-PA",
                            "es-PY",
                            "es-PE",
                            "es-VE",
                            "fr-BE",
                            "fr-CA",
                            "fr-FR",
                            "fr-CH",
                            "fr-LU",
                            "ga-IE",
                            "hr-US",
                            "xh-ZA",
                            "zu-ZA",
                            "is-IS",
                            "it-IT",
                            "it-CH",
                            "sw-US",
                            "lv-LV",
                            "lt-LT",
                            "hu-HU",
                            "mt-MT",
                            "ms-MY",
                            "nl-BE",
                            "nl-NL",
                            "no-NO",
                            "pl-PL",
                            "pt-BR",
                            "pt-PT",
                            "ro-RO",
                            "sq-AL",
                            "sk-SK",
                            "sl-SI",
                            "sr-RS",
                            "fi-FI",
                            "sv-SE",
                            "tl-PH",
                            "vi-VN",
                            "tr-TR",
                            "el-GR",
                            "bg-BG",
                            "mk-MK",
                            "ru-RU",
                            "uk-UA",
                            "ka-GE",
                            "hy-AM",
                            "he-IL",
                            "ar-US",
                            "hi-IN",
                            "th-TH",
                            "ko-KR",
                            "ja-JP",
                            "zh-US",
                            "zh-TW",
                            "zh-CN",
                            "zh-HK"
                        ],
                        "type": "string",
                        "description": "💡 Output Language"
                    },
                    "currency": {
                        "title": "💱 Currency",
                        "enum": [
                            "ARS",
                            "AWG",
                            "AUD",
                            "BHD",
                            "BBD",
                            "BZD",
                            "BTN",
                            "BAM",
                            "BRL",
                            "BND",
                            "BGN",
                            "CAD",
                            "CLP",
                            "CNY",
                            "COP",
                            "CRC",
                            "HRK",
                            "CZK",
                            "DKK",
                            "AED",
                            "EUR",
                            "FJD",
                            "GYD",
                            "HKD",
                            "HUF",
                            "INR",
                            "IDR",
                            "ILS",
                            "JMD",
                            "JPY",
                            "JOD",
                            "LAK",
                            "HNL",
                            "MOP",
                            "MYR",
                            "MXN",
                            "MAD",
                            "TWD",
                            "NZD",
                            "NOK",
                            "OMR",
                            "PGK",
                            "PEN",
                            "PHP",
                            "PLN",
                            "GBP",
                            "GTQ",
                            "RON",
                            "RUB",
                            "SAR",
                            "SGD",
                            "ZAR",
                            "KRW",
                            "LKR",
                            "SEK",
                            "CHF",
                            "THB",
                            "TTD",
                            "TRY",
                            "UAH",
                            "USD",
                            "UYU",
                            "VND"
                        ],
                        "type": "string",
                        "description": "💡 Output Currency"
                    },
                    "map_viewer": {
                        "title": "Enable",
                        "type": "boolean",
                        "description": ""
                    },
                    "includes.description": {
                        "title": "Description",
                        "type": "boolean",
                        "description": "💡 Long description"
                    },
                    "includes.pricing": {
                        "title": "Pricing",
                        "type": "boolean",
                        "description": "💡 More detailed & accurate pricing"
                    },
                    "includes.amenities": {
                        "title": "Amenities",
                        "type": "boolean",
                        "description": "💡 Grouped amenities"
                    },
                    "includes.highlights": {
                        "title": "Highlights",
                        "type": "boolean",
                        "description": "💡 Hotel Highlights"
                    },
                    "includes.rating": {
                        "title": "Ratings",
                        "type": "boolean",
                        "description": "💡 Ratings details"
                    },
                    "includes.sleeps": {
                        "title": "Sleeps",
                        "type": "boolean",
                        "description": "💡 Sleeping arangements"
                    },
                    "includes.location": {
                        "title": "Location",
                        "type": "boolean",
                        "description": "💡 Surrounding area"
                    },
                    "includes.images": {
                        "title": "Images",
                        "type": "boolean",
                        "description": "💡 Complete gallery"
                    },
                    "includes.host": {
                        "title": "Host",
                        "type": "boolean",
                        "description": "💡 Meet your host"
                    },
                    "includes.calendar": {
                        "title": "Calendar",
                        "type": "integer",
                        "description": "💡 Availability Calendar <code><i>(1-12 Months, starting from current Month)</i></code>"
                    },
                    "includes.reviews": {
                        "title": "Reviews Count",
                        "type": "integer",
                        "description": "💡 Number of reviews to fetch <code><i>(max=50). To filter, use REVIEWS filters below</i></code>."
                    },
                    "reviews_search": {
                        "title": "Reviews Search",
                        "type": "string",
                        "description": "💡 Search within reviews"
                    },
                    "reviews_sort": {
                        "title": "Reviews Sorting",
                        "enum": [
                            "BEST_QUALITY",
                            "MOST_RECENT",
                            "RATING_DESC",
                            "RATING_ASC"
                        ],
                        "type": "string",
                        "description": "💡 Reviews sorting"
                    },
                    "superhost": {
                        "title": "Superhost",
                        "type": "boolean",
                        "description": "💡 Stay with recognized Hosts"
                    },
                    "airbnb_plus": {
                        "title": "Airbnb Plus",
                        "type": "boolean",
                        "description": "💡 A selection of places to stay verified for quality and design"
                    },
                    "airbnb_luxe": {
                        "title": "Airbnb Luxe",
                        "type": "boolean",
                        "description": "💡 Handpicked luxury homes with personally arranged services"
                    },
                    "guest_fav": {
                        "title": "Guest Favorite",
                        "type": "boolean",
                        "description": "💡 The most loved homes on Airbnb, according to guests"
                    },
                    "work_trip": {
                        "title": "Work Trip",
                        "type": "boolean",
                        "description": "💡 People traveling for work have rated these places highly"
                    },
                    "reviews_count": {
                        "title": "Reviews Count",
                        "type": "integer",
                        "description": "💡 Minimum numbers of visible reviews"
                    },
                    "host_id": {
                        "title": "🤡 Host ID",
                        "type": "string",
                        "description": ""
                    },
                    "host_languages": {
                        "title": "📢 Host Language",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "zh",
                                "en",
                                "fr",
                                "de",
                                "it",
                                "ja",
                                "ko",
                                "pt",
                                "ru",
                                "es",
                                "ar",
                                "ca",
                                "hr",
                                "cs",
                                "da",
                                "nl",
                                "fi",
                                "el",
                                "he",
                                "hi",
                                "hu",
                                "is",
                                "id",
                                "ms",
                                "no",
                                "pl",
                                "sv",
                                "th",
                                "tr",
                                "af",
                                "sq",
                                "hy",
                                "az",
                                "eu",
                                "be",
                                "bn",
                                "bs",
                                "bg",
                                "my",
                                "et",
                                "fil",
                                "gl",
                                "ka",
                                "gu",
                                "ht",
                                "ga",
                                "kn",
                                "km",
                                "ky",
                                "lo",
                                "lv",
                                "lt",
                                "mk",
                                "mt",
                                "fa",
                                "pa",
                                "ro",
                                "sr",
                                "sk",
                                "sl",
                                "sw",
                                "tl",
                                "ta",
                                "te",
                                "uk",
                                "ur",
                                "vi",
                                "xh",
                                "zu",
                                "sgn"
                            ],
                            "enumTitles": [
                                "Chinese (Simplified)",
                                "English",
                                "French",
                                "German",
                                "Italian",
                                "Japanese",
                                "Korean",
                                "Portuguese",
                                "Russian",
                                "Spanish",
                                "Arabic",
                                "Catalan",
                                "Croatian",
                                "Czech",
                                "Danish",
                                "Dutch",
                                "Finnish",
                                "Greek",
                                "Hebrew",
                                "Hindi",
                                "Hungarian",
                                "Icelandic",
                                "Indonesian",
                                "Malay",
                                "Norwegian",
                                "Polish",
                                "Swedish",
                                "Thai",
                                "Turkish",
                                "Afrikaans",
                                "Albanian",
                                "Armenian",
                                "Azerbaijani",
                                "Basque",
                                "Belarusian",
                                "Bengali",
                                "Bosnian",
                                "Bulgarian",
                                "Burmese",
                                "Estonian",
                                "Filipino",
                                "Galician",
                                "Georgian",
                                "Gujarati",
                                "Haitian",
                                "Irish",
                                "Kannada",
                                "Khmer",
                                "Kyrgyz",
                                "Lao",
                                "Latvian",
                                "Lithuanian",
                                "Macedonian",
                                "Maltese",
                                "Persian",
                                "Punjabi",
                                "Romanian",
                                "Serbian",
                                "Slovakian",
                                "Slovenian",
                                "Swahili",
                                "Tagalog",
                                "Tamil",
                                "Telugu",
                                "Ukrainian",
                                "Urdu",
                                "Vietnamese",
                                "Xhosa",
                                "Zulu",
                                "Sign"
                            ]
                        }
                    },
                    "experience_types": {
                        "title": "Experience type",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "architecture",
                                "art",
                                "beauty",
                                "cooking",
                                "cultural",
                                "dining",
                                "flying",
                                "food",
                                "galleries",
                                "landmarks",
                                "museums",
                                "outdoors",
                                "performances",
                                "shopping",
                                "tastings",
                                "water",
                                "wellness",
                                "wildlife",
                                "workouts"
                            ],
                            "enumTitles": [
                                "Architecture",
                                "Art",
                                "Beauty",
                                "Cooking",
                                "Cultural tours",
                                "Dining",
                                "Flying",
                                "Food tours",
                                "Galleries",
                                "Landmarks",
                                "Museums",
                                "Outdoors",
                                "Performances",
                                "Shopping & fashion",
                                "Tastings",
                                "Water sports",
                                "Wellness",
                                "Wildlife",
                                "Workouts"
                            ]
                        }
                    },
                    "experience_traveler": {
                        "title": "Traveler type",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "kids",
                                "groups",
                                "solo",
                                "datenight"
                            ],
                            "enumTitles": [
                                "Kids",
                                "Big Groups",
                                "Solo Travelers",
                                "Date Night"
                            ]
                        }
                    },
                    "experience_duration_min": {
                        "title": "Duration (minutes)",
                        "type": "integer",
                        "description": ""
                    },
                    "experience_duration_max": {
                        "title": "",
                        "type": "integer",
                        "description": ""
                    },
                    "experience_time": {
                        "title": "Time of day",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "morning",
                                "afternoon",
                                "evening"
                            ],
                            "enumTitles": [
                                "Morning",
                                "Afternoon",
                                "Evening"
                            ]
                        }
                    },
                    "experience_languages": {
                        "title": "Language offered",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "english",
                                "french",
                                "german",
                                "japanese",
                                "italian",
                                "russian",
                                "spanish",
                                "chinese",
                                "arabic",
                                "hindi",
                                "portuguese",
                                "turkish",
                                "indonesian",
                                "dutch",
                                "korean",
                                "bengali",
                                "thai",
                                "punjabi",
                                "greek",
                                "sign",
                                "hebrew",
                                "polish",
                                "malay",
                                "tagalog",
                                "danish",
                                "swedish",
                                "norwegian",
                                "finnish",
                                "czech",
                                "hungarian",
                                "ukrainian"
                            ],
                            "enumTitles": [
                                "English",
                                "French",
                                "German",
                                "Japanese",
                                "Italian",
                                "Russian",
                                "Spanish",
                                "Chinese (Simplified)",
                                "Arabic",
                                "Hindi",
                                "Portuguese",
                                "Turkish",
                                "Indonesian",
                                "Dutch",
                                "Korean",
                                "Bengali",
                                "Thai",
                                "Punjabi",
                                "Greek",
                                "Sign",
                                "Hebrew",
                                "Polish",
                                "Malay",
                                "Tagalog",
                                "Danish",
                                "Swedish",
                                "Norwegian",
                                "Finnish",
                                "Czech",
                                "Hungarian",
                                "Ukrainian"
                            ]
                        }
                    },
                    "trip_length": {
                        "title": "📅 Stay Length",
                        "enum": [
                            "date",
                            "date-1",
                            "date-2",
                            "date-3",
                            "date-7",
                            "monthly",
                            "weekend",
                            "one_week",
                            "one_month"
                        ],
                        "type": "string",
                        "description": ""
                    },
                    "check_in": {
                        "title": "📅 Check-in",
                        "type": "string",
                        "description": "💡 Exact date (YYYY-MM-DD) <i><code>[check_in]</code></i>"
                    },
                    "check_out": {
                        "title": "📅 Check-out",
                        "type": "string",
                        "description": "💡 Exact date (YYYY-MM-DD) <i><code>[check_out]</code></i>"
                    },
                    "monthly_start": {
                        "title": "🌕 Monthly Start Date",
                        "type": "string",
                        "description": "💡 Start date (YYYY-MM-DD) <i><code>[monthly_start]</code></i>"
                    },
                    "monthly_length": {
                        "title": "🌕 Monthly Length",
                        "type": "integer",
                        "description": "💡 How many months ? <i><code>[monthly_length]</code></i>"
                    },
                    "trip_month": {
                        "title": "⌛ Flexible Months",
                        "type": "array",
                        "description": "💡 Optional months INPUT for FLEXIBLE Trip. <i><code>[trip_month]</code></i>",
                        "items": {
                            "type": "string",
                            "enum": [
                                "january",
                                "february",
                                "march",
                                "april",
                                "may",
                                "june",
                                "july",
                                "august",
                                "september",
                                "october",
                                "november",
                                "december"
                            ],
                            "enumTitles": [
                                "January",
                                "February",
                                "March",
                                "April",
                                "May",
                                "June",
                                "July",
                                "August",
                                "September",
                                "October",
                                "November",
                                "December"
                            ]
                        }
                    },
                    "adults": {
                        "title": "Adults",
                        "type": "integer",
                        "description": "💡 Ages 13 year above"
                    },
                    "children": {
                        "title": "Children",
                        "type": "integer",
                        "description": "💡 Ages 2-12 year"
                    },
                    "infants": {
                        "title": "Infants",
                        "type": "integer",
                        "description": "💡 Under 2 year"
                    },
                    "pets": {
                        "title": "Pets",
                        "type": "integer",
                        "description": ""
                    },
                    "min_price": {
                        "title": "Price Range",
                        "type": "integer",
                        "description": ""
                    },
                    "max_price": {
                        "title": "",
                        "type": "integer",
                        "description": ""
                    },
                    "discounted": {
                        "title": "Discounted",
                        "type": "boolean",
                        "description": "💡 Discounted Stays"
                    },
                    "instant_book": {
                        "title": "Instant Book",
                        "type": "boolean",
                        "description": "💡 Listings you can book without waiting for Host approval"
                    },
                    "amenities.self_checkin": {
                        "title": "Self Check-In",
                        "type": "boolean",
                        "description": "💡 Easy access to the property once you arrive"
                    },
                    "free_cancel": {
                        "title": "Free Cancellation",
                        "type": "boolean",
                        "description": "💡 Only show stays that offer free cancellation"
                    },
                    "category": {
                        "title": "🏨 Category",
                        "enum": [
                            "8148",
                            "5708",
                            "677",
                            "8536",
                            "8534",
                            "8159",
                            "7769",
                            "789",
                            "8538",
                            "1073",
                            "5348",
                            "8166",
                            "634",
                            "8232",
                            "8047",
                            "670",
                            "5731",
                            "8157",
                            "4104",
                            "8543",
                            "8227",
                            "8256",
                            "8099",
                            "8528",
                            "8173",
                            "8174",
                            "8175",
                            "8525",
                            "8521",
                            "8653",
                            "8524",
                            "8176",
                            "8851",
                            "675",
                            "8144",
                            "8522",
                            "8253",
                            "8115",
                            "8230",
                            "8102",
                            "8662",
                            "8225",
                            "8226",
                            "8658",
                            "8255",
                            "8678",
                            "8228",
                            "8650",
                            "5366",
                            "7765",
                            "8526",
                            "8186",
                            "8535",
                            "8657",
                            "8187",
                            "8188",
                            "8661",
                            "5635",
                            "8229",
                            "8101",
                            "8043",
                            "8192"
                        ],
                        "type": "string",
                        "description": ""
                    },
                    "types": {
                        "title": "Property Type",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3",
                                "4"
                            ],
                            "enumTitles": [
                                "House",
                                "Guest House",
                                "Apartment",
                                "Hotel"
                            ]
                        }
                    },
                    "room_types": {
                        "title": "Type of Place",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "entire-home",
                                "private-room",
                                "shared-room"
                            ],
                            "enumTitles": [
                                "Entire Place 💡 A place all to yourself",
                                "Private Room 💡 Your own room in a home or a hotel, plus some shared common spaces",
                                "Shared Room 💡 A sleeping space and common areas that may be shared with others"
                            ]
                        }
                    },
                    "species": {
                        "title": "Unique Stays",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "56",
                                "1",
                                "57",
                                "3",
                                "8",
                                "43",
                                "38",
                                "70",
                                "4",
                                "32",
                                "58",
                                "54",
                                "5",
                                "18",
                                "22",
                                "59",
                                "37",
                                "60",
                                "61",
                                "62",
                                "17",
                                "9",
                                "23",
                                "63",
                                "53",
                                "40",
                                "51",
                                "75",
                                "45",
                                "42",
                                "2",
                                "64",
                                "24",
                                "12",
                                "52",
                                "19",
                                "71",
                                "10",
                                "35",
                                "48",
                                "44",
                                "50",
                                "28",
                                "55",
                                "74",
                                "76",
                                "65",
                                "78",
                                "49",
                                "47",
                                "66",
                                "79",
                                "34",
                                "46",
                                "67",
                                "16",
                                "77",
                                "36",
                                "25",
                                "6",
                                "68",
                                "39",
                                "11",
                                "69",
                                "15"
                            ],
                            "enumTitles": [
                                "Aparthotel",
                                "Apartment",
                                "Barn",
                                "Bed and breakfast",
                                "Boat",
                                "Boutique hotel",
                                "Bungalow",
                                "Bus",
                                "Cabin",
                                "Camper/RV",
                                "Campsite",
                                "Casa particular (Cuba)",
                                "Castle",
                                "Cave",
                                "Chalet",
                                "Condohotel",
                                "Condominium",
                                "Cottage",
                                "Cycladic house (Greece)",
                                "Dammuso (Italy)",
                                "Dome house",
                                "Dorm",
                                "Earth house",
                                "Farm stay",
                                "Guest suite",
                                "Guesthouse",
                                "Heritage hotel (India)",
                                "Holiday park",
                                "Hostel",
                                "Hotel",
                                "House",
                                "Houseboat",
                                "Hut",
                                "Igloo",
                                "In-law",
                                "Island",
                                "Kezhan (China)",
                                "Lighthouse",
                                "Loft",
                                "Minsu (Taiwan)",
                                "Nature lodge",
                                "Pension (South Korea)",
                                "Plane",
                                "Pousada (Portugal)",
                                "Ranch",
                                "Religious building",
                                "Resort",
                                "Riad",
                                "Ryokan (Japan)",
                                "Serviced apartment",
                                "Shepherd's hut (U.K., France)",
                                "Shipping container",
                                "Tent",
                                "Timeshare",
                                "Tiny house",
                                "Tipi",
                                "Tower",
                                "Townhouse",
                                "Train",
                                "Treehouse",
                                "Trullo (Italy)",
                                "Vacation home",
                                "Villa",
                                "Windmill",
                                "Yurt"
                            ]
                        }
                    },
                    "bedrooms": {
                        "title": "Bedrooms",
                        "type": "integer",
                        "description": "💡 Minimum Bedrooms"
                    },
                    "beds": {
                        "title": "Beds",
                        "type": "integer",
                        "description": "💡 Minimum Beds"
                    },
                    "bathrooms": {
                        "title": "Bathrooms",
                        "type": "integer",
                        "description": "💡 Minimum Bathrooms"
                    },
                    "home_essential": {
                        "title": "Essentials",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "wifi",
                                "kitchen",
                                "washer",
                                "dryer",
                                "ac",
                                "heating",
                                "workspace",
                                "tv",
                                "hair-dryer",
                                "iron"
                            ],
                            "enumTitles": [
                                "Wifi",
                                "Kitchen",
                                "Washer",
                                "Dryer",
                                "Air conditioning",
                                "Heating",
                                "Dedicated workspace",
                                "TV",
                                "Hair dryer",
                                "Iron"
                            ]
                        }
                    },
                    "home_amenities": {
                        "title": "Amenities",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "pool",
                                "hot-tub",
                                "free-parking",
                                "ev-charger",
                                "crib",
                                "gym",
                                "bbq-grill",
                                "breakfast",
                                "fireplace",
                                "smoking"
                            ],
                            "enumTitles": [
                                "Pool",
                                "Hot tub",
                                "Free parking on premises",
                                "EV charger",
                                "Crib",
                                "Gym",
                                "BBQ grill",
                                "Breakfast",
                                "Indoor fireplace",
                                "Smoking allowed"
                            ]
                        }
                    },
                    "tags": {
                        "title": "Location",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "789",
                                "686"
                            ],
                            "enumTitles": [
                                "Beachfront",
                                "Waterfront"
                            ]
                        }
                    },
                    "home_safety": {
                        "title": "Safety",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "smoke-alarm",
                                "co-alarm"
                            ],
                            "enumTitles": [
                                "Smoke alarm",
                                "Carbon monoxide alarm"
                            ]
                        }
                    },
                    "home_access": {
                        "title": "♿ Guest entrance and parking",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "110",
                                "111",
                                "112",
                                "114"
                            ],
                            "enumTitles": [
                                "Step-free guest entrance",
                                "Guest entrance wider than 32 inches",
                                "Step-free path to the guest entrance",
                                "Accessible parking spot"
                            ]
                        }
                    },
                    "bedroom_amenities": {
                        "title": "♿ Bedroom Accessibility",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "115",
                                "116"
                            ],
                            "enumTitles": [
                                "Step-free bedroom access",
                                "Bedroom entrance wider than 32 inches"
                            ]
                        }
                    },
                    "bathroom_amenities": {
                        "title": "♿ Bathroom Accessibility",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "120",
                                "121",
                                "294",
                                "295",
                                "296",
                                "297"
                            ],
                            "enumTitles": [
                                "Step-free bathroom access",
                                "Bathroom entrance wider than 32 inches",
                                "Shower grab bar",
                                "Toilet grab bar",
                                "Step-free shower",
                                "Shower or bath chair"
                            ]
                        }
                    },
                    "equipment_amenities": {
                        "title": "Adaptive equipment",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "291"
                            ],
                            "enumTitles": [
                                "Ceiling or mobile hoist"
                            ]
                        }
                    },
                    "home_features": {
                        "title": "💎 Other Features",
                        "type": "array",
                        "description": "",
                        "items": {
                            "type": "string",
                            "enum": [
                                "43",
                                "655",
                                "200",
                                "118",
                                "125",
                                "5",
                                "369",
                                "138",
                                "633",
                                "231",
                                "166",
                                "179",
                                "210",
                                "267",
                                "651",
                                "370",
                                "371",
                                "372",
                                "373",
                                "359",
                                "99",
                                "340",
                                "339",
                                "342",
                                "62",
                                "376",
                                "59",
                                "70",
                                "377",
                                "378",
                                "625",
                                "181",
                                "379",
                                "188",
                                "626",
                                "605",
                                "81",
                                "298",
                                "380",
                                "293",
                                "61",
                                "123",
                                "381",
                                "674",
                                "382",
                                "176",
                                "383",
                                "102",
                                "384",
                                "385",
                                "386",
                                "155",
                                "196",
                                "134",
                                "85",
                                "658",
                                "292",
                                "201",
                                "167",
                                "388",
                                "389",
                                "322",
                                "305",
                                "391",
                                "390",
                                "392",
                                "344",
                                "664",
                                "393",
                                "79",
                                "177",
                                "394",
                                "395",
                                "396",
                                "397",
                                "398",
                                "629",
                                "399",
                                "684",
                                "400",
                                "632",
                                "16",
                                "233",
                                "234",
                                "186",
                                "55",
                                "401",
                                "705",
                                "28",
                                "405",
                                "2",
                                "617",
                                "173",
                                "404",
                                "36",
                                "402",
                                "403",
                                "642",
                                "19",
                                "139",
                                "406",
                                "291",
                                "140",
                                "407",
                                "63",
                                "215",
                                "217",
                                "703",
                                "408",
                                "411",
                                "243",
                                "66",
                                "74",
                                "412",
                                "107",
                                "665",
                                "204",
                                "666",
                                "671",
                                "415",
                                "302",
                                "301",
                                "90",
                                "221",
                                "644",
                                "657",
                                "416",
                                "417",
                                "264",
                                "94",
                                "418",
                                "419",
                                "420",
                                "599",
                                "421",
                                "71",
                                "206",
                                "423",
                                "430",
                                "431",
                                "432",
                                "152",
                                "300",
                                "424",
                                "425",
                                "426",
                                "249",
                                "427",
                                "311",
                                "149",
                                "358",
                                "428",
                                "236",
                                "114",
                                "429",
                                "93",
                                "92",
                                "653",
                                "433",
                                "18",
                                "14",
                                "263",
                                "148",
                                "706",
                                "212",
                                "34",
                                "667",
                                "157",
                                "307",
                                "97",
                                "435",
                                "288",
                                "21",
                                "275",
                                "333",
                                "235",
                                "40",
                                "87",
                                "436",
                                "437",
                                "227",
                                "438",
                                "86",
                                "117",
                                "31",
                                "272",
                                "84",
                                "39",
                                "219",
                                "69",
                                "119",
                                "37",
                                "439",
                                "122",
                                "112",
                                "440",
                                "441",
                                "620",
                                "313",
                                "314",
                                "442",
                                "237",
                                "207",
                                "9",
                                "23",
                                "444",
                                "308",
                                "615",
                                "630",
                                "285",
                                "75",
                                "446",
                                "447",
                                "349",
                                "22",
                                "255",
                                "101",
                                "448",
                                "449",
                                "450",
                                "187",
                                "191",
                                "190",
                                "183",
                                "220",
                                "368",
                                "198",
                                "451",
                                "197",
                                "453",
                                "195",
                                "332",
                                "108",
                                "454",
                                "15",
                                "266",
                                "45",
                                "455",
                                "225",
                                "153",
                                "649",
                                "82",
                                "80",
                                "136",
                                "44",
                                "279",
                                "456",
                                "457",
                                "143",
                                "458",
                                "254",
                                "168",
                                "30",
                                "192",
                                "64",
                                "271",
                                "685",
                                "459",
                                "460",
                                "461",
                                "129",
                                "25",
                                "77",
                                "137",
                                "645",
                                "650",
                                "637",
                                "462",
                                "329",
                                "325",
                                "330",
                                "367",
                                "27",
                                "464",
                                "240",
                                "3",
                                "46",
                                "304",
                                "26",
                                "171",
                                "165",
                                "471",
                                "320",
                                "472",
                                "345",
                                "474",
                                "172",
                                "475",
                                "476",
                                "53",
                                "361",
                                "477",
                                "8",
                                "353",
                                "145",
                                "133",
                                "478",
                                "242",
                                "479",
                                "47",
                                "253",
                                "663",
                                "638",
                                "624",
                                "480",
                                "687",
                                "357",
                                "631",
                                "42",
                                "54",
                                "104",
                                "147",
                                "482",
                                "103",
                                "483",
                                "496",
                                "484",
                                "324",
                                "485",
                                "486",
                                "487",
                                "489",
                                "226",
                                "490",
                                "491",
                                "270",
                                "89",
                                "146",
                                "492",
                                "203",
                                "289",
                                "493",
                                "494",
                                "211",
                                "495",
                                "154",
                                "335",
                                "284",
                                "497",
                                "498",
                                "273",
                                "499",
                                "334",
                                "656",
                                "216",
                                "500",
                                "501",
                                "265",
                                "502",
                                "621",
                                "503",
                                "127",
                                "120",
                                "115",
                                "110",
                                "654",
                                "601",
                                "238",
                                "131",
                                "20",
                                "504",
                                "184",
                                "282",
                                "280",
                                "60",
                                "95",
                                "72",
                                "505",
                                "10",
                                "287",
                                "506",
                                "507",
                                "508",
                                "600",
                                "509",
                                "510",
                                "100",
                                "182",
                                "24",
                                "511",
                                "12",
                                "17",
                                "336",
                                "347",
                                "513",
                                "269",
                                "514",
                                "515",
                                "516",
                                "363",
                                "517",
                                "364",
                                "362",
                                "360",
                                "241",
                                "88",
                                "518",
                                "208",
                                "7",
                                "519",
                                "278",
                                "244",
                                "520",
                                "521",
                                "250",
                                "246",
                                "245",
                                "290",
                                "316",
                                "142",
                                "522",
                                "331",
                                "523",
                                "524",
                                "222",
                                "78",
                                "57",
                                "256",
                                "260",
                                "56",
                                "258",
                                "525",
                                "189",
                                "218",
                                "202",
                                "603",
                                "164",
                                "150",
                                "526",
                                "527",
                                "91",
                                "528",
                                "529",
                                "315",
                                "530",
                                "531",
                                "124",
                                "532",
                                "616",
                                "73",
                                "232",
                                "38",
                                "534",
                                "535",
                                "169",
                                "537",
                                "538",
                                "539",
                                "540",
                                "542",
                                "541",
                                "223",
                                "543",
                                "229",
                                "230",
                                "544",
                                "51",
                                "636",
                                "41",
                                "257",
                                "261",
                                "259",
                                "163",
                                "611",
                                "294",
                                "297",
                                "545",
                                "98",
                                "546",
                                "547",
                                "548",
                                "135",
                                "549",
                                "299",
                                "319",
                                "151",
                                "356",
                                "550",
                                "551",
                                "52",
                                "35",
                                "11",
                                "552",
                                "628",
                                "553",
                                "178",
                                "281",
                                "209",
                                "554",
                                "555",
                                "185",
                                "556",
                                "557",
                                "352",
                                "558",
                                "639",
                                "559",
                                "604",
                                "193",
                                "561",
                                "65",
                                "162",
                                "158",
                                "160",
                                "159",
                                "161",
                                "175",
                                "268",
                                "562",
                                "262",
                                "224",
                                "296",
                                "96",
                                "354",
                                "564",
                                "32",
                                "565",
                                "566",
                                "248",
                                "174",
                                "567",
                                "247",
                                "239",
                                "568",
                                "58",
                                "1",
                                "602",
                                "68",
                                "569",
                                "570",
                                "350",
                                "346",
                                "571",
                                "214",
                                "180",
                                "686",
                                "652",
                                "251",
                                "309",
                                "669",
                                "295",
                                "83",
                                "670",
                                "277",
                                "610",
                                "573",
                                "627",
                                "661",
                                "574",
                                "576",
                                "640",
                                "199",
                                "213",
                                "635",
                                "577",
                                "355",
                                "578",
                                "579",
                                "580",
                                "581",
                                "144",
                                "582",
                                "283",
                                "276",
                                "33",
                                "13",
                                "326",
                                "328",
                                "327",
                                "583",
                                "132",
                                "584",
                                "113",
                                "623",
                                "585",
                                "366",
                                "6",
                                "126",
                                "121",
                                "116",
                                "111",
                                "128",
                                "109",
                                "4",
                                "67",
                                "170",
                                "586",
                                "587",
                                "228",
                                "588",
                                "274",
                                "672",
                                "589",
                                "590",
                                "591",
                                "592",
                                "593",
                                "594",
                                "595",
                                "596",
                                "597",
                                "598",
                                "675",
                                "680",
                                "678",
                                "681",
                                "679",
                                "466",
                                "469",
                                "683",
                                "677",
                                "682",
                                "106",
                                "676"
                            ],
                            "enumTitles": [
                                "24-hour check-in",
                                "24-hour security guard",
                                "ATV",
                                "Accessible-height bed",
                                "Accessible-height toilet",
                                "Air conditioning",
                                "Air hockey table",
                                "Air purifier",
                                "Airport shuttle",
                                "Alarm system",
                                "Alfresco bathtub",
                                "Alfresco dining",
                                "Alfresco shower",
                                "Amazon Echo",
                                "Antibacterial solutions",
                                "Apple TV",
                                "Arcade machine",
                                "Art gallery",
                                "Art studio",
                                "Arts and Crafts",
                                "BBQ grill",
                                "Baby Pool Safety Fence",
                                "Baby Safety Gate",
                                "Baby Stroller",
                                "Baby bath",
                                "Baby equipment",
                                "Baby monitor",
                                "Babysitter recommendations",
                                "Backgammon",
                                "Badminton field",
                                "Baking sheet",
                                "Balcony",
                                "Banquet hall",
                                "Bar",
                                "Barbecue utensils",
                                "Basketball court",
                                "Bath towel",
                                "Bathrobe",
                                "Bathrobes",
                                "Bathroom essentials",
                                "Bathtub",
                                "Bathtub with bath chair",
                                "Beach",
                                "Beach access",
                                "Beach bar",
                                "Beach chairs",
                                "Beach club",
                                "Beach essentials",
                                "Beach house",
                                "Beach towels",
                                "Beach umbrella",
                                "Beach view",
                                "Beach volleyball",
                                "Beachfront",
                                "Bed linens",
                                "Bed sheets",
                                "Bedroom comforts",
                                "Bicycle",
                                "Bidet",
                                "Bike storage",
                                "Binoculars",
                                "Blender",
                                "Blinds",
                                "Blu-Ray player",
                                "Bluetooth speaker",
                                "Board games",
                                "Boat",
                                "Boat slip",
                                "Bocce ball court",
                                "Body soap",
                                "Boogie boards",
                                "Books",
                                "Booster seat",
                                "Boot dryers",
                                "Bose sound system",
                                "Bose stereo",
                                "Bottled water",
                                "Boutique",
                                "Bowling alley",
                                "Boxing ring",
                                "Bread maker",
                                "Breakfast",
                                "Breakfast bar",
                                "Breakfast table",
                                "Brick oven",
                                "Building staff",
                                "Business center",
                                "Buttler",
                                "Buzzer/wireless intercom",
                                "CD player",
                                "Cable TV",
                                "Can provide invoice",
                                "Canoe",
                                "Car seat",
                                "Carbon monoxide alarm",
                                "Card room",
                                "Card table",
                                "Casino",
                                "Cats",
                                "Ceiling fan",
                                "Ceiling fans",
                                "Ceiling hoist",
                                "Central air conditioning",
                                "Champagne bar",
                                "Changing table",
                                "Chapel",
                                "Charcoal barbeque",
                                "Chef",
                                "Chef's kitchen",
                                "Children's toys",
                                "Childrens pool",
                                "Children’s books and toys",
                                "Children’s dinnerware",
                                "Cigar room",
                                "Cleaning before checkout",
                                "Cleaning products",
                                "Climbing wall",
                                "Clothes rack",
                                "Clothing storage",
                                "Coffee",
                                "Coffee Beans",
                                "Coffee Grinder",
                                "Coffee maker",
                                "Computer",
                                "Concierge",
                                "Conditioner",
                                "Conference center",
                                "Conference room",
                                "Convection oven",
                                "Cooking basics",
                                "Copier",
                                "Cordless phone",
                                "Courtyard",
                                "Covered parking",
                                "Cradle",
                                "Crib",
                                "Croquet",
                                "Cross trainer",
                                "DJ booth",
                                "DJ platform",
                                "DJ turntables",
                                "DVD player",
                                "Daily Newspaper",
                                "Dance floor",
                                "Dance room",
                                "Darts",
                                "Day bed",
                                "Decorative fireplace",
                                "Deep Fryer",
                                "Desk",
                                "Device Chargers",
                                "Dining area",
                                "Dining table",
                                "Disabled parking spot",
                                "Discotheque",
                                "Dishes and silverware",
                                "Dishwasher",
                                "Disposable gloves",
                                "Dock",
                                "Dogs",
                                "Doorman",
                                "Double oven",
                                "Dressing area",
                                "Driver",
                                "Driveway parking",
                                "Dryer",
                                "Drying rack for clothing",
                                "Dual vanity",
                                "Dumbwaiter",
                                "EV charger",
                                "Electric blinds",
                                "Electric profiling bed",
                                "Elevator",
                                "En suite bathroom",
                                "Entertainment System",
                                "Espresso machine",
                                "Essentials",
                                "Ethernet connection",
                                "Exercise balls",
                                "Exercise bike",
                                "Exercise equipment",
                                "Exercise mat",
                                "Extra pillows and blankets",
                                "Extra space around bed",
                                "Family/kid friendly",
                                "Fax machine",
                                "Feminine hygiene products",
                                "Fire extinguisher",
                                "Fire pit",
                                "Fireplace guards",
                                "Firm mattress",
                                "First aid kit",
                                "Fishing boat",
                                "Fixed grab bars for shower, toilet",
                                "Flat path to guest entrance",
                                "Flattop grill",
                                "Floor cooling",
                                "Floor-to-ceiling window",
                                "Food Mixer",
                                "Food Processor",
                                "Foosball table",
                                "Formal dining area",
                                "Fountain",
                                "Free parking on premises",
                                "Free street parking",
                                "Free weights",
                                "Freezer",
                                "Front desk",
                                "Fruit",
                                "Full kitchen",
                                "Game console",
                                "Game room",
                                "Game table",
                                "Games",
                                "Garage parking",
                                "Garden",
                                "Garden or backyard",
                                "Gas burning stove",
                                "Gas fireplace",
                                "Gas grill",
                                "Gas oven",
                                "Gated community",
                                "Gated property",
                                "Gazebo",
                                "Generator",
                                "Golf",
                                "Golf cart",
                                "Golf course access",
                                "Golf simulator",
                                "Grass tennis court",
                                "Greenhouse",
                                "Grill",
                                "Ground floor access",
                                "Guesthouse",
                                "Gym",
                                "HBO GO",
                                "Hair dryer",
                                "Hair salon",
                                "Hammam",
                                "Hammock",
                                "Hand Sanitiser",
                                "Hand or paper towel",
                                "Hand soap",
                                "Handheld shower head",
                                "Hangers",
                                "Heat lamps",
                                "Heated boot rack",
                                "Heated floor",
                                "Heated floors",
                                "Heated infinity pool",
                                "Heated pool",
                                "Heated towel rack",
                                "Heating",
                                "Helipad",
                                "High chair",
                                "High-resolution computer monitor",
                                "Hockey rink",
                                "Home theater",
                                "Horseshoes",
                                "Hospital",
                                "Host greets you",
                                "Hot tub",
                                "Hot water",
                                "Hot water kettle",
                                "House bikes",
                                "Household Disinfectant",
                                "Housekeeping",
                                "Humidifier",
                                "Ice Cooler",
                                "Ice Cream Maker",
                                "Ice machine",
                                "Indoor Pool",
                                "Indoor fireplace",
                                "Induction cooker",
                                "Infinity pool",
                                "Internet",
                                "Iron",
                                "Ironing board",
                                "Jacuzzi tub",
                                "Jet skis",
                                "Jetted tub",
                                "Jogging track",
                                "Juicer",
                                "Jukebox",
                                "Jungle Gym",
                                "Karaoke machine",
                                "Kayak",
                                "Kayaks",
                                "Keurig coffee machine",
                                "Keypad",
                                "Kids TV Room",
                                "Kids' club",
                                "Kitchen",
                                "Kitchen Appliances",
                                "Kitchenette",
                                "Lake access",
                                "Lanai",
                                "Lap pool",
                                "Laptop",
                                "Laptop-friendly workspace",
                                "Large mirror",
                                "Laundromat nearby",
                                "Laundry services",
                                "Legends of the Three Kingdoms",
                                "Library",
                                "Life size games",
                                "Lighting",
                                "Liquor",
                                "Lock on bedroom door",
                                "Lockbox",
                                "Long term stays allowed",
                                "Lounge area",
                                "Lounge chairs",
                                "Luggage dropoff allowed",
                                "Luggage storage",
                                "MP3 player",
                                "Mahjong table",
                                "Margarita Machine",
                                "Massage bale",
                                "Massage bed",
                                "Massage chair",
                                "Massage room",
                                "Massage table",
                                "Media room",
                                "Meditation room",
                                "Memory foam mattress",
                                "Microwave",
                                "Mini fridge",
                                "Minibar",
                                "Misting system",
                                "Mobile hoist",
                                "Monitor",
                                "Mosquito misting system",
                                "Mosquito net",
                                "Mosquito trap",
                                "Mountain view",
                                "Movie Collection",
                                "Mudroom",
                                "Multi-jet shower",
                                "Multi-level pool",
                                "Murphy bed",
                                "Music room",
                                "Music system",
                                "Natural gas alarm",
                                "Natural gas barbeque",
                                "Nespresso machine",
                                "Nest thermometer",
                                "Netflix",
                                "Nightclub",
                                "Nintendo Switch",
                                "Nintendo Wii",
                                "No stairs or steps to enter",
                                "No stairs or steps to enter",
                                "No stairs or steps to enter",
                                "No stairs or steps to enter",
                                "Non-slip mat",
                                "Office",
                                "Olympic size pool",
                                "Other",
                                "Other pets",
                                "Outdoor adapter",
                                "Outdoor kitchen",
                                "Outdoor parking",
                                "Outdoor seating",
                                "Outlet covers",
                                "Oven",
                                "Pack ’n Play/travel crib",
                                "Paddle boats",
                                "Paid parking off premises",
                                "Paid parking on premises",
                                "Palapa",
                                "Pantry",
                                "Parasols",
                                "Parking",
                                "Party lighting",
                                "Patio",
                                "Patio or balcony",
                                "Pergola",
                                "Permit parking",
                                "Petanque court",
                                "Pets allowed",
                                "Pets live on this property",
                                "Phone",
                                "Piano",
                                "Pillow menu",
                                "Pillow-top mattress",
                                "Pinball machine",
                                "Ping pong table",
                                "Pizza oven",
                                "Play Room",
                                "PlayStation",
                                "Playground",
                                "Playhouse",
                                "Playpen",
                                "Plunge pool",
                                "Pocket wifi",
                                "Poker table",
                                "Pond",
                                "Pool",
                                "Pool bar",
                                "Pool cover",
                                "Pool house",
                                "Pool safety fence",
                                "Pool table",
                                "Pool toys",
                                "Pool waterfall",
                                "Pool waterslide",
                                "Pool with pool hoist",
                                "Popcorn Maker",
                                "Portable air conditioning",
                                "Portable fans",
                                "Pour Over Coffee",
                                "Powder room",
                                "Pressure cooker",
                                "Printer",
                                "Private bathroom",
                                "Private entrance",
                                "Private gym",
                                "Private hot tub",
                                "Private living room",
                                "Private pool",
                                "Projector",
                                "Projector and screen",
                                "Propane barbeque",
                                "Putting green",
                                "Racquetball court",
                                "Rain shower",
                                "Reading nook",
                                "Reception area",
                                "Record player",
                                "Refrigerator",
                                "Resort access",
                                "Restaurant",
                                "Rice Maker",
                                "Riding arena",
                                "Rocking chair",
                                "Roll-in shower with chair",
                                "Rooftop",
                                "Room service",
                                "Room-darkening shades",
                                "Safe",
                                "Safety card",
                                "Safety deposit box",
                                "Safety gate",
                                "Sailboat",
                                "Saltwater hot tub",
                                "Saltwater infinity pool",
                                "Saltwater pool",
                                "Sandbox",
                                "Satellite TV",
                                "Satellite radio",
                                "Sauna",
                                "Scanner",
                                "Security cameras",
                                "Security monitors",
                                "Security system",
                                "Self check-in",
                                "Self parking",
                                "Shampoo",
                                "Shared gym",
                                "Shared hot tub",
                                "Shared pool",
                                "Shower bathtub combo",
                                "Shower gel",
                                "Shower grab bar",
                                "Shower or bath chair",
                                "Shuffleboard",
                                "Single level home",
                                "Ski locker",
                                "Ski rack",
                                "Ski room",
                                "Ski-in/Ski-out",
                                "Sliding glass walls",
                                "Slippers",
                                "Slow Cooker",
                                "Smart TV",
                                "Smart Technology",
                                "Smart home technology",
                                "Smart lighting",
                                "Smart lock",
                                "Smoke alarm",
                                "Smoking allowed",
                                "Smoking parlor",
                                "Snacks",
                                "Snooker table",
                                "Snorkeling equipment",
                                "Soaking tub",
                                "Solar power",
                                "Solarium",
                                "Sonos sound system",
                                "Sound system",
                                "Spa",
                                "Spa access",
                                "Spa equipment",
                                "Spa room",
                                "Speaker",
                                "Speed boat",
                                "Squash court",
                                "Stables",
                                "Staff kitchen",
                                "Stair gates",
                                "Stand alone bathtub",
                                "Stand alone jetted bathtub",
                                "Stand alone rain shower",
                                "Stand alone shower",
                                "Stand alone steam shower",
                                "Stand up paddle board",
                                "Standing valet",
                                "Steam bath",
                                "Steam oven",
                                "Steam room",
                                "Step-free shower",
                                "Stove",
                                "Streaming Services",
                                "Sub-Zero refrigerator",
                                "Suitable for events",
                                "Sun bed",
                                "Sun deck",
                                "Sun loungers",
                                "Surfboard",
                                "Surround sound system",
                                "Swim up bar",
                                "Swimming pool",
                                "Swings",
                                "TV",
                                "TV",
                                "Table Top Grill",
                                "Table corner guards",
                                "Tablet",
                                "Tasting room",
                                "Tea",
                                "Telescope",
                                "Tennis club",
                                "Tennis court",
                                "Terrace",
                                "Theme room",
                                "Thermometer",
                                "Toaster",
                                "Toaster Oven",
                                "Toilet",
                                "Toilet grab bar",
                                "Toilet paper",
                                "Toothbrush",
                                "Touchless faucets",
                                "Towel",
                                "Trail access",
                                "Trash can",
                                "Trash compacter",
                                "Treadmill",
                                "Turkish bath",
                                "Turndown service",
                                "UTV",
                                "Underground parking",
                                "Valet Parking",
                                "Veranda",
                                "Video Games",
                                "View tower",
                                "Vitamix blender",
                                "VoIP phone",
                                "Volleyball court",
                                "Walk in closet",
                                "Walk-in pantry",
                                "Walk-in shower",
                                "Warming drawer",
                                "Washer",
                                "Washer/Dryer",
                                "Water Cooler",
                                "Water Filter",
                                "Water Filtration System",
                                "Water skis",
                                "Waterfront",
                                "Wave pool",
                                "Well-lit path to entrance",
                                "Werewolf game",
                                "Wet bar",
                                "Wheelchair",
                                "Wheelchair accessible",
                                "Wide clearance to shower, toilet",
                                "Wide doorway to guest bathroom",
                                "Wide entrance",
                                "Wide entrance for guests",
                                "Wide entryway",
                                "Wide hallways",
                                "Wifi",
                                "Window guards",
                                "Windsurfers",
                                "Wine bar",
                                "Wine cave",
                                "Wine cellar",
                                "Wine collection",
                                "Wine cooler",
                                "Wine glasses",
                                "Wine room",
                                "Wine storage",
                                "Wireless intercom",
                                "Wood-burning fireplace",
                                "Wood-burning oven",
                                "Wood-burning stove",
                                "Workout bench",
                                "Xbox",
                                "Yoga studio",
                                "Zip-line",
                                "Baking supplies",
                                "Bikes",
                                "Dinner",
                                "Fresh air system",
                                "Host accompanied tour",
                                "iPad",
                                "iPod dock",
                                "Laundry supplies",
                                "Lunch",
                                "Mosquito control products",
                                "Pick up service",
                                "Water purifier"
                            ]
                        }
                    },
                    "no_experiment": {
                        "title": "Disable",
                        "type": "boolean",
                        "description": ""
                    },
                    "dev_proxy_config": {
                        "title": "🌐 PROXY NETWORKING",
                        "type": "object",
                        "description": "💡 <b>Supported protocol:</b><br><br><b>HTTP(S), SOCKS5</b><br><code>{http|socks5}://{user:pass}@{hostname|ip-address}:port</code><br><br><b>Example</b>: <code>socks5://example.com:9000</code>"
                    },
                    "dev_custom_headers": {
                        "title": "📜 HTTP HEADERS",
                        "type": "array",
                        "description": "💡 Additional HTTP Headers",
                        "items": {
                            "type": "object",
                            "required": [
                                "key",
                                "value"
                            ],
                            "properties": {
                                "key": {
                                    "type": "string",
                                    "title": "Key"
                                },
                                "value": {
                                    "type": "string",
                                    "title": "Value"
                                }
                            }
                        }
                    },
                    "dev_custom_cookies": {
                        "title": "🍰 HTTP COOKIES",
                        "type": "array",
                        "description": "💡 Additional HTTP Cookies",
                        "items": {
                            "type": "object",
                            "required": [
                                "key",
                                "value"
                            ],
                            "properties": {
                                "key": {
                                    "type": "string",
                                    "title": "Key"
                                },
                                "value": {
                                    "type": "string",
                                    "title": "Value"
                                }
                            }
                        }
                    },
                    "dev_transform_fields": {
                        "title": "♻️ CUSTOM FIELD",
                        "type": "array",
                        "description": "💡 <b>Transform the resulting output. Select only needed fields.</b><br><br>For nested object use <b>DOT</b>. For example: <pre>address.streetAddress</pre><br>For nested array use <b>NUMBER</b> <i>(index of array element starting from index=0)</i>. For example: <pre>images.0.url</pre>",
                        "items": {
                            "type": "object",
                            "required": [
                                "key",
                                "value"
                            ],
                            "properties": {
                                "key": {
                                    "type": "string",
                                    "title": "Key"
                                },
                                "value": {
                                    "type": "string",
                                    "title": "Value"
                                }
                            }
                        }
                    },
                    "dev_dataset_name": {
                        "title": "📁 CUSTOM STORAGE",
                        "type": "string",
                        "description": "💡 <b>Save results into custom named Dataset, use mask to customize dataset name</b><br><br><code>{ACTOR} = actor name<br>{DATE} = date (YYYYMMDD)<br>{TIME} = time (HHMMSS)</code><br><br>This masks can be used to autogenerate Dataset Name.<br><br>example: <i><code>data-{DATE}</code></i><br>Depending on today date the dataset name will be: <code>data-20230603</code><i><br><br>default: <code>data-{ACTOR}-{DATE}-{TIME}</code></i>"
                    },
                    "dev_dataset_clear": {
                        "title": "Clear Storage",
                        "type": "boolean",
                        "description": "Clear Dataset before insert/update."
                    },
                    "dev_no_strip": {
                        "title": "Disable data cleansing",
                        "type": "boolean",
                        "description": "💡 Keep/Save empty values <i><code>(NULL, FALSE, empty ARRAY, empty OBJECT, empty STRING)</code></i>"
                    },
                    "dev_fileupload": {
                        "title": "📁 FILE UPLOADER",
                        "type": "string",
                        "description": "💡 Upload your file and copy & paste the URL somewhere."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
