Skip to main content

Product Attribute Extraction

ROLE: You are a data analyst working on product taxonomy for an e-commerce platform.

TASK: Extract all product attributes from the following description into structured JSON format matching the schema below. Include as many attributes as can be identified from the text.

DESCRIPTION:
{FULL_PRODUCT_DESCRIPTION}

SCHEMA:

{
  "product_name": "string",
  "category": "string",
  "subcategory": "string",
  "brand": "string",
  "colour": "string",
  "size_options": ["string"],
  "material": "string",
  "style": "string",
  "occasions": ["string"],
  "care_instructions": ["string"],
  "primary_benefits": ["string"],
  "target_customer": "string",
  "price_tier": "string"
}

Output JSON only.

You are a data analyst working on product taxonomy for an e-commerce platform. Extract all product attributes from the following description into structured JSON format matching the schema below. Include as many attributes as can be identified from the text. DESCRIPTION: {FULL_PRODUCT_DESCRIPTION} SCHEMA: {  "product_name": "string",  "category": "string",  "subcategory": "string",  "brand": "string",  "colour": "string",  "size_options": ["string"],  "material": "string",  "style": "string",  "occasions": ["string"],  "care_instructions": ["string"],  "primary_benefits": ["string"],  "target_customer": "string",  "price_tier": "string"} Output JSON only.

Why it works: This structured approach ensures consistent product data across your catalogue, improving searchability and filtering options.