{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "comment_bans",
  "title": "comment_bans",
  "description": "Base comment_bans definitions",
  "definitions": {
    "comment_ban": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "reason": {
          "type": "string",
          "minLength": 1,
          "maxLength": 2000
        },
        "expires_at": {
          "type": ["string", "null"],
          "format": "date-time"
        }
      },
      "required": ["reason"]
    }
  }
}
