Review Submitted
v1.0.0eventsPublished when a customer submits a review. The review is stored but not yet visible — it awaits moderation.
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "ReviewSubmitted",
4 "type": "object",
5 "properties": {
6 "reviewId": { "type": "string", "format": "uuid" },
7 "productId": { "type": "string" },
8 "customerId": { "type": "string" },
9 "rating": { "type": "integer", "minimum": 1, "maximum": 5 },
10 "title": { "type": "string" },
11 "body": { "type": "string" },
12 "submittedAt": { "type": "string", "format": "date-time" }
13 },
14 "required": ["reviewId", "productId", "customerId", "rating", "submittedAt"]
15}
16Details
- Format
- JSON Schema
- Resource
- events
- Filename
- schema.json