pryscraper/templates/yelp-business.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

60 lines
No EOL
1.3 KiB
JSON

{
"name": "Yelp Business",
"description": "Extract business info and reviews from Yelp",
"site": "yelp.com",
"category": "reviews",
"icon": "\ud83d\udccd",
"schema": {
"name": "yelp_business",
"base_selector": ".business-details",
"fields": [
{
"name": "name",
"selector": "h1",
"type": "text"
},
{
"name": "rating",
"selector": ".rating-large",
"type": "attribute",
"attribute": "aria-label",
"transform": "float"
},
{
"name": "review_count",
"selector": ".review-count",
"type": "text",
"transform": "int"
},
{
"name": "price_range",
"selector": ".price-range",
"type": "text"
},
{
"name": "phone",
"selector": ".phone",
"type": "text"
},
{
"name": "address",
"selector": "address",
"type": "text"
},
{
"name": "website",
"selector": ".website a",
"type": "attribute",
"attribute": "href"
},
{
"name": "category",
"selector": ".category",
"type": "text"
}
]
},
"url_pattern": "*://www.yelp.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}