{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/RecordCounts",
  "definitions": {
    "RecordCounts": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/RecordCount"
      }
    },
    "RecordCount": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "count": {
          "type": "number"
        }
      },
      "required": ["name", "count"],
      "additionalProperties": false
    }
  }
}
