{
"title": "Net-a-Porter scraper",
"test_urls": [
"https://www.net-a-porter.com/en-gb/shop/product/veronica-beard/clothing/midi/louise-faux-leather-midi-skirt/1647597355019880",
"https://www.net-a-porter.com/en-gb/shop/product/gianvito-rossi/shoes/ankle/85-suede-ankle-boots/1647597286978314",
],
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
"description": "The name of the product"
},
"brand": {
"type": "string"
"description": "The brand of the product"
},
"price": {
"type": "number"
"description": "The price of the product"
},
"currency": {
"type": "string"
"description": "The currency of the price"
}
"main_image_url": {
"type": "string"
"description": "The URL of the main image of the product"
}
},
"required": ["name", "brand", "price", "currency", "main_image_url"]
}
}