ecommerce-app/.gitapp/schemas/reviews.json

43 lines
749 B
JSON

{
"$id": "reviews",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"rating",
"title"
],
"properties": {
"rating": {
"type": "integer",
"minimum": 1,
"maximum": 5
},
"title": {
"type": "string"
},
"content": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"verified": {
"type": "boolean"
},
"product": {
"type": "string",
"x-relation": {
"collection": "products",
"type": "single"
}
},
"customer": {
"type": "string",
"x-relation": {
"collection": "customers",
"type": "single"
}
}
}
}