Verwenden Sie BallotSelection, um die Wahlauswahlen in einem Wettbewerb zu identifizieren, z. B. wenn Sie Kandidaten und Parteien mit ihren Stimmenzahlen verknüpfen.
In diesem Dokument werden BallotSelection und die zugehörigen Unterentitäten behandelt:
BallotSelectionCandidateSelectionPartySelectionBallotMeasureSelectionSpecialBallotSelection
Wählen Sie einen der folgenden Feedtypen aus, um mehr darüber zu erfahren, wie Sie BallotSelection und die zugehörigen Elemente mit diesem Feedtyp verwenden.
SpecialBallotSelection
Dieser Typ von BallotSelection wird für die Aggregation von Stimmenzahlen (z.B. Aggregation mehrerer Kandidaten zu „Andere“) und verschiedene Arten von Nicht-Stimmen verwendet (z.B. leere Stimmzettel, ungültige oder verdorbene Stimmzettel und Stimmen für „Keiner der oben genannten“).
SpecialBallotSelection sollte nicht im allgemeinen BallotSelection
Unterelement von Contest verwendet werden, sondern hat eigene Felder in Contest, nämlich AggregateBallotSelection, BlankBallotSelection, NoneOfTheAboveBallotSelection und NullBallotSelection. Weitere Informationen finden Sie unter
Contest Elemente für weitere
Details.
Elemente
In der folgenden Tabelle werden die Elemente für SpecialBallotSelection beschrieben:
| Element | Multiplizität | Typ | Beschreibung |
|---|---|---|---|
CountedInTotal |
0 oder 1 | boolean |
Gibt an, ob die Stimmenzahlen der Entitätsauswahl in der Gesamtzahl der abgegebenen
Stimmen berücksichtigt werden, die als bemerkenswert gelten. Wenn nicht angegeben, wird true angenommen.
|
ExternalIdentifiers |
0 oder 1 | ExternalIdentifiers |
Verknüpft eine ID mit der Wahlauswahl. Eine stabile ID ist erforderlich. |
Selection |
1 | InternationalizedText |
Gibt einen Namen für diese Wahlauswahl an, z. B. „Andere“ oder „Keiner der oben genannten“. |
Beispiele
XML
<AggregateBallotSelection objectId="sbs-3"> <Selection> <Text language="en">Other Candidates</Text> </Selection> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>sbs-3</Value> </ExternalIdentifier> </ExternalIdentifiers> </AggregateBallotSelection> <!-- Counts of ballots left blank --> <BlankBallotSelection objectId="sbs-4"> <Selection> <Text language="en">Blank ballots</Text> </Selection> <!-- These ballots count in the total and can affect majorities --> <CountedInTotal>true</CountedInTotal> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>sbs-4</Value> </ExternalIdentifier> </ExternalIdentifiers> </BlankBallotSelection> <!-- Votes for "None of the above" option on the ballot --> <NoneOfTheAboveBallotSelection objectId="sbs-5"> <!-- The NOTA selection optiona as it appears on the ballot, often "None of the above", "None", or "Uncommitted" --> <Selection> <Text language="en">None</Text> </Selection> <!-- These ballots count in the total and can affect majorities --> <CountedInTotal>true</CountedInTotal> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>sbs-5</Value> </ExternalIdentifier> </ExternalIdentifiers> </NoneOfTheAboveBallotSelection> <!-- Counts of null or spoiled ballots, i.e. ballots that have been marked in a way that the vote cannot be counted --> <NullBallotSelection objectId="sbs-6"> <!-- How these ballots are often called in a given country, often "null" or "spoiled" --> <Selection> <Text language="en">Spoiled ballots</Text> </Selection> <!-- These ballots do count in the total and are treated as the same as if this vote did not happen at all --> <CountedInTotal>false</CountedInTotal> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>sbs-6</Value> </ExternalIdentifier> </ExternalIdentifiers> </NullBallotSelection>