Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
55 lines
No EOL
1.3 KiB
JSON
55 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "Target Product",
|
|
"description": "Extract product details from Target product pages",
|
|
"site": "target.com",
|
|
"category": "ecommerce",
|
|
"icon": "\ud83c\udfaf",
|
|
"url_pattern": "*://www.target.com/p/*",
|
|
"schema": {
|
|
"name": "target_product",
|
|
"base_selector": "[data-test='product-details']",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "[data-test='product-title']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": "[data-test='product-price']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "rating",
|
|
"selector": "[data-test='rating']",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "review_count",
|
|
"selector": "[data-test='reviews-count']",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "[data-test='product-description']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": "[data-test='hero-image'] img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
},
|
|
{
|
|
"name": "fulfillment",
|
|
"selector": "[data-test='fulfillment']",
|
|
"type": "text"
|
|
}
|
|
]
|
|
},
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |