CountItemType

この列挙は、選挙期間中にカウントされ、カウントのステータスに関心を持つアイテムに対するものです。Counts 要素と CountStatus 要素で使用します。

次の表に、CountItemType の値を示します。

説明
absentee より具体的なタイプがない、一般的な不在票の場合。
absentee-in-person 市役所など、対面で行われる欠席者の投票用紙の場合。
absentee-mail 郵送で提出された不在者投票の場合。
early 開票期間前の投票用紙。
election-day 選挙日に発表された投票用紙について。
provisional チャレンジ投票用。
total すべての投票タイプの合計。
write-in 投票用紙に関する提出用フォーム。
other count は、この列挙型に含まれていない型です。使用する場合は、OtherType 要素にアイテムのカスタムタイプを指定します。

結果の集計タイプ

次の表に、VoteCounts によって報告される選挙結果の列挙を示します。

種類 説明 Sample XML
total 1 つの投票に対する投票数。
    <VoteCounts>
      <GpUnitId>ru_001</GpUnitId>
      <Type>total</Type>
      <Count>6173433</Count>
    </VoteCounts>
total-percent

1 つの投票に投じた投票率(0 ~ 100 の数値)。

たとえば 24.2% は、0.242 ではなく 24.2 とレポートします。

    <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>