{
  "name": "E-Commerce",
  "description": "Schema templates for online stores and e-commerce websites. Includes Product, BreadcrumbList, and Organization schemas.",
  "industry": "ecommerce",
  "recommended_schemas": ["Product", "BreadcrumbList", "Organization"],
  "default_settings": {
    "auto_generate_post_types": ["product"],
    "enable_breadcrumbs": true,
    "enable_organization": true
  },
  "schema_templates": {
    "Product": {
      "@context": "https://schema.org",
      "@type": "Product",
      "name": "",
      "image": "",
      "description": "",
      "sku": "",
      "brand": { "@type": "Brand", "name": "" },
      "offers": {
        "@type": "Offer",
        "price": "",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "url": "",
        "priceValidUntil": ""
      },
      "aggregateRating": { "@type": "AggregateRating", "ratingValue": "", "reviewCount": "" }
    },
    "BreadcrumbList": {
      "@context": "https://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "" },
        { "@type": "ListItem", "position": 2, "name": "Shop", "item": "" },
        { "@type": "ListItem", "position": 3, "name": "", "item": "" }
      ]
    },
    "Organization": {
      "@context": "https://schema.org",
      "@type": "Organization",
      "name": "",
      "url": "",
      "logo": "",
      "sameAs": []
    }
  }
}
