কোনো প্রতিযোগিতার ব্যালট নির্বাচনগুলো শনাক্ত করতে BallotSelection ব্যবহার করুন, যেমন—যখন আপনি প্রার্থী ও দলগুলোকে তাদের ভোট গণনার সাথে সংযুক্ত করেন।
এই নথিতে BallotSelection এবং এর উপ-সত্তাগুলো নিয়ে আলোচনা করা হয়েছে:
-
BallotSelection-
CandidateSelection -
PartySelection -
BallotMeasureSelection -
SpecialBallotSelection
-
BallotSelection এবং এর অন্তর্নিহিত উপাদানগুলো সেই ধরনের ফিডের সাথে কীভাবে ব্যবহার করতে হয়, সে সম্পর্কে আরও জানতে নিম্নলিখিত ফিড প্রকারগুলোর মধ্যে একটি নির্বাচন করুন।
বিশেষ ব্যালট নির্বাচন
এই ধরনের BallotSelection ভোট গণনার একত্রীকরণের জন্য (যেমন একাধিক প্রার্থীকে "অন্যান্য" হিসেবে একত্রিত করা) এবং বিভিন্ন ধরনের অ-ভোটের (অর্থাৎ খালি ব্যালট, বাতিল বা নষ্ট ব্যালট এবং "উপরের কোনোটিই নয়" ভোট) জন্য ব্যবহৃত হয়।
Contest এর সাধারণ BallotSelection সাব-এলিমেন্টে SpecialBallotSelection ব্যবহার করা উচিত নয় এবং এর পরিবর্তে Contest এ এর নিজস্ব স্বতন্ত্র ফিল্ড রয়েছে, যথা AggregateBallotSelection , BlankBallotSelection , NoneOfTheAboveBallotSelection এবং NullBallotSelection । আরও বিস্তারিত জানার জন্য Contest এলিমেন্টগুলো দেখুন।
উপাদান
নিম্নলিখিত সারণিতে SpecialBallotSelection এর উপাদানগুলো বর্ণনা করা হয়েছে:
| উপাদান | বহুত্ব | প্রকার | বর্ণনা |
|---|---|---|---|
CountedInTotal | ০ অথবা ১ | boolean | সত্তা নির্বাচনের ভোট সংখ্যা মোট প্রদত্ত ভোটের মধ্যে গণনা করা হবে কিনা, তা উল্লেখযোগ্য বলে বিবেচিত। অনির্দিষ্ট থাকলে true বলে ধরে নেওয়া হয়। |
ExternalIdentifiers | ০ অথবা ১ | ExternalIdentifiers | ব্যালট প্রস্তাব নির্বাচনের সাথে একটি আইডি সংযুক্ত করে। একটি স্থিতিশীল শনাক্তকারী প্রয়োজন। |
Selection | ১ | InternationalizedText | Provides a name for this ballot selection, such as "Others" or "None of the above". |
উদাহরণ
এক্সএমএল
<AggregateBallotSelection objectId="selection3"> <Selection> <Text language="en">Other Candidates</Text> </Selection> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>selection3</Value> </ExternalIdentifier> </ExternalIdentifiers> </AggregateBallotSelection> <!-- Counts of ballots left blank --> <BlankBallotSelection objectId="selection4"> <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>selection4</Value> </ExternalIdentifier> </ExternalIdentifiers> </BlankBallotSelection> <!-- Votes for "None of the above" option on the ballot --> <NoneOfTheAboveBallotSelection objectId="selection5"> <!-- 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>selection5</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="selection5"> <!-- 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>selection5</Value> </ExternalIdentifier> </ExternalIdentifiers> </NullBallotSelection>
JSON
"AggregateBallotSelection": { "objectId": "selection3", "Selection": { "Text": { "@language": "en", "#text": "Other Candidates" } }, "ExternalIdentifiers": { "ExternalIdentifier": { "Type": "other", "OtherType": "stable", "Value": "selection3" } }, }, "BlankBallotSelection": { "objectId": "selection4", "Selection": { "Text": { "@language": "en", "#text": "Blank Ballots" } }, "CountedInTotal": true, "ExternalIdentifiers": { "ExternalIdentifier": { "Type": "other", "OtherType": "stable", "Value": "selection4" } } }, "NoneOfTheAboveBallotSelection": { "objectId": "selection5", "Selection": { "Text": { "@language": "en", "#text": "None" } }, "CountedInTotal": true, "ExternalIdentifiers": { "ExternalIdentifier": { "Type": "other", "OtherType": "stable", "Value": "selection5" } } }, "NullBallotSelection": { "objectId": "selection5", "Selection": { "Text": { "@language": "en", "#text": "Spoiled ballots" } }, "CountedInTotal": false, "ExternalIdentifiers": { "ExternalIdentifier": { "Type": "other", "OtherType": "stable", "Value": "selection5" } } }