{
  "openapi": "3.0.1",
  "info": {
    "title": "Zonaprop Scraper - Argentina Property Listings",
    "description": "Property listings from zonaprop.com.ar across Argentina: sales, long-term and temporary rentals, and new developments. Filter location, price, rooms, area, amenities, media, and advertiser type, then export JSON, CSV, Excel, or connect via API and MCP for fast market research and investment analysis",
    "version": "0.0",
    "x-build-id": "W3J3JJ6wnfbf3f0QN"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/igolaizola~zonaprop-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-igolaizola-zonaprop-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/igolaizola~zonaprop-scraper/runs": {
      "post": {
        "operationId": "runs-sync-igolaizola-zonaprop-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/igolaizola~zonaprop-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-igolaizola-zonaprop-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": [
          "maxItems"
        ],
        "properties": {
          "maxItems": {
            "title": "Maximum listings",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of listings to save. Use 0 to collect every available result.",
            "default": 100
          },
          "fetchDetails": {
            "title": "Fetch listing details",
            "type": "boolean",
            "description": "Fetch the full listing detail for each result and add it under _details. This increases runtime and may incur an additional pay-per-event charge.",
            "default": false
          },
          "operation": {
            "title": "Listing operation",
            "enum": [
              "sale",
              "rent",
              "temporary",
              "development"
            ],
            "type": "string",
            "description": "Choose whether to find properties for sale, long-term rent, temporary rent, or new developments.",
            "default": "sale"
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Location name, neighborhood, city, or Argentine region to search. The default is ready to run; leave blank only when using coordinates or an address."
          },
          "locationType": {
            "title": "Location type",
            "enum": [
              "",
              "neighborhood",
              "area",
              "department",
              "province"
            ],
            "type": "string",
            "description": "Optionally limit matching location suggestions to a neighborhood, area, department, or province.",
            "default": ""
          },
          "latitude": {
            "title": "Latitude",
            "minimum": -90,
            "maximum": 90,
            "type": "number",
            "description": "Optional latitude for a nearby-property search. Use together with longitude; coordinates take precedence over region."
          },
          "longitude": {
            "title": "Longitude",
            "minimum": -180,
            "maximum": 180,
            "type": "number",
            "description": "Optional longitude for a nearby-property search. Use together with latitude."
          },
          "address": {
            "title": "Address",
            "type": "string",
            "description": "Optional street address to search around. An address takes precedence over coordinates and region."
          },
          "keyword": {
            "title": "Keywords",
            "type": "string",
            "description": "Words that should appear in matching listings, such as balcony, pool, or furnished."
          },
          "sortBy": {
            "title": "Sort results",
            "enum": [
              "relevance",
              "price-low-to-high",
              "price-high-to-low",
              "newest",
              "largest-price-drop"
            ],
            "type": "string",
            "description": "Order in which matching listings are returned.",
            "default": "relevance"
          },
          "currency": {
            "title": "Price currency",
            "enum": [
              "",
              "ARS",
              "USD"
            ],
            "type": "string",
            "description": "Currency used by the minimum and maximum price filters.",
            "default": ""
          },
          "minPrice": {
            "title": "Minimum price",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest property price to include. Use 0 for no minimum.",
            "default": 0
          },
          "maxPrice": {
            "title": "Maximum price",
            "minimum": 0,
            "type": "integer",
            "description": "Highest property price to include. Use 0 for no maximum.",
            "default": 0
          },
          "minPriceWithExpenses": {
            "title": "Minimum monthly total",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest rent including building expenses. Use 0 for no minimum.",
            "default": 0
          },
          "maxPriceWithExpenses": {
            "title": "Maximum monthly total",
            "minimum": 0,
            "type": "integer",
            "description": "Highest rent including building expenses. Use 0 for no maximum.",
            "default": 0
          },
          "minExpenses": {
            "title": "Minimum building expenses",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest monthly building expenses to include. Use 0 for no minimum.",
            "default": 0
          },
          "maxExpenses": {
            "title": "Maximum building expenses",
            "minimum": 0,
            "type": "integer",
            "description": "Highest monthly building expenses to include. Use 0 for no maximum.",
            "default": 0
          },
          "minRooms": {
            "title": "Minimum rooms",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of rooms. Use 0 for no minimum.",
            "default": 0
          },
          "maxRooms": {
            "title": "Maximum rooms",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of rooms. Use 0 for no maximum.",
            "default": 0
          },
          "minBedrooms": {
            "title": "Minimum bedrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of bedrooms. Use 0 for no minimum.",
            "default": 0
          },
          "maxBedrooms": {
            "title": "Maximum bedrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of bedrooms. Use 0 for no maximum.",
            "default": 0
          },
          "minBathrooms": {
            "title": "Minimum bathrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of bathrooms. Use 0 for no minimum.",
            "default": 0
          },
          "maxBathrooms": {
            "title": "Maximum bathrooms",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of bathrooms. Use 0 for no maximum.",
            "default": 0
          },
          "minGarages": {
            "title": "Minimum parking spaces",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum number of parking spaces. Use 0 for no minimum.",
            "default": 0
          },
          "maxGarages": {
            "title": "Maximum parking spaces",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of parking spaces. Use 0 for no maximum.",
            "default": 0
          },
          "noGarage": {
            "title": "Only listings without parking",
            "type": "boolean",
            "description": "Return only properties that do not include a garage or parking space.",
            "default": false
          },
          "areaUnit": {
            "title": "Area unit",
            "enum": [
              "square-meters",
              "hectares",
              "celemines"
            ],
            "type": "string",
            "description": "Unit used by total and covered area filters.",
            "default": "square-meters"
          },
          "minTotalArea": {
            "title": "Minimum total area",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum total property area. Use 0 for no minimum.",
            "default": 0
          },
          "maxTotalArea": {
            "title": "Maximum total area",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum total property area. Use 0 for no maximum.",
            "default": 0
          },
          "minCoveredArea": {
            "title": "Minimum covered area",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum indoor or covered area. Use 0 for no minimum.",
            "default": 0
          },
          "maxCoveredArea": {
            "title": "Maximum covered area",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum indoor or covered area. Use 0 for no maximum.",
            "default": 0
          },
          "propertyType": {
            "title": "Property type",
            "enum": [
              "",
              "house",
              "apartment",
              "ph",
              "land",
              "retail",
              "office",
              "warehouse",
              "storage",
              "garage",
              "medical-office",
              "building",
              "hotel",
              "business",
              "vacation-home",
              "ranch",
              "marina-berth",
              "cemetery-property",
              "horizontal-development",
              "vertical-development"
            ],
            "type": "string",
            "description": "Limit results to one kind of property.",
            "default": ""
          },
          "propertyTypes": {
            "title": "Property types",
            "type": "array",
            "description": "Optionally include multiple property types in the same search.",
            "items": {
              "type": "string",
              "enum": [
                "house",
                "apartment",
                "ph",
                "land",
                "retail",
                "office",
                "warehouse",
                "storage",
                "garage",
                "medical-office",
                "building",
                "hotel",
                "business",
                "vacation-home",
                "ranch",
                "marina-berth",
                "cemetery-property",
                "horizontal-development",
                "vertical-development"
              ],
              "enumTitles": [
                "House",
                "Apartment",
                "PH",
                "Land",
                "Retail property",
                "Office",
                "Warehouse",
                "Storage property",
                "Garage",
                "Medical office",
                "Building",
                "Hotel",
                "Business",
                "Vacation home",
                "Ranch",
                "Marina berth",
                "Cemetery property",
                "Horizontal development",
                "Vertical development"
              ]
            }
          },
          "propertySubtypes": {
            "title": "Property subtypes",
            "type": "array",
            "description": "Optionally narrow results to specific subtypes such as chalet, gated community, loft, or penthouse.",
            "items": {
              "type": "string",
              "enum": [
                "beach-house",
                "gated-community",
                "cabin",
                "chalet",
                "condominium",
                "house-duplex",
                "house",
                "bungalow",
                "house-ph",
                "prefabricated",
                "house-triplex",
                "apartment-triplex",
                "semi-floor",
                "floor",
                "studio",
                "penthouse",
                "standard-apartment",
                "loft",
                "apartment-duplex",
                "monoambiente",
                "vault",
                "niche",
                "plot",
                "gated-neighborhood",
                "town-country",
                "country-club",
                "chacras-club",
                "nautical-club",
                "country",
                "other-horizontal",
                "urbanization",
                "parking-development",
                "commercial-development",
                "industrial-development",
                "other-vertical",
                "residential-development"
              ],
              "enumTitles": [
                "Beach house",
                "Gated community",
                "Cabin",
                "Chalet",
                "Condominium",
                "House duplex",
                "House",
                "Bungalow",
                "House PH",
                "Prefabricated house",
                "House triplex",
                "Apartment triplex",
                "Semi-floor apartment",
                "Floor apartment",
                "Studio",
                "Penthouse",
                "Standard apartment",
                "Loft",
                "Apartment duplex",
                "Monoambiente",
                "Vault",
                "Niche",
                "Plot",
                "Gated neighborhood",
                "Town and country",
                "Country club",
                "Chacras club",
                "Nautical club",
                "Country",
                "Other horizontal development",
                "Urbanization",
                "Parking development",
                "Commercial development",
                "Industrial development",
                "Other vertical development",
                "Residential development"
              ]
            }
          },
          "roomTypes": {
            "title": "Room types",
            "type": "array",
            "description": "Require selected rooms or spaces, such as a kitchen, living-dining room, balcony, or laundry room.",
            "items": {
              "type": "string",
              "enum": [
                "garden",
                "office",
                "attic",
                "balcony",
                "storage-room",
                "kitchen",
                "dining-room",
                "breakfast-room",
                "en-suite-bedroom",
                "maid-room",
                "hall",
                "study",
                "laundry",
                "living-room",
                "living-dining-room",
                "patio",
                "basement",
                "terrace",
                "walk-in-closet",
                "locker-room"
              ],
              "enumTitles": [
                "Garden",
                "Office",
                "Attic",
                "Balcony",
                "Storage room",
                "Kitchen",
                "Dining room",
                "Breakfast room",
                "En-suite bedroom",
                "Service room",
                "Hall",
                "Study",
                "Laundry room",
                "Living room",
                "Living-dining room",
                "Patio",
                "Basement",
                "Terrace",
                "Walk-in closet",
                "Locker room"
              ]
            }
          },
          "amenities": {
            "title": "Amenities",
            "type": "array",
            "description": "Require amenities such as a pool, grill, doorman, security, or accessibility features.",
            "items": {
              "type": "string",
              "enum": [
                "pool",
                "grill",
                "doorman",
                "security",
                "mortgage",
                "professional-use",
                "accessible",
                "bright",
                "very-bright",
                "less-bright",
                "commercial-use",
                "children-playground",
                "children-under-12",
                "game-room",
                "solarium",
                "football-court",
                "tennis-court",
                "gym",
                "hot-tub",
                "expenses-included"
              ],
              "enumTitles": [
                "Pool",
                "Grill",
                "Doorman or building staff",
                "Security",
                "Suitable for mortgage",
                "Suitable for professional use",
                "Accessible",
                "Bright",
                "Very bright",
                "Less bright",
                "Commercial use",
                "Children's playground",
                "Allows children under 12",
                "Game room",
                "Solarium",
                "Football court",
                "Tennis court",
                "Gym",
                "Hot tub",
                "Expenses included"
              ]
            }
          },
          "propertyFeatures": {
            "title": "Property features",
            "type": "array",
            "description": "Require additional property features such as air conditioning, heating, a gym, or furnished status.",
            "items": {
              "type": "string",
              "enum": [
                "air-conditioning",
                "heating",
                "central-heating",
                "jacuzzi",
                "sauna",
                "furnished",
                "basketball-court",
                "bocce-court",
                "sports-court",
                "golf-course",
                "hockey-field",
                "paddle-court",
                "polo-field",
                "rugby-field",
                "volleyball-court",
                "equestrian-center",
                "medical-center",
                "cctv",
                "clubhouse-adults",
                "clubhouse-children",
                "school",
                "sports-school",
                "industrial-power",
                "crane",
                "generator",
                "cinema",
                "lift",
                "engines",
                "horse-riding",
                "playground",
                "quincho",
                "restaurant",
                "housekeeping",
                "spa",
                "multipurpose-room",
                "water-heater",
                "video-club",
                "wifi-zone",
                "microwave",
                "minibar",
                "fan",
                "equipped-kitchen",
                "washing-machine",
                "dryer",
                "wardrobe",
                "hangers",
                "iron",
                "clothesline",
                "hairdryer",
                "gas-refill",
                "dishwasher",
                "cleaning-products"
              ],
              "enumTitles": [
                "Air conditioning",
                "Heating",
                "Central heating",
                "Jacuzzi",
                "Sauna",
                "Furnished",
                "Basketball court",
                "Bocce court",
                "Sports court",
                "Golf course",
                "Hockey field",
                "Paddle court",
                "Polo field",
                "Rugby field",
                "Volleyball court",
                "Equestrian center",
                "Medical center",
                "Closed-circuit TV",
                "Adults' clubhouse",
                "Children's clubhouse",
                "School",
                "Sports school",
                "Industrial power",
                "Crane",
                "Generator",
                "Cinema",
                "Freight lift",
                "Engines",
                "Horse riding",
                "Playground",
                "Quincho",
                "Restaurant",
                "Housekeeping",
                "Spa",
                "Multipurpose room",
                "Water heater",
                "Video club",
                "Wi-Fi zone",
                "Microwave",
                "Minibar",
                "Fan",
                "Equipped kitchen",
                "Washing machine",
                "Dryer",
                "Wardrobe",
                "Hangers",
                "Iron",
                "Clothesline",
                "Hairdryer",
                "Free gas refill",
                "Dishwasher",
                "Cleaning products"
              ]
            }
          },
          "services": {
            "title": "Services",
            "type": "array",
            "description": "Require services such as electricity, running water, natural gas, heating, internet, or cable TV.",
            "items": {
              "type": "string",
              "enum": [
                "running-water",
                "sewer",
                "telephone",
                "paved-road",
                "cable-tv",
                "internet",
                "wifi",
                "electricity",
                "natural-gas",
                "laundry",
                "heating",
                "doorman",
                "cleaning",
                "bedding",
                "towels",
                "television",
                "cable-television",
                "elevator",
                "safe"
              ],
              "enumTitles": [
                "Running water",
                "Sewer connection",
                "Telephone",
                "Paved road",
                "Cable TV",
                "Internet",
                "Wi-Fi",
                "Electricity",
                "Natural gas",
                "Laundry",
                "Heating",
                "Doorman or building staff",
                "Cleaning service",
                "Bed linens",
                "Towels",
                "Television",
                "Cable television",
                "Elevator",
                "Safe"
              ]
            }
          },
          "multimediaTypes": {
            "title": "Media types",
            "type": "array",
            "description": "Require one or more media types in the listing.",
            "items": {
              "type": "string",
              "enum": [
                "photos",
                "video",
                "virtual-tour",
                "floor-plan"
              ],
              "enumTitles": [
                "Photos",
                "Video",
                "360° virtual tour",
                "Floor plan"
              ]
            }
          },
          "publisherType": {
            "title": "Listed by",
            "enum": [
              "",
              "professional",
              "owner"
            ],
            "type": "string",
            "description": "Choose listings from real estate professionals, owners, or both.",
            "default": ""
          },
          "publishedWithin": {
            "title": "Published within",
            "enum": [
              "",
              "today",
              "since-yesterday",
              "last-7-days",
              "last-15-days",
              "last-30-days",
              "last-45-days"
            ],
            "type": "string",
            "description": "Limit results to recently published listings.",
            "default": ""
          },
          "propertyAge": {
            "title": "Property age",
            "enum": [
              "",
              "under-construction",
              "brand-new",
              "up-to-5-years",
              "5-to-10-years",
              "10-to-20-years",
              "20-to-50-years",
              "over-50-years"
            ],
            "type": "string",
            "description": "Limit results by construction status or property age.",
            "default": ""
          },
          "mediaType": {
            "title": "Required media",
            "enum": [
              "",
              "photos",
              "video",
              "virtual-tour",
              "floor-plan"
            ],
            "type": "string",
            "description": "Return listings that include the selected kind of media.",
            "default": ""
          },
          "projectStage": {
            "title": "Development stage",
            "enum": [
              "",
              "pre-construction",
              "under-construction",
              "completed"
            ],
            "type": "string",
            "description": "For new developments, choose a construction stage.",
            "default": ""
          },
          "suitableForMortgage": {
            "title": "Suitable for mortgage",
            "type": "boolean",
            "description": "Return listings marked as suitable for mortgage financing.",
            "default": false
          },
          "petsAllowed": {
            "title": "Pets allowed",
            "type": "boolean",
            "description": "Return listings that allow pets.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}