ai-ops-templates/templates/schema-product.json
DMleadgen 3cb8d3cb3f Initial commit: AI Ops Templates repository
- Schema.org JSON-LD templates (product, event, local-business, faq)
- Brand, UI, SEO, and decision guide rules
- Working code snippets (vendor-card, schema-inject, deploy-webhook)
- JSON schemas for project config validation
- Client presets (slc-bride, default)
- Self-update protocol with changelog tracking

Made-with: Cursor
2026-03-06 16:03:31 -07:00

34 lines
826 B
JSON

{
"_meta": {
"last_updated": "2026-03-06T15:52:00Z",
"version": "1.0.0",
"description": "Product structured data template (Schema.org JSON-LD)"
},
"@context": "https://schema.org",
"@type": "Product",
"name": "{{PRODUCT_NAME}}",
"description": "{{PRODUCT_DESCRIPTION}}",
"image": [
"{{PRODUCT_IMAGE_URL}}"
],
"brand": {
"@type": "Brand",
"name": "{{BRAND_NAME}}"
},
"offers": {
"@type": "Offer",
"url": "{{PRODUCT_URL}}",
"priceCurrency": "{{CURRENCY}}",
"price": "{{PRICE}}",
"availability": "https://schema.org/{{AVAILABILITY}}",
"seller": {
"@type": "Organization",
"name": "{{SELLER_NAME}}"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "{{RATING_VALUE}}",
"reviewCount": "{{REVIEW_COUNT}}"
}
}