Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
54 lines
No EOL
1.3 KiB
JSON
54 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "Zillow Listing",
|
|
"description": "Extract real estate listing details from Zillow",
|
|
"site": "zillow.com",
|
|
"category": "real_estate",
|
|
"icon": "\ud83c\udfe1",
|
|
"url_pattern": "*://www.zillow.com/homedetails/*",
|
|
"schema": {
|
|
"name": "zillow_listing",
|
|
"base_selector": ".ds-home-details-chip",
|
|
"fields": [
|
|
{
|
|
"name": "address",
|
|
"selector": "[data-testid='home-details-chip-address']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": "[data-testid='home-details-chip-price']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "bedrooms",
|
|
"selector": "[data-testid='bed-bath-beyond']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "bathrooms",
|
|
"selector": "[data-testid='bed-bath-beyond']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "sqft",
|
|
"selector": "[data-testid='bed-bath-beyond']",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "[data-testid='description']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": ".media-stream img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
}
|
|
]
|
|
},
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |