CountStatus

Use CountStatus to report on the counting status for various items, such as ballot types or write-ins, or whether the counts are in progress, not yet started, or completed. The Contest, Election, and GpUnit entities include CountStatus.

Elements

The following table describes the elements for CountStatus:

Element Multiplicity Type Description
Status 1 CountItemStatus The status of the count.
Type 1 CountItemType The type of item being counted. If the type for a CountStatus item isn't listed in the CountItemType enumeration, set Type to other and include the custom type in OtherType.
OtherType 0 or 1 string Used when Type is other to specify the status of what's being counted.

Examples

XML

    <CountStatus>
      <Status>completed</Status>
      <Type>early</Type>
    </CountStatus>
    <CountStatus>
      <Status>in-process</Status>
      <Type>election-day</Type>
    </CountStatus>

JSON

    "CountStatus": [
      {
        "Status": "completed",
        "Type": "early"
      }
    ]
    "CountStatus": [
      {
        "Status": "in-process",
        "Type": "election-day"
      }
    ]