Properties
| Name | Type | Description |
|---|---|---|
| id | string | Review identifier |
| headline | string | Review headline |
| comment | string | Review text |
| rating | number | Rating value |
| date | string | Review date |
| alias | string | Reviewer alias |
| principal | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Review",
"title": "Review",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Review identifier"
},
"headline": {
"type": "string",
"description": "Review headline"
},
"comment": {
"type": "string",
"description": "Review text"
},
"rating": {
"type": "number",
"format": "double",
"description": "Rating value"
},
"date": {
"type": "string",
"format": "date-time",
"description": "Review date"
},
"alias": {
"type": "string",
"description": "Reviewer alias"
},
"principal": {
"$ref": "#/components/schemas/Principal"
}
}
}