{
  "$ref": "#/definitions/PopoloCount",
  "definitions": {
    "PopoloCount": {
      "type": "object",
      "properties": {
        "option": {
          "type": "string",
          "description": "e.g., yes, no, abstain, absent, not voting"
        },
        "value": {
          "type": "integer",
          "minimum": 0
        }
      },
      "required": [
        "option",
        "value"
      ],
      "additionalProperties": false
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}