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

37 lines
648 B
JSON

{
"$id": "reviews",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"rating",
"content"
],
"properties": {
"rating": {
"type": "number",
"minimum": 1,
"maximum": 10
},
"content": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"movie": {
"type": "string",
"x-relation": {
"collection": "movies",
"type": "single"
}
},
"author": {
"type": "string",
"x-relation": {
"collection": "people",
"type": "single"
}
}
}
}