{
  "openapi": "3.0.1",
  "info": {
    "title": "Loopnet Scraper | Fast & Reliable",
    "description": "Extract structured commercial real estate listings from Loopnet with property signals, pricing, seller details, media assets and more. Built for enterprise-grade Canada commercial property intelligence, listing monitoring, lead enrichment and automated analytics pipelines.",
    "version": "0.0",
    "x-build-id": "shVVl5gRGJNZZUymb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fatihtahta~loopnet-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fatihtahta-loopnet-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/fatihtahta~loopnet-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fatihtahta-loopnet-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/fatihtahta~loopnet-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fatihtahta-loopnet-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",
        "properties": {
          "deal_type": {
            "title": "Choose Deal Type",
            "enum": [
              "buy",
              "lease",
              "auction"
            ],
            "type": "string",
            "description": "Choose whether to collect properties for sale, for lease, or at auction. Deal-specific filters only affect the listing workflows they support.",
            "default": "lease"
          },
          "location": {
            "title": "Enter Location to Search",
            "type": "string",
            "description": "Enter one location, such as \"New York, NY\", \"NY 10001\", \"Harris County, TX\", or \"Los Angeles County, CA\". Leave empty when you want a broad default search for the selected deal type."
          },
          "price_range_type": {
            "title": "Choose Price Range Basis",
            "enum": [
              "total_sale_total_year_lease",
              "sf_sale_sf_year_lease"
            ],
            "type": "string",
            "description": "Select whether the price range should use total pricing or per-square-foot pricing. The same minimum and maximum price fields are applied according to the selected deal type."
          },
          "min_price": {
            "title": "Set Minimum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the lowest price or rent value to include. Leave empty when there is no lower price requirement."
          },
          "max_price": {
            "title": "Set Maximum Price",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the highest price or rent value to include. Leave empty when there is no upper price requirement."
          },
          "sale_type": {
            "title": "Choose Sale Types",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more sale-type filters to include in for-sale searches. These options only affect properties for sale.",
            "items": {
              "type": "string",
              "enum": [
                "auctions",
                "triple_net",
                "exclude_pending_sales",
                "distressed"
              ],
              "enumTitles": [
                "Auctions",
                "Triple Net (NNN)",
                "Exclude pending sales",
                "Distressed properties"
              ]
            },
            "default": [
              "auctions"
            ]
          },
          "publication_date": {
            "title": "Choose Listing Recency",
            "enum": [
              "24_hours",
              "3_days",
              "7_days",
              "14_days",
              "90_days",
              "365_days"
            ],
            "type": "string",
            "description": "Select how recently listings should have been published. Leave empty to include listings regardless of publication date."
          },
          "tenancy": {
            "title": "Choose Tenancy Type",
            "enum": [
              "single",
              "multi"
            ],
            "type": "string",
            "description": "Choose whether to focus on single-tenant or multi-tenant listings. This filter applies to properties for sale and auction listings."
          },
          "lease_availability": {
            "title": "Choose Lease Availability",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more availability statuses for lease searches. These options only affect properties for lease.",
            "items": {
              "type": "string",
              "enum": [
                "pending_lease",
                "available"
              ],
              "enumTitles": [
                "Pending lease",
                "Available"
              ]
            },
            "default": [
              "available"
            ]
          },
          "sublease_space_only": {
            "title": "Include Only Sublease Space",
            "type": "boolean",
            "description": "Enable this to collect only sublease space in lease searches. Leave it off to keep direct lease and sublease opportunities eligible.",
            "default": false
          },
          "space_use_lease": {
            "title": "Choose Lease Space Use",
            "enum": [
              "office",
              "coworking",
              "industrial",
              "retail",
              "restaurant",
              "flex",
              "medical",
              "lab",
              "land"
            ],
            "type": "string",
            "description": "Select the space-use category to include in lease searches. Leave empty to include all supported lease space uses."
          },
          "property_use": {
            "title": "Choose Property Use",
            "enum": [
              "vacant_owner",
              "investment"
            ],
            "type": "string",
            "description": "Choose a property-use profile to focus the dataset. Leave empty to include both vacant or owner-user properties and investment properties. This filter applies to properties for sale and auction listings."
          },
          "property_type": {
            "title": "Filter by Property Types",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more property types or subtypes to include. Main categories include their supported subcategories, which is useful for broader category-level searches.",
            "items": {
              "type": "string",
              "enum": [
                "office",
                "office:industrial_live_work",
                "office:loft_creative_space",
                "office:medical",
                "office:office_live_work_unit",
                "office:office_residential",
                "office:office_storefront_retail",
                "industrial",
                "industrial:data_center",
                "industrial:distribution",
                "industrial:flex",
                "industrial:manufacturing",
                "industrial:r_and_d",
                "industrial:refrigeration_cold_storage",
                "industrial:service",
                "industrial:showroom",
                "industrial:telecom_facility",
                "industrial:truck_terminal",
                "industrial:warehouse",
                "industrial:other_industrial",
                "retail",
                "retail:bank",
                "retail:day_care_facility_nursery",
                "retail:drug_store",
                "retail:freestanding",
                "retail:grocery_convenience_store",
                "retail:service_gas_station",
                "retail:showroom",
                "retail:storefront",
                "retail:storefront_retail_office",
                "retail:storefront_retail_residential",
                "retail:vehicle_related",
                "retail:other_retail",
                "restaurant",
                "shopping_center",
                "shopping_center:airport_retail",
                "shopping_center:community_center",
                "shopping_center:lifestyle_center",
                "shopping_center:neighborhood_center",
                "shopping_center:outlet_center",
                "shopping_center:power_center",
                "shopping_center:regional_mall",
                "shopping_center:strip_center",
                "shopping_center:super_regional_mall",
                "shopping_center:theme_festival_center",
                "multifamily",
                "multifamily:dormitory",
                "multifamily:garden",
                "multifamily:high_rise",
                "multifamily:low_rise",
                "multifamily:manufactured_housing_mobile_home",
                "multifamily:mid_rise",
                "specialty",
                "specialty:car_wash",
                "specialty:marina",
                "specialty:parking",
                "specialty:religious_facility",
                "specialty:schools",
                "specialty:self_storage",
                "specialty:other_specialty",
                "health_care",
                "health_care:assisted_living",
                "health_care:congregate_senior_housing",
                "health_care:continuing_care_retirement_community",
                "health_care:hospital",
                "health_care:rehabilitation_center",
                "health_care:skilled_nursing_facility",
                "hospitality",
                "hospitality:bed_and_breakfast",
                "hospitality:hostel",
                "hospitality:hotel",
                "hospitality:serviced_apartment",
                "sports_entertainment",
                "sports_entertainment:amusement_park",
                "sports_entertainment:baseball_field",
                "sports_entertainment:casino",
                "sports_entertainment:golf_driving_range",
                "sports_entertainment:horse_stables",
                "sports_entertainment:race_track",
                "sports_entertainment:skating_rink",
                "sports_entertainment:swimming_pool",
                "sports_entertainment:theater_concert_hall",
                "lab",
                "land",
                "land:agricultural",
                "land:commercial",
                "land:industrial",
                "land:residential_multifamily",
                "residential_income"
              ],
              "enumTitles": [
                "Office",
                "Office - Industrial Live/Work",
                "Office - Loft/Creative Space",
                "Office - Medical",
                "Office - Office Live/Work Unit",
                "Office - Office/Residential",
                "Office - Office/Storefront Retail",
                "Industrial",
                "Industrial - Data Center",
                "Industrial - Distribution",
                "Industrial - Flex",
                "Industrial - Manufacturing",
                "Industrial - R&D",
                "Industrial - Refrigeration/Cold Storage",
                "Industrial - Service",
                "Industrial - Showroom",
                "Industrial - Telecom Facility",
                "Industrial - Truck Terminal",
                "Industrial - Warehouse",
                "Industrial - Other Industrial",
                "Retail",
                "Retail - Bank",
                "Retail - Day Care Facility/Nursery",
                "Retail - Drug Store",
                "Retail - Freestanding",
                "Retail - Grocery/Convenience Store",
                "Retail - Service/Gas Station",
                "Retail - Showroom",
                "Retail - Storefront",
                "Retail - Storefront Retail/Office",
                "Retail - Storefront Retail/Residential",
                "Retail - Vehicle Related",
                "Retail - Other Retail",
                "Restaurant",
                "Shopping Center",
                "Shopping Center - Airport Retail",
                "Shopping Center - Community Center",
                "Shopping Center - Lifestyle Center",
                "Shopping Center - Neighborhood Center",
                "Shopping Center - Outlet Center",
                "Shopping Center - Power Center",
                "Shopping Center - Regional Mall",
                "Shopping Center - Strip Center",
                "Shopping Center - Super Regional Mall",
                "Shopping Center - Theme/Festival Center",
                "Multifamily",
                "Multifamily - Dormitory",
                "Multifamily - Garden",
                "Multifamily - High-Rise",
                "Multifamily - Low-Rise",
                "Multifamily - Manufactured Housing/Mobile Home",
                "Multifamily - Mid-Rise",
                "Specialty",
                "Specialty - Car Wash",
                "Specialty - Marina",
                "Specialty - Parking",
                "Specialty - Religious Facility",
                "Specialty - Schools",
                "Specialty - Self-Storage",
                "Specialty - Other Specialty",
                "Health Care",
                "Health Care - Assisted Living",
                "Health Care - Congregate Senior Housing",
                "Health Care - Continuing Care Retirement Community",
                "Health Care - Hospital",
                "Health Care - Rehabilitation Center",
                "Health Care - Skilled Nursing Facility",
                "Hospitality",
                "Hospitality - Bed and Breakfast",
                "Hospitality - Hostel",
                "Hospitality - Hotel",
                "Hospitality - Serviced Apartment",
                "Sports & Entertainment",
                "Sports & Entertainment - Amusement Park",
                "Sports & Entertainment - Baseball Field",
                "Sports & Entertainment - Casino",
                "Sports & Entertainment - Golf / Driving Range",
                "Sports & Entertainment - Horse Stables",
                "Sports & Entertainment - Race Track",
                "Sports & Entertainment - Skating Rink",
                "Sports & Entertainment - Swimming Pool",
                "Sports & Entertainment - Theater/Concert Hall",
                "Lab",
                "Land",
                "Land - Agricultural",
                "Land - Commercial",
                "Land - Industrial",
                "Land - Residential/Multifamily",
                "Residential Income"
              ]
            }
          },
          "building_amenities": {
            "title": "Filter by Building Amenities",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more building amenities to require in the results. More selected amenities can make the dataset more targeted.",
            "items": {
              "type": "string",
              "enum": [
                "24_hour_access",
                "bio_tech_lab_space",
                "controlled_access",
                "concierge",
                "conferencing_facility",
                "day_care",
                "dry_cleaner",
                "fitness_center",
                "pool",
                "restaurant",
                "security_system",
                "street_parking_only",
                "waterfront",
                "leed_certified",
                "leed_certified_silver",
                "leed_certified_gold",
                "leed_certified_platinum",
                "energy_star_labeled",
                "doorman",
                "dry_cleaning_service",
                "wheelchair_accessible",
                "guest_parking",
                "view",
                "disabled_facilities",
                "roof_terrace",
                "car_charging_station",
                "conference_rooms",
                "hearing_impaired_accessible",
                "private_bathroom",
                "key_fob_entry",
                "air_conditioning",
                "haussmannian",
                "smoke_detector"
              ],
              "enumTitles": [
                "24 Hour Access",
                "Bio-Tech/ Lab Space",
                "Controlled Access",
                "Concierge",
                "Conferencing Facility",
                "Day Care",
                "Dry Cleaner",
                "Fitness Center",
                "Pool",
                "Restaurant",
                "Security System",
                "Street parking only",
                "Waterfront",
                "LEED Certified",
                "LEED Certified - Silver",
                "LEED Certified - Gold",
                "LEED Certified - Platinum",
                "Energy Star Labeled",
                "Doorman",
                "Dry Cleaning Service",
                "Wheelchair Accessible",
                "Guest Parking",
                "View",
                "Disabled Facilities",
                "Roof Terrace",
                "Car Charging Station",
                "Conference Rooms",
                "Hearing Impaired Accessible",
                "Private Bathroom",
                "Key Fob Entry",
                "Air Conditioning",
                "Haussmannian",
                "Smoke Detector"
              ]
            }
          },
          "space_amenities": {
            "title": "Filter by Space Amenities",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more space amenities to require in the results. Leave empty when space-level amenities should not narrow the search.",
            "items": {
              "type": "string",
              "enum": [
                "raised_floor",
                "energy_performance_rating_a",
                "energy_performance_rating_b",
                "energy_performance_rating_c",
                "energy_performance_rating_d",
                "energy_performance_rating_e",
                "air_conditioning",
                "balcony",
                "bicycle_storage",
                "dda_compliant",
                "natural_light",
                "reception",
                "security_system",
                "drop_ceiling",
                "cctv_closed_circuit_television_monitoring",
                "private_restrooms",
                "display_window",
                "smoke_detector",
                "wheelchair_accessible"
              ],
              "enumTitles": [
                "Raised Floor",
                "Energy Performance Rating - A",
                "Energy Performance Rating - B",
                "Energy Performance Rating - C",
                "Energy Performance Rating - D",
                "Energy Performance Rating - E",
                "Air Conditioning",
                "Balcony",
                "Bicycle Storage",
                "DDA Compliant",
                "Natural Light",
                "Reception",
                "Security System",
                "Drop Ceiling",
                "CCTV (Closed Circuit Television Monitoring)",
                "Private Restrooms",
                "Display Window",
                "Smoke Detector",
                "Wheelchair Accessible"
              ]
            }
          },
          "keyword": {
            "title": "Filter by Keyword",
            "type": "string",
            "description": "Enter a word or phrase to focus results on relevant listing text. A precise keyword can reduce noise, while leaving it blank keeps the search broader."
          },
          "opportunity_zone": {
            "title": "Include Only Opportunity Zone Listings",
            "type": "boolean",
            "description": "Enable this to include only listings marked as being in Opportunity Zones. This filter applies to properties for sale and auction listings.",
            "default": false
          },
          "min_cap_rate": {
            "title": "Set Minimum Cap Rate",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8",
              "9",
              "10",
              "11",
              "12",
              "13",
              "14",
              "15",
              "16",
              "17",
              "18",
              "19",
              "20",
              "21",
              "22",
              "23",
              "24",
              "25",
              "26",
              "27",
              "28",
              "29",
              "30",
              "31",
              "32",
              "33",
              "34",
              "35",
              "36",
              "37",
              "38",
              "39",
              "40",
              "41",
              "42",
              "43",
              "44",
              "45",
              "46",
              "47",
              "48",
              "49",
              "50",
              "51",
              "52",
              "53",
              "54",
              "55",
              "56",
              "57",
              "58",
              "59",
              "60",
              "61",
              "62",
              "63",
              "64",
              "65",
              "66",
              "67",
              "68",
              "69",
              "70",
              "71",
              "72",
              "73",
              "74",
              "75",
              "76",
              "77",
              "78",
              "79",
              "80",
              "81",
              "82",
              "83",
              "84",
              "85",
              "86",
              "87",
              "88",
              "89",
              "90",
              "91",
              "92",
              "93",
              "94",
              "95",
              "96",
              "97",
              "98",
              "99",
              "100"
            ],
            "type": "string",
            "description": "Choose the lowest cap rate percentage to include. Leave empty when there is no minimum cap rate requirement."
          },
          "max_cap_rate": {
            "title": "Set Maximum Cap Rate",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8",
              "9",
              "10",
              "11",
              "12",
              "13",
              "14",
              "15",
              "16",
              "17",
              "18",
              "19",
              "20",
              "21",
              "22",
              "23",
              "24",
              "25",
              "26",
              "27",
              "28",
              "29",
              "30",
              "31",
              "32",
              "33",
              "34",
              "35",
              "36",
              "37",
              "38",
              "39",
              "40",
              "41",
              "42",
              "43",
              "44",
              "45",
              "46",
              "47",
              "48",
              "49",
              "50",
              "51",
              "52",
              "53",
              "54",
              "55",
              "56",
              "57",
              "58",
              "59",
              "60",
              "61",
              "62",
              "63",
              "64",
              "65",
              "66",
              "67",
              "68",
              "69",
              "70",
              "71",
              "72",
              "73",
              "74",
              "75",
              "76",
              "77",
              "78",
              "79",
              "80",
              "81",
              "82",
              "83",
              "84",
              "85",
              "86",
              "87",
              "88",
              "89",
              "90",
              "91",
              "92",
              "93",
              "94",
              "95",
              "96",
              "97",
              "98",
              "99",
              "100"
            ],
            "type": "string",
            "description": "Choose the highest cap rate percentage to include. Leave empty when there is no maximum cap rate requirement."
          },
          "min_building_area": {
            "title": "Set Minimum Building Area",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the smallest building area to include, in square feet. Leave empty when smaller buildings should remain eligible."
          },
          "max_building_area": {
            "title": "Set Maximum Building Area",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the largest building area to include, in square feet. Leave empty when larger buildings should remain eligible."
          },
          "min_building_year": {
            "title": "Set Earliest Building Year",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the earliest building year to include. Leave empty when older buildings should remain eligible."
          },
          "max_building_year": {
            "title": "Set Latest Building Year",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the latest building year to include. Leave empty when newer buildings should remain eligible."
          },
          "min_land_area": {
            "title": "Set Minimum Land Area",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the smallest land area to include, in acres. Leave empty when smaller sites should remain eligible."
          },
          "max_land_area": {
            "title": "Set Maximum Land Area",
            "minimum": 0,
            "type": "integer",
            "description": "Enter the largest land area to include, in acres. Leave empty when larger sites should remain eligible."
          },
          "maximize_coverage": {
            "title": "Collect More Matching Listings",
            "type": "boolean",
            "description": "Keep this enabled for large searches that may exceed the visible-result limit. Turn it off for faster exploratory runs where the first visible set of matching listings is enough.",
            "default": true
          },
          "limit": {
            "title": "Set Maximum Results per Input",
            "minimum": 1,
            "type": "integer",
            "description": "Enter the maximum number of listings to save for the configured location. Leave empty to collect all available matching results."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}