Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
66 lines
No EOL
1.5 KiB
JSON
66 lines
No EOL
1.5 KiB
JSON
{
|
|
"name": "REI Product",
|
|
"description": "Extract product details from REI",
|
|
"site": "rei.com",
|
|
"category": "ecommerce",
|
|
"icon": "\ud83c\udfd4\ufe0f",
|
|
"schema": {
|
|
"name": "rei_product",
|
|
"base_selector": ".product-detail",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "h1",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": "[class*='price']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "rating",
|
|
"selector": "[class*='rating'], .stars",
|
|
"type": "attribute",
|
|
"attribute": "aria-label"
|
|
},
|
|
{
|
|
"name": "review_count",
|
|
"selector": "[class*='reviews']",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "brand",
|
|
"selector": "[class*='brand']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "[class*='description']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": "[class*='image'] img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
},
|
|
{
|
|
"name": "in_store_pickup",
|
|
"selector": "[class*='store'], [class*='pickup']",
|
|
"type": "exists"
|
|
},
|
|
{
|
|
"name": "member_price",
|
|
"selector": "[class*='member']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
}
|
|
]
|
|
},
|
|
"url_pattern": "*://www.rei.com/*",
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |