{
  "openapi": "3.0.1",
  "info": {
    "title": "🔥 Glassdoor jobs company reviews interviews salaries scraper",
    "description": "ℹ️ GlassSeaker 🔥 AI-optimized Glassdoor scraper for LLMs, agents, and MCP integrations. Extract jobs, company reviews, interview insights, and salary data from 20+ localized Glassdoor domains with semantic field names designed for artificial intelligence consumption.",
    "version": "0.0",
    "x-build-id": "lz99wIKjcYQ3smUJp"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/bitty.studio~glassdoor-jobs-company-reviews-interviews-salaries-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-bitty.studio-glassdoor-jobs-company-reviews-interviews-salaries-scraper",
        "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/bitty.studio~glassdoor-jobs-company-reviews-interviews-salaries-scraper/runs": {
      "post": {
        "operationId": "runs-sync-bitty.studio-glassdoor-jobs-company-reviews-interviews-salaries-scraper",
        "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/bitty.studio~glassdoor-jobs-company-reviews-interviews-salaries-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-bitty.studio-glassdoor-jobs-company-reviews-interviews-salaries-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "action"
        ],
        "properties": {
          "base_url": {
            "title": "🌍 Base URL (Domain)",
            "enum": [
              "https://www.glassdoor.com",
              "https://www.glassdoor.com.ar",
              "https://www.glassdoor.com.au",
              "https://nl.glassdoor.be",
              "https://fr.glassdoor.be",
              "https://www.glassdoor.com.br",
              "https://www.glassdoor.ca",
              "https://fr.glassdoor.ca",
              "https://www.glassdoor.de",
              "https://www.glassdoor.es",
              "https://www.glassdoor.fr",
              "https://www.glassdoor.com.hk",
              "https://www.glassdoor.co.in",
              "https://www.glassdoor.ie",
              "https://www.glassdoor.it",
              "https://www.glassdoor.com.mx",
              "https://www.glassdoor.nl",
              "https://www.glassdoor.co.nz",
              "https://www.glassdoor.at",
              "https://de.glassdoor.ch",
              "https://www.glassdoor.sg",
              "https://fr.glassdoor.ch",
              "https://www.glassdoor.co.uk"
            ],
            "type": "string",
            "description": "Glassdoor domain URL for target region (e.g., glassdoor.com for US, glassdoor.co.uk for UK). Each domain provides localized job listings, company reviews, and salary data specific to that country.",
            "default": "https://www.glassdoor.com"
          },
          "action": {
            "title": "🎯 Action",
            "enum": [
              "SEARCH_JOBS",
              "SEARCH_EMPLOYER_REVIEWS",
              "SEARCH_EMPLOYER_INTERVIEWS",
              "SEARCH_EMPLOYER_SALARIES"
            ],
            "type": "string",
            "description": "Type of data to extract: SEARCH_JOBS (job listings), SEARCH_EMPLOYER_REVIEWS (employee reviews), SEARCH_EMPLOYER_INTERVIEWS (interview experiences), or SEARCH_EMPLOYER_SALARIES (salary data by position)."
          },
          "employer_filter": {
            "title": "🏢 Employer ID / URL / Search (required for Employer search actions and optional for jobs)",
            "type": "string",
            "description": "Company identifier: Glassdoor company ID (e.g., '9079'), full Glassdoor company URL, or company name (e.g., 'Google'). Required for reviews/interviews/salaries actions. Optional for job search to filter by specific employer."
          },
          "location_filter": {
            "title": "📍 Location Filter (country, city or state)",
            "type": "string",
            "description": "Geographic filter: city name, state, or country (e.g., 'New York, NY', 'London', 'Paris'). Applies to all action types to filter results by geographic location."
          },
          "max_items": {
            "title": "📈 Max Items",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of items to scrape. Set to 0 or leave empty for unlimited results. Controls total output count based on selected action type."
          },
          "job_search.keyword": {
            "title": "🔤 Job Keyword (free search)",
            "type": "string",
            "description": "Job search keywords: job title, skills, or role (e.g., 'Software Engineer', 'Data Analyst', 'Python Developer'). Matches against job titles and descriptions."
          },
          "job_search.easy_apply_only": {
            "title": "🚀 Easy Apply Only",
            "type": "boolean",
            "description": "Filter to show only jobs with Glassdoor's Easy Apply feature (quick application without leaving Glassdoor).",
            "default": false
          },
          "job_search.remote_only": {
            "title": "🏠 Remote Only",
            "type": "boolean",
            "description": "Filter to show only remote work positions (work-from-home or location-independent jobs).",
            "default": false
          },
          "job_search.include_no_salary_jobs": {
            "title": "💵 Include No Salary Jobs",
            "type": "boolean",
            "description": "Include job listings without salary information. When false, only returns jobs with specified salary ranges.",
            "default": true
          },
          "job_search.salary_min": {
            "title": "💲 Minimum Salary",
            "type": "integer",
            "description": "Minimum salary threshold in local currency (e.g., 50000 for $50K USD). Filters jobs below this salary."
          },
          "job_search.salary_max": {
            "title": "💲 Maximum Salary",
            "type": "integer",
            "description": "Maximum salary threshold in local currency (e.g., 150000 for $150K USD). Filters jobs above this salary."
          },
          "job_search.min_employer_rating": {
            "title": "⭐ Minimum Employer Rating",
            "enum": [
              "FIVE",
              "FOUR",
              "THREE",
              "TWO",
              "ONE",
              "ZERO"
            ],
            "type": "string",
            "description": "Minimum company rating on Glassdoor (1-5 stars). Filters out employers with lower ratings based on employee reviews."
          },
          "job_search.post_time": {
            "title": "📅 Posted Within",
            "enum": [
              "ONE_DAY",
              "THREE_DAYS",
              "SEVEN_DAYS",
              "FOURTEEN_DAYS",
              "THIRTY_DAYS"
            ],
            "type": "string",
            "description": "Time window for job posting date. Filters jobs posted within the specified number of days (e.g., last 24 hours, last 7 days)."
          },
          "job_search.job_type": {
            "title": "💼 Job Type",
            "enum": [
              "ALL",
              "FULL_TIME",
              "PART_TIME",
              "CONTRACT",
              "INTERNSHIP",
              "TEMPORARY",
              "APPRENTICESHIP",
              "ENTRYLEVEL"
            ],
            "type": "string",
            "description": "Employment type: Full-Time, Part-Time, Contract, Internship, Temporary, Apprenticeship, or Entry Level positions."
          },
          "job_search.distance": {
            "title": "📏 Distance / Radius",
            "enum": [
              "WITHIN_0_MILES",
              "WITHIN_10_KILOMETERS",
              "WITHIN_20_KILOMETERS",
              "WITHIN_30_KILOMETERS",
              "WITHIN_50_KILOMETERS",
              "WITHIN_100_KILOMETERS",
              "WITHIN_200_KILOMETERS"
            ],
            "type": "string",
            "description": "Geographic search radius in kilometers from specified location (0-200km). Use with location_filter for proximity-based job search."
          },
          "job_search.seniority_type": {
            "title": "📊 Seniority Level",
            "enum": [
              "ALL",
              "INTERNSHIP",
              "ENTRYLEVEL",
              "MIDSENIORLEVEL",
              "DIRECTOR",
              "EXECUTIVE"
            ],
            "type": "string",
            "description": "Experience level: Internship, Entry Level, Mid-Senior Level, Director, or Executive positions."
          },
          "job_search.employer_size": {
            "title": "🏢 Company Size",
            "enum": [
              "ALL",
              "TINY",
              "SMALL",
              "MEDIUM",
              "LARGE",
              "HUGE"
            ],
            "type": "string",
            "description": "Company size by employee count: 1-200, 201-500, 501-1000, 1001-5000, or 5000+ employees."
          },
          "job_search.job_function": {
            "title": "🛠️ Job Function",
            "enum": [
              "ADMINISTRATIVE",
              "ARTS_AND_DESIGN",
              "BUSINESS",
              "CONSULTING",
              "CUSTOMER_SERVICES_AND_SUPPORT",
              "EDUCATION",
              "ENGINEERING",
              "FINANCE_AND_ACCOUNTING",
              "HEALTHCARE",
              "HUMAN_RESOURCES",
              "INFORMATION_TECHNOLOGY",
              "LEGAL",
              "MARKETING",
              "MEDIA_AND_COMMUNICATIONS",
              "MILITARY_AND_PROTECTIVE_SERVICES",
              "OPERATIONS",
              "OTHER",
              "PRODUCT_AND_PROJECT_MANAGEMENT",
              "RESEARCH_AND_SCIENCE",
              "RETAIL_AND_FOOD_SERVICES",
              "SALES",
              "SKILLED_LABOR_AND_MANUFACTURING",
              "TRANSPORTATION"
            ],
            "type": "string",
            "description": "Job department or functional area: IT, Engineering, Marketing, Sales, Finance, HR, Healthcare, Legal, etc."
          },
          "job_search.industry_type": {
            "title": "🏭 Industry",
            "enum": [
              "ALL",
              "AEROSPACE",
              "ART_ENTERTAINMENT_RECREATION",
              "PHARMACEUTICAL_BIOTECH",
              "CONSTRUCTION_REPAIR_MAINTENANCE",
              "PERSONAL_CONSUMER_SERVICE",
              "EDUCATION",
              "FINANCIAL",
              "GOVERNMENT_PUBLIC_ADMINISTRATION",
              "HUMAN_RESSOURCES_AND_RECRUITMENT",
              "INFORMATION_TECHNOLOGIE",
              "INSURANCE",
              "MANAGEMENT_AND_CONSULTING",
              "MANUFACTURING",
              "MEDIA_MARKETING_COMMUNICATIONS",
              "NON_PROFIT_NGO",
              "ENERGY_MINING_UTILITIES",
              "REAL_ESTATE",
              "RESTAURANT_FOOD_SERVICE",
              "RETAIL_WHOLESALE",
              "TELECOMMUNICATIONS",
              "HOTEL_TRAVEL_ACCOMMODATION"
            ],
            "type": "string",
            "description": "Company industry sector: Technology, Finance, Healthcare, Education, Manufacturing, Retail, Consulting, etc."
          },
          "job_search.domain": {
            "title": "🎯 Job Domain",
            "enum": [
              "ALL",
              "ADMINISTRATION",
              "AFFAIRS",
              "CONSEIL",
              "FORMATION",
              "ENGINEERING",
              "FINANCE",
              "HUMAN_RESOURCES_AND_RECRUITMENTS",
              "INFORMATION_TECHNOLOGY",
              "LEGAL",
              "MEDIA_AND_COMMUNICATION",
              "PRODUCT_PROJECT_MANAGEMENT",
              "SCIENCE_RESEARCH",
              "SELL_AREA"
            ],
            "type": "string",
            "description": "Specialized job domain or field: Engineering, IT, Finance, Legal, Media, Science, Product Management, etc."
          },
          "job_search.sort_by": {
            "title": "🔀 Sort By",
            "enum": [
              "date_asc",
              "date_desc",
              "relevance"
            ],
            "type": "string",
            "description": "Sort order for job search results: by date (newest/oldest first) or by relevance to search criteria."
          },
          "search_employer_reviews.text_search": {
            "title": "🔍 Text Search",
            "type": "string",
            "description": "Keyword search within review text content (pros, cons, advice). Matches reviews containing specified text."
          },
          "search_employer_reviews.job_title_search": {
            "title": "💼 Job Title Search",
            "type": "string",
            "description": "Filter reviews by reviewer's job title (e.g., 'Software Engineer', 'Manager'). Matches role of person who wrote the review."
          },
          "search_employer_reviews.worklife_topics": {
            "title": "🌟 Work-Life Topics",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter reviews by specific themes: Remote Work, Work-Life Balance, Benefits, Culture, Compensation, Management, Career Development, Diversity, etc.",
            "items": {
              "type": "string",
              "enum": [
                "REMOTE_WORK",
                "WORK_LIFE_BALANCE",
                "COWORKERS",
                "BENEFITS",
                "CULTURE",
                "COMPENSATION",
                "MANAGEMENT",
                "WORKPLACE",
                "CAREER_DEVELOPMENT",
                "SENIOR_LEADERSHIP",
                "DIVERSITY_AND_INCLUSION",
                "COVID"
              ],
              "enumTitles": [
                "🏠 Remote Work",
                "⚖️ Work Life Balance",
                "👫 Coworkers",
                "🎁 Benefits",
                "🌟 Culture",
                "💵 Compensation",
                "👔 Management",
                "🏢 Workplace",
                "📈 Career Development",
                "🎯 Senior Leadership",
                "🌈 Diversity and Inclusion",
                "😷 COVID"
              ]
            }
          },
          "search_employer_reviews.job_function": {
            "title": "🛠️ Job Function",
            "enum": [
              "ADMINISTRATIVE",
              "ARTS_AND_DESIGN",
              "BUSINESS",
              "CONSULTING",
              "CUSTOMER_SERVICES_AND_SUPPORT",
              "EDUCATION",
              "ENGINEERING",
              "FINANCE_AND_ACCOUNTING",
              "HEALTHCARE",
              "HUMAN_RESOURCES",
              "INFORMATION_TECHNOLOGY",
              "LEGAL",
              "MARKETING",
              "MEDIA_AND_COMMUNICATIONS",
              "MILITARY_AND_PROTECTIVE_SERVICES",
              "OPERATIONS",
              "OTHER",
              "PRODUCT_AND_PROJECT_MANAGEMENT",
              "RESEARCH_AND_SCIENCE",
              "RETAIL_AND_FOOD_SERVICES",
              "SALES",
              "SKILLED_LABOR_AND_MANUFACTURING",
              "TRANSPORTATION"
            ],
            "type": "string",
            "description": "Filter reviews by reviewer's department: IT, Engineering, Marketing, Sales, Finance, HR, etc."
          },
          "search_employer_reviews.job_types": {
            "title": "💼 Job Types",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter reviews by reviewer's employment type: Regular (full-time), Part-Time, Contract, Intern, or Freelance.",
            "items": {
              "type": "string",
              "enum": [
                "REGULAR",
                "PART_TIME",
                "CONTRACT",
                "INTERN",
                "FREELANCE"
              ],
              "enumTitles": [
                "🕐 Regular",
                "⏰ Part Time",
                "📝 Contract",
                "🎓 Intern",
                "💼 Freelance"
              ]
            }
          },
          "search_employer_reviews.review_languages": {
            "title": "🌐 Review Languages",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter reviews by written language: English, French, German, Dutch, Portuguese, Spanish, or Italian.",
            "items": {
              "type": "string",
              "enum": [
                "ENGLISH",
                "FRENCH",
                "GERMAN",
                "DUTCH",
                "PORTUGUESE",
                "SPANISH",
                "ITALIAN"
              ],
              "enumTitles": [
                "🇬🇧 English",
                "🇫🇷 French",
                "🇩🇪 German",
                "🇳🇱 Dutch",
                "🇵🇹 Portuguese",
                "🇪🇸 Spanish",
                "🇮🇹 Italian"
              ]
            }
          },
          "search_employer_reviews.min_review_rating": {
            "title": "⭐ Minimum Review Rating",
            "enum": [
              "FIVE",
              "FOUR",
              "THREE",
              "TWO",
              "ONE"
            ],
            "type": "string",
            "description": "Minimum overall rating (1-5 stars). Filters out reviews with lower ratings to focus on positive or negative feedback."
          },
          "search_employer_reviews.sort_by": {
            "title": "🔀 Sort By",
            "enum": [
              "DATE",
              "DATE_ASC",
              "RATING",
              "RATING_ASC",
              "RELEVANCE"
            ],
            "type": "string",
            "description": "Sort order for employer reviews: by date (newest/oldest first), by rating (highest/lowest first), or by relevance (popular).",
            "default": "RELEVANCE"
          },
          "search_employer_interviews.job_function": {
            "title": "🛠️ Job Function",
            "enum": [
              "ADMINISTRATIVE",
              "ARTS_AND_DESIGN",
              "BUSINESS",
              "CONSULTING",
              "CUSTOMER_SERVICES_AND_SUPPORT",
              "EDUCATION",
              "ENGINEERING",
              "FINANCE_AND_ACCOUNTING",
              "HEALTHCARE",
              "HUMAN_RESOURCES",
              "INFORMATION_TECHNOLOGY",
              "LEGAL",
              "MARKETING",
              "MEDIA_AND_COMMUNICATIONS",
              "MILITARY_AND_PROTECTIVE_SERVICES",
              "OPERATIONS",
              "OTHER",
              "PRODUCT_AND_PROJECT_MANAGEMENT",
              "RESEARCH_AND_SCIENCE",
              "RETAIL_AND_FOOD_SERVICES",
              "SALES",
              "SKILLED_LABOR_AND_MANUFACTURING",
              "TRANSPORTATION"
            ],
            "type": "string",
            "description": "Filter interviews by job department: IT, Engineering, Marketing, Sales, Finance, HR, etc."
          },
          "search_employer_interviews.job_title_search": {
            "title": "💼 Job Title Search",
            "type": "string",
            "description": "Filter interviews by position applied for (e.g., 'Software Engineer', 'Product Manager'). Matches job title in interview record."
          },
          "search_employer_interviews.interview_result": {
            "title": "📋 Interview Result",
            "enum": [
              "ALL",
              "ACCEPT_OFFER",
              "DECLINE_OFFER",
              "RECEIVED_OFFER"
            ],
            "type": "string",
            "description": "Interview outcome: Accepted Offer, Declined Offer, Received Offer (both accepted & declined), or All offers."
          },
          "search_employer_interviews.sort_by": {
            "title": "🔀 Sort By",
            "enum": [
              "DATE",
              "DATE_ASC",
              "DIFFICULTY_ASC",
              "DIFFICULTY_DESC",
              "RELEVANCE"
            ],
            "type": "string",
            "description": "Sort order for employer interviews: by date (newest/oldest first), by difficulty (easiest/hardest first), or by relevance (popular).",
            "default": "RELEVANCE"
          },
          "search_employer_salaries.job_title_search": {
            "title": "💼 Job Title Search",
            "type": "string",
            "description": "Filter salary data by job title (e.g., 'Software Engineer', 'Data Scientist'). Returns salary statistics for specified role."
          },
          "search_employer_salaries.job_department": {
            "title": "🏢 Job Department",
            "enum": [
              "ENGINEERING",
              "CONSULTING",
              "INFORMATION_TECHNOLOGY",
              "PRODUCT_MANAGEMENT",
              "SALES",
              "RESEARCH_SCIENCES",
              "BUSINESS",
              "FINANCE_ACCOUNTING",
              "ART_DESIGN",
              "OTHER",
              "MARKETING",
              "HUMAN_RESOURCES",
              "LEGAL",
              "ADMINISTRATIVE",
              "SKILLED_LABOR_MANUFACTURING",
              "OPERATIONS",
              "CUSTOMER_SERVICE_SUPPORT",
              "MEDIA_COMMUNICATIONS",
              "MILITARY_PROTECTIVE_SERVICES",
              "RETAIL_FOOD_SERVICES",
              "TRANSPORTATION",
              "EDUCATION",
              "HEALTHCARE"
            ],
            "type": "string",
            "description": "Filter salary data by department: Engineering, IT, Sales, Marketing, Finance, HR, Operations, etc."
          },
          "search_employer_salaries.pay_period": {
            "title": "💰 Pay Period",
            "enum": [
              "ANNUAL",
              "MONTHLY",
              "HOURLY",
              "WEEKLY"
            ],
            "type": "string",
            "description": "Salary time period: Yearly (annual), Monthly, Hourly, or Weekly compensation. Affects how salary figures are displayed."
          },
          "search_employer_salaries.sort_by": {
            "title": "🔀 Sort By",
            "enum": [
              "TOTAL_PAY_DESC",
              "POPULAR",
              "UGC_SALARY_COUNT_DESC"
            ],
            "type": "string",
            "description": "Sort order for employer salaries: by total pay (high to low), by popularity (most recent), or by number of salary submissions (most salaries submitted).",
            "default": "UGC_SALARY_COUNT_DESC"
          },
          "desired_concurrency": {
            "title": "🚀 Desired Concurrency",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Number of parallel requests (1-1000). Higher values = faster scraping but more memory usage. Recommended: 200-400 for 512MB, 400-600 for 1GB, 600-1000 for 2GB+.",
            "default": 400
          },
          "proxyConfiguration": {
            "title": "🌐 Proxy Configuration",
            "type": "object",
            "description": "Proxy configuration to avoid IP blocking. Residential proxies required. Recommended: Use Apify Proxy with country matching target Glassdoor domain (US proxies for .com, UK for .co.uk, etc.).",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}