{
  "lexicon": 1,
  "id": "net.bisks.rateyourbuild.rating",
  "defs": {
    "main": {
      "type": "record",
      "description": "A person's own 0-10 rating of one site the buildthis bot has built, RateYourMusic-style. One record per site — the record key is the site's bare name (e.g. \"steamtags\"), so re-rating a site overwrites its record in place rather than creating a new one. Written and read by rateyourbuild (https://rateyourbuild.bisks.net).",
      "key": "any",
      "record": {
        "type": "object",
        "required": ["subject", "score", "ratedAt"],
        "properties": {
          "subject": {
            "type": "string",
            "maxLength": 200,
            "maxGraphemes": 100,
            "description": "The bare name of the rated site (sites/<name>/, served at <name>.bisks.net) — not its URL. The record's rkey is this value."
          },
          "score": {
            "type": "integer",
            "minimum": 0,
            "maximum": 10,
            "description": "The rater's own judgement of the site, 0 (worst) to 10 (best)."
          },
          "ratedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was last written, as an ISO 8601 datetime."
          }
        }
      }
    }
  }
}
