{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "review",
  "allOf": [{ "$ref": "base" }],
  "properties": {
    "type": { "const": "review" },
    "subject": { "type": "string" },
    "reviewType": { "$ref": "enums#/$defs/reviewType" },
    "rating": { "type": "number", "minimum": 0, "maximum": 5 },
    "pros": { "type": "array", "items": { "type": "string" } },
    "cons": { "type": "array", "items": { "type": "string" } },
    "specs": { "type": "object", "additionalProperties": true },
    "buyLink": { "type": ["string", "null"] },
    "demoAudio": { "type": ["string", "null"] }
  },
  "required": ["subject", "reviewType", "rating"]
}
