Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
70 lines
No EOL
1.7 KiB
JSON
70 lines
No EOL
1.7 KiB
JSON
{
|
|
"name": "Lululemon Product",
|
|
"description": "Extract product details from Lululemon",
|
|
"site": "lululemon.com",
|
|
"category": "ecommerce",
|
|
"icon": "\ud83e\uddd8",
|
|
"schema": {
|
|
"name": "lululemon_product",
|
|
"base_selector": ".product-detail",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "h1",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": "[class*='price']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "[class*='description']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": "[class*='image'] img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
},
|
|
{
|
|
"name": "color_options",
|
|
"selector": "[class*='color'], [class*='swatch']",
|
|
"type": "count"
|
|
},
|
|
{
|
|
"name": "size_options",
|
|
"selector": "[class*='size']",
|
|
"type": "count"
|
|
},
|
|
{
|
|
"name": "rating",
|
|
"selector": "[class*='rating']",
|
|
"type": "attribute",
|
|
"attribute": "aria-label"
|
|
},
|
|
{
|
|
"name": "review_count",
|
|
"selector": "[class*='reviews']",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "size_fit",
|
|
"selector": "[class*='fit'], [class*='size-guide']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "material",
|
|
"selector": "[class*='material'], [class*='fabric']",
|
|
"type": "text"
|
|
}
|
|
]
|
|
},
|
|
"url_pattern": "*://www.lululemon.com/*",
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |