Real-estate Listings (JSON, 30 records)
The property listings as a JSON array — the format twin of the CSV, for import and mapping tests.
[
{
"listing_id": "L0001",
"address": "8769 Oak St",
"city": "Denver",
"state": "CO",
"type": "apartment",
"price": 1187000,
"beds": 3,
"baths": 3.0,
"sqft": 1608,
"year_built": 1987,
"latitude": 39.75292,
"longitude": -105.05308,
"status": "for_sale"
},
{
"listing_id": "L0002",
"address": "3795 Pine St",
"city": "Portland",
"state": "OR",
"type": "condo",
"price": 1059000,
"beds": 1,
"baths": 1.5,
"sqft": 2998,
"year_built": 1978,
"latitude": 45.51004,
"longitude": -122.61966,
"status": "sold"
},
{
"listing_id": "L0003",
"address": "9786 Ash St",
"city": "Portland",
"state": "OR",
"type": "condo",
"price": 262000,
"beds": 3,
"baths": 2.5,
"sqft": 3520,
"year_built": 1955,
"latitude": 45.48338,
"longitude": -122.6642,
"status": "for_sale"
},
{
"listing_id": "L0004",
"address": "7319 Willow St",
"city": "Austin",Specifications
- Records
- 30
- Schema
- listing_id, address, city, state, type, price, beds, baths, sqft, year_built, latitude, longitude, status
- Domain
- real estate
What is a .json file?
JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.
How to use this file
Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.
Code examples
import json
with open("listings.json") as f:
data = json.load(f)
print(type(data), len(data))Related files
- geojsonWorld Cities (40 points, GeoJSON)The same 40 world cities as a GeoJSON FeatureCollection of Points (longitude, latitude order per RFC 7946), each with name, country, and population properties. The mapping twin of the CSV, for testing GeoJSON parsers and map renderers.

- csvWorld Cities (40 rows, CSV)A curated world-cities dataset — 40 major cities with country, latitude, longitude, and population. A realistic geospatial fixture for testing map plots, geocoding, and CSV→GeoJSON conversion. GeoJSON twin included.

- csvBank Transactions (CSV, 60 rows)A bank-transaction statement — 60 debits and credits across three accounts (masked numbers) with running balances, categories, and merchants. Synthetic data for testing statement parsers, categorisation, and reconciliation.

- jsonBank Transactions (JSON, 60 records)The bank transactions as a JSON array — the format twin of the CSV, for import and reconciliation testing.

- csvE-commerce Customers (CSV, 500 rows)A realistic e-commerce customer directory (500 rows) — part of a relational dataset (products, customers, orders) with CSV, JSON, SQL, and Parquet twins for testing joins, imports, and conversion.

- jsonE-commerce Customers (JSON, 500 records)The e-commerce customers table as a JSON array — the format twin of the CSV, for import and conversion testing.

Generated by generation/data_domains.py. Free for any use, no attribution required — license.