{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Review",
    "description": "A review record.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#RecordEntity"
        },
        {
            "properties": {
                "title": {
                    "description": "The title text of the review.",
                    "type": "string"
                },
                "summary": {
                    "description": "The summary text of the review.",
                    "type": "string"
                },
                "state": {
                    "description": "The state of the review.",
                    "type": "string"
                }
            },
            "required": ["title"]
        }
    ]
}
