CountItemType

此枚举适用于在选举过程中统计的项目,以及计数状态关注的项目。用于 CountsCountStatus 元素中。

下表介绍了 CountItemType 的值:

说明
absentee 适用于一般缺席选票,没有更具体的类型。
absentee-in-person 适用于线下(例如市政府办公室)投票的缺席投票。
absentee-mail 适用于通过邮寄信件提交的缺席选票。
early 适用于提前投票阶段的投票活动。
election-day 适用于选举日投票表。
provisional 适用于挑战选票。
total 所有投票类型的总数。
write-in 用于写票。
other 计数类型未包含在此枚举中。如果使用了此项,请在 OtherType 元素中提供该项的自定义类型。

结果制表类型

下表列出了 VoteCounts 报告的选举结果的枚举。

类型 说明 示例 XML
total 一个投票表的得票数。
    <VoteCounts>
      <GpUnitId>ru_001</GpUnitId>
      <Type>total</Type>
      <Count>6173433</Count>
    </VoteCounts>
total-percent

一个投票结果的投票百分比,以 0 到 100 之间的数字表示。

例如,将 24.2% 报告为 24.2,而不是 0.242。

    <VoteCounts>
      <GpUnitId>ru_de_999</GpUnitId>
      <Type>other</Type>
      <OtherType>total-percent</OtherType>
      <Count>24.2</Count>
    </VoteCounts>
seats-won 已宣布获胜的政党的席位数。
    <VoteCounts>
      <GpUnitId>ru_eu_999</GpUnitId>
      <Type>other</Type>
      <OtherType>seats-won</OtherType>
      <Count>2</Count>
    </VoteCounts>
seats-leading 目前领先但尚未宣布获胜的席位数量。
    <VoteCounts>
      <GpUnitId>ru_eu_999</GpUnitId>
      <Type>other</Type>
      <OtherType>seats-leading</OtherType>
      <Count>2</Count>
    </VoteCounts>
seats-no-election 本次竞选中不需要选举的席位。
    <VoteCounts>
      <GpUnitId>ru_eu_999</GpUnitId>
      <Type>other</Type>
      <OtherType>seats-no-election</OtherType>
      <Count>2</Count>
    </VoteCounts>
seats-total 座位类型的总数。
    <VoteCounts>
      <GpUnitId>ru_eu_999</GpUnitId>
      <Type>other</Type>
      <OtherType>seats-total</OtherType>
      <Count>2</Count>
    </VoteCounts>
seats-delta 此次选举导致席位数量发生变化。可以是正值,也可以是负数。
    <VoteCounts>
      <GpUnitId>ru_eu_999</GpUnitId>
      <Type>other</Type>
      <OtherType>seats-delta</OtherType>
      <Count>2</Count>
    </VoteCounts>