forked from votinginfoproject/vip-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_feed.xml
2156 lines (2139 loc) · 73.9 KB
/
sample_feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!--
Sample XML file for Voting Information Project (VIP) Spec Version 5.0
Date: 2014-03-21
File would be named: vipFeed-51-2013-11-05.xml
A sample file for one state's (Virginia's) election.
Data is based on the 2013 general election and presented for Albemarle County only.
For the sake of file size, street segments are not included.
NOTE: The primary goal of the ordering of elements within this sample feed is to aid the reader
in understanding how the data objects within VIP 5.0 relate to each other.
-->
<VipObject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="5.1" xsi:noNamespaceSchemaLocation="http://votinginfoproject.github.com/vip-specification/vip_spec.xsd">
<!-- Source of this feed. -->
<Source id="src1">
<DateTime>2013-10-24T14:25:28</DateTime>
<Description>
<Text language="en">SBE is the official source for Virginia data</Text>
</Description>
<Name>State Board of Elections, Commonwealth of Virginia</Name>
<OrganizationUri>http://www.sbe.virginia.gov/</OrganizationUri>
<VipId>51</VipId>
</Source>
<!-- The election with which this information is associated. -->
<Election id="ele30000">
<AbsenteeRequestDeadline>2013-10-30</AbsenteeRequestDeadline>
<Date>2013-11-05</Date>
<ElectionType>
<Text language="en">General</Text>
<Text language="es">Generales</Text>
</ElectionType>
<HasElectionDayRegistration>false</HasElectionDayRegistration>
<HoursOpenId>hours0001</HoursOpenId>
<IsStatewide>true</IsStatewide>
<Name>
<Text language="en">2013 Virginia General Election</Text>
</Name>
<RegistrationDeadline>2013-10-15</RegistrationDeadline>
<ResultsUri>http://www.sbe.virginia.gov/ElectionResults.html</ResultsUri>
<StateId>st51</StateId>
</Election>
<!-- The state (jurisdiction) of this election. -->
<State id="st51">
<ElectionAdministrationId>ea40133</ElectionAdministrationId>
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va</Value>
</ExternalIdentifier>
<ExternalIdentifier>
<Type>fips</Type>
<Value>51</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>Virginia</Name>
</State>
<!-- A locality (e.g., a county) in which part of this election occurs. -->
<Locality id="loc70001">
<ElectionAdministrationId>ea40001</ElectionAdministrationId>
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va/county:albemarle</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>ALBEMARLE COUNTY</Name>
<StateId>st51</StateId>
<Type>county</Type>
</Locality>
<!-- Information about the election administration organizations for various jurisdictions. -->
<ElectionAdministration id="ea40133">
<AbsenteeUri>http://www.sbe.virginia.gov/absenteevoting.html</AbsenteeUri>
<AmIRegisteredUri>https://www.vote.virginia.gov/</AmIRegisteredUri>
<Department>
<ContactInformation label="ci60000">
<AddressLine>Washington Building First Floor</AddressLine>
<AddressLine>1100 Bank Street</AddressLine>
<AddressLine>Richmond, VA 23219</AddressLine>
<Name>State Board of Elections</Name>
</ContactInformation>
</Department>
<ElectionsUri>http://www.sbe.virginia.gov/</ElectionsUri>
<RegistrationUri>https://www.vote.virginia.gov/</RegistrationUri>
<RulesUri>http://www.sbe.virginia.gov/</RulesUri>
<WhatIsOnMyBallotUri>https://www.vote.virginia.gov/</WhatIsOnMyBallotUri>
<WhereDoIVoteUri>https://www.vote.virginia.gov/</WhereDoIVoteUri>
</ElectionAdministration>
<ElectionAdministration id="ea40001">
<AbsenteeUri>http://www.vote.virginia.gov</AbsenteeUri>
<AmIRegisteredUri>http://www.vote.virginia.gov</AmIRegisteredUri>
<Department>
<ContactInformation label="ci60001">
<AddressLine>1600 5TH STREET</AddressLine>
<AddressLine>CHARLOTTESVILLE, VA 22902</AddressLine>
<HoursOpenId>hours0000</HoursOpenId>
<Name>ALBEMARLE COUNTY VOTER REGISTRATION</Name>
</ContactInformation>
<ElectionOfficialPersonId>per50001</ElectionOfficialPersonId>
</Department>
<ElectionsUri>http://www.albemarle.org/registrar</ElectionsUri>
<RegistrationUri>http://www.vote.virginia.gov</RegistrationUri>
<RulesUri>http://www.vote.virginia.gov</RulesUri>
<WhatIsOnMyBallotUri>http://www.vote.virginia.gov</WhatIsOnMyBallotUri>
<WhereDoIVoteUri>http://www.vote.virginia.gov</WhereDoIVoteUri>
</ElectionAdministration>
<!-- A person referenced by an election administration object. -->
<Person id="per50001">
<ContactInformation label="ci60002">
<Email>[email protected]</Email>
<Phone>4349724173</Phone>
</ContactInformation>
<FirstName>RICHARD</FirstName>
<LastName>WASHBURNE</LastName>
<MiddleName>J.</MiddleName>
<Nickname>JAKE</Nickname>
<Title>
<Text language="en">General Registrar Physical</Text>
</Title>
</Person>
<!--
Structured hours to be used by the various offices, locations, and
administrative organizations in this feed.
NOTE: StartTime and EndTime *MUST* specify the time zone.
-->
<HoursOpen id="hours0000">
<Schedule>
<Hours>
<StartTime>08:30:00-05:00</StartTime>
<EndTime>17:00:00-05:00</EndTime>
</Hours>
</Schedule>
</HoursOpen>
<HoursOpen id="hours0001">
<Schedule>
<Hours>
<StartTime>06:00:00-05:00</StartTime>
<EndTime>19:00:00-05:00</EndTime>
</Hours>
<StartDate>2013-11-05</StartDate>
<EndDate>2013-11-05</EndDate>
</Schedule>
</HoursOpen>
<!-- Early voting hours. Note the different time zones. -->
<HoursOpen id="hours0002">
<Schedule>
<Hours>
<StartTime>07:00:00-04:00</StartTime>
<EndTime>19:00:00-04:00</EndTime>
</Hours>
<StartDate>2013-10-21</StartDate>
<EndDate>2013-10-26</EndDate>
</Schedule>
<Schedule>
<Hours>
<StartTime>07:00:00-04:00</StartTime>
<EndTime>19:00:00-04:00</EndTime>
</Hours>
<StartDate>2013-10-28</StartDate>
<EndDate>2013-11-02</EndDate>
</Schedule>
<!-- Clocks fall back. -->
<Schedule>
<Hours>
<StartTime>07:00:00-05:00</StartTime>
<EndTime>19:00:00-05:00</EndTime>
</Hours>
<StartDate>2013-11-04</StartDate>
<EndDate>2013-11-04</EndDate>
</Schedule>
</HoursOpen>
<!--
The various political parties. These are defined separately to allow
for internationalization of the party names, definition of party colors,
and links to party logos.
-->
<Party id="par0001">
<Abbreviation>REP</Abbreviation>
<Color>e91d0e</Color>
<Name>
<Text language="en">Republican</Text>
</Name>
</Party>
<Party id="par0002">
<Abbreviation>LIB</Abbreviation>
<Color>f5f500</Color>
<Name>
<Text language="en">Libertarian</Text>
</Name>
</Party>
<Party id="par0003">
<Abbreviation>DEM</Abbreviation>
<Color>232066</Color>
<Name>
<Text language="en">Democratic</Text>
</Name>
</Party>
<Party id="par0004">
<Abbreviation>IND</Abbreviation>
<Name>
<Text language="en">Independent</Text>
</Name>
</Party>
<Party id="par0005">
<Abbreviation>VN</Abbreviation>
<Name>
<Text language="en">Voter Nominated</Text>
</Name>
</Party>
<Party id="par0006">
<Abbreviation>PPN</Abbreviation>
<Name>
<Text language="en">Party Preference: None</Text>
</Name>
</Party>
<Party id="par0007">
<Abbreviation>SSP</Abbreviation>
<IsWriteIn>true</IsWriteIn>
<Name>
<Text language="en">Slightly Silly Party</Text>
</Name>
</Party>
<!-- The various electoral districts for which there are offices/contests in this election. -->
<ElectoralDistrict id="ed60129">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>Commonwealth of Virginia</Name>
<Type>state</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60150">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va/sldl:25</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>House of Delegates District - 025</Name>
<Number>25</Number>
<Type>state-house</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60311">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va/sldl:57</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>House of Delegates District - 057</Name>
<Number>57</Number>
<Type>state-house</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60076">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va/sldl:58</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>House of Delegates District - 058</Name>
<Number>58</Number>
<Type>state-house</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60107">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>ocd-id</Type>
<Value>ocd-division/country:us/state:va/sldl:59</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<Name>House of Delegates District - 059</Name>
<Number>59</Number>
<Type>state-house</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60030">
<Name>SAMUEL MILLER DISTRICT</Name>
<Number>3</Number>
<Type>school</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60054">
<Name>JACK JOUETT DISTRICT</Name>
<Number>2</Number>
<Type>school</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60081">
<Name>RIO DISTRICT</Name>
<Number>1</Number>
<Type>school</Type>
</ElectoralDistrict>
<ElectoralDistrict id="ed60103">
<Name>SCOTTSVILLE DISTRICT</Name>
<Number>4</Number>
<Type>school</Type>
</ElectoralDistrict>
<!-- The various offices for which there is an election. -->
<Office id="off9999a">
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">President</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off9999b">
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Vice President</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off0000">
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Governor</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off0001">
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Lieutenant Governor</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20005">
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Attorney General</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20006">
<Description>
<Text language="en">The Supreme Court of Virginia is the highest court in the Commonwealth of Virginia. It primarily hears direct appeals in civil cases from the trial-level city and county circuit courts, as well as the criminal law, family law and administrative law cases that are initially appealed to the Court of Appeals of Virginia.</Text>
<Text language="es">El Tribunal Supremo de Virginia es el más alto tribunal en el estado de Virginia. Se oye principalmente apelaciones directas en casos civiles de los tribunales de la ciudad de primera instancia y de circuito del condado, así como el derecho penal, derecho de familia y derecho administrativo que se apelan inicialmente a la Corte de Apelaciones de Virginia.</Text>
</Description>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Justice, Supreme Court of Virginia</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<!--
There are several House of Delegates offices up for election in this
county. Multiple offices may share the same name, but need distinct
office IDs for each seat.
-->
<Office id="off20024">
<ElectoralDistrictId>ed60150</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member House of Delegates</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20025">
<ElectoralDistrictId>ed60311</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member House of Delegates</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20033">
<ElectoralDistrictId>ed60107</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member House of Delegates</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20100">
<ElectoralDistrictId>ed60076</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member House of Delegates</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<!-- Board of Supervisors -->
<Office id="off20262">
<ElectoralDistrictId>ed60103</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member Board of Supervisors</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20305">
<ElectoralDistrictId>ed60054</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member Board of Supervisors</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20350">
<ElectoralDistrictId>ed60030</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member Board of Supervisors</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20355">
<ElectoralDistrictId>ed60081</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member Board of Supervisors</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<!-- School board -->
<Office id="off20449">
<ElectoralDistrictId>ed60081</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member School Board</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20473">
<ElectoralDistrictId>ed60030</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member School Board</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<Office id="off20476">
<ElectoralDistrictId>ed60054</ElectoralDistrictId>
<FilingDeadline>2013-01-01</FilingDeadline>
<IsPartisan>false</IsPartisan>
<Name>
<Text language="en">Member School Board</Text>
</Name>
<Term>
<Type>full-term</Type>
</Term>
</Office>
<!-- The different contests that may appear on the different ballot styles. -->
<CandidateContest id="cc20002">
<BallotSelectionIds>cs10861 cs10862</BallotSelectionIds>
<BallotTitle>
<Text language="en">President and Vice-President of the United States</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>President and Vice-President</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off9999a off9999b</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20003">
<BallotSelectionIds>cs10961 cs10962 cs10963</BallotSelectionIds>
<BallotTitle>
<Text language="en">Governor of Virginia</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>Governor</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off0000</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20004">
<BallotSelectionIds>cs10966 cs10967</BallotSelectionIds>
<BallotTitle>
<Text language="en">Lieutenant Governor of Virginia</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>Lieutenant Governor</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off0001</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20005">
<BallotSelectionIds>cs10964 cs10965</BallotSelectionIds>
<BallotTitle>
<Text language="en">Attorney General</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>Attorney General</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20005</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20024">
<BallotSelectionIds>cs10422</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member House of Delegates</Text>
</BallotTitle>
<ElectoralDistrictId>ed60150</ElectoralDistrictId>
<Name>Member House of Delegates</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20024</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20025">
<BallotSelectionIds>cs10388</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member House of Delegates</Text>
</BallotTitle>
<ElectoralDistrictId>ed60311</ElectoralDistrictId>
<Name>Member House of Delegates</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20025</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20033">
<BallotSelectionIds>cs10466</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member House of Delegates</Text>
</BallotTitle>
<ElectoralDistrictId>ed60107</ElectoralDistrictId>
<Name>Member House of Delegates</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20033</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<!--
This is an example of a "Top-Two" or "Louisiana primary" in which
candidates from all parties compete against each other. In VIP, we use
the "Voter-Nominated" party in the PrimaryPartyIds field to show that the
contest itself is non-partisan, even if the candidates themselves are.
-->
<CandidateContest id="cc20100">
<BallotSelectionIds>cs10438</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member House of Delegates</Text>
</BallotTitle>
<ElectoralDistrictId>ed60076</ElectoralDistrictId>
<Name>Member House of Delegates</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20100</OfficeIds>
<PrimaryPartyIds>par0005</PrimaryPartyIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20262">
<BallotSelectionIds>cs10079 cs10080 cs10081</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member Board of Supervisors</Text>
</BallotTitle>
<ElectoralDistrictId>ed60103</ElectoralDistrictId>
<Name>Member Board of Supervisors</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20262</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20305">
<BallotSelectionIds>cs10075 cs10076</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member Board of Supervisors</Text>
</BallotTitle>
<ElectoralDistrictId>ed60054</ElectoralDistrictId>
<Name>Member Board of Supervisors</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20305</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20350">
<BallotSelectionIds>cs10073 cs10074</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member Board of Supervisors</Text>
</BallotTitle>
<ElectoralDistrictId>ed60030</ElectoralDistrictId>
<Name>Member Board of Supervisors</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20350</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20355">
<BallotSelectionIds>cs10077 cs10078</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member Board of Supervisors</Text>
</BallotTitle>
<ElectoralDistrictId>ed60081</ElectoralDistrictId>
<Name>Member Board of Supervisors</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20355</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20449">
<BallotSelectionIds>cs10214</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member School Board</Text>
</BallotTitle>
<ElectoralDistrictId>ed60081</ElectoralDistrictId>
<Name>Member School Board</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20449</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20473">
<BallotSelectionIds>cs10215</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member School Board</Text>
</BallotTitle>
<ElectoralDistrictId>ed60030</ElectoralDistrictId>
<Name>Member School Board</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20473</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<CandidateContest id="cc20476">
<BallotSelectionIds>cs10213</BallotSelectionIds>
<BallotTitle>
<Text language="en">Member School Board</Text>
</BallotTitle>
<ElectoralDistrictId>ed60054</ElectoralDistrictId>
<Name>Member School Board</Name>
<NumberElected>1</NumberElected>
<OfficeIds>off20476</OfficeIds>
<VotesAllowed>1</VotesAllowed>
</CandidateContest>
<BallotMeasureContest id="bmc30001">
<BallotSelectionIds>bms30001a bms30001b</BallotSelectionIds>
<BallotTitle>
<Text language="en">State of the State</Text>
<Text language="es">Estado del Estado.</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>Referendum on Virginia</Name>
<ConStatement label="bmc30001con">
<Text language="en">This is no good.</Text>
<Text language="es">Esto no es bueno.</Text>
</ConStatement>
<EffectOfAbstain label="bmc30001abs">
<Text language="en">Nothing will happen.</Text>
<Text language="es">Nada pasará.</Text>
</EffectOfAbstain>
<ProStatement label="bmc30001pro">
<Text language="en">Everything will be great.</Text>
<Text language="es">Todo va a estar bien.</Text>
</ProStatement>
<Type>referendum</Type>
</BallotMeasureContest>
<!--
Virginia does not actually elect their judges; this is for demonstration
and documentation purposes only.
-->
<RetentionContest id="rc40001">
<BallotSelectionIds>rc40001a rc40001b</BallotSelectionIds>
<BallotTitle>
<Text language="en">Retention of Supreme Court Justice</Text>
<Text language="es">La retención de juez de la Corte Suprema</Text>
</BallotTitle>
<ElectoralDistrictId>ed60129</ElectoralDistrictId>
<Name>Judicial Retention, Supreme Court</Name>
<CandidateId>can14444</CandidateId>
<OfficeId>off20006</OfficeId>
</RetentionContest>
<!-- The various ballot styles in use by the different precincts. -->
<BallotStyle id="bs00000">
<OrderedContestIds>oc20002 oc20003abc oc20004 oc20005 oc20025 oc20355 oc20449 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00001">
<OrderedContestIds>oc20002 oc20003bca oc20004 oc20005 oc20033 oc20350 oc20473 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00002">
<OrderedContestIds>oc20002 oc20003cab oc20004 oc20005 oc20024 oc20305 oc20476 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00003">
<OrderedContestIds>oc20002 oc20003abc oc20004 oc20005 oc20100 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00004">
<OrderedContestIds>oc20003bca oc20004 oc20005 oc20024 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00005">
<OrderedContestIds>oc20002 oc20003cab oc20004 oc20005 oc20025 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00006">
<OrderedContestIds>oc20002 oc20003abc oc20004 oc20005 oc20024 oc20350 oc20473 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00007">
<OrderedContestIds>oc20002 oc20003bca oc20004 oc20005 oc20100 oc20355 oc20449 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00008">
<OrderedContestIds>oc20002 oc20003cab oc20004 oc20005 oc20025 oc20100 oc20355 oc20449 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00009">
<OrderedContestIds>oc20002 oc20003abc oc20004 oc20005 oc20100 oc20262 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00010">
<OrderedContestIds>oc20002 oc20003bca oc20004 oc20005 oc20025 oc20305 oc20476 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<BallotStyle id="bs00011">
<OrderedContestIds>oc20002 oc20003cab oc20004 oc20005 oc20025 oc20262 oc30001 oc40001</OrderedContestIds>
</BallotStyle>
<!--
The ordered contests. These can optionally support ballot rotation by
specifying a different ordering of BallotSelectionIds elements than are
defined in the original contest.
-->
<OrderedContest id="oc20262">
<ContestId>cc20262</ContestId>
</OrderedContest>
<OrderedContest id="oc20305">
<ContestId>cc20305</ContestId>
</OrderedContest>
<OrderedContest id="oc20033">
<ContestId>cc20033</ContestId>
</OrderedContest>
<OrderedContest id="oc20002">
<ContestId>cc20002</ContestId>
</OrderedContest>
<!-- Start of ballot rotation examples for the gubenatorial race. -->
<OrderedContest id="oc20003abc">
<ContestId>cc20003</ContestId>
<OrderedBallotSelectionIds>cs10961 cs10962 cs10963</OrderedBallotSelectionIds>
</OrderedContest>
<OrderedContest id="oc20003bca">
<ContestId>cc20003</ContestId>
<OrderedBallotSelectionIds>cs10962 cs10963 cs10961</OrderedBallotSelectionIds>
</OrderedContest>
<OrderedContest id="oc20003cab">
<ContestId>cc20003</ContestId>
<OrderedBallotSelectionIds>cs10963 cs10961 cs10962</OrderedBallotSelectionIds>
</OrderedContest>
<!-- End of ballot rotation for gubenatorial race. -->
<OrderedContest id="oc20005">
<ContestId>cc20005</ContestId>
</OrderedContest>
<OrderedContest id="oc20004">
<ContestId>cc20004</ContestId>
</OrderedContest>
<OrderedContest id="oc20025">
<ContestId>cc20025</ContestId>
</OrderedContest>
<OrderedContest id="oc20024">
<ContestId>cc20024</ContestId>
</OrderedContest>
<OrderedContest id="oc20100">
<ContestId>cc20100</ContestId>
</OrderedContest>
<OrderedContest id="oc20473">
<ContestId>cc20473</ContestId>
</OrderedContest>
<OrderedContest id="oc20355">
<ContestId>cc20355</ContestId>
</OrderedContest>
<OrderedContest id="oc20476">
<ContestId>cc20476</ContestId>
</OrderedContest>
<OrderedContest id="oc20449">
<ContestId>cc20449</ContestId>
</OrderedContest>
<OrderedContest id="oc20350">
<ContestId>cc20350</ContestId>
</OrderedContest>
<OrderedContest id="oc30001">
<ContestId>bmc30001</ContestId>
</OrderedContest>
<OrderedContest id="oc40001">
<ContestId>rc40001</ContestId>
</OrderedContest>
<!--
CandidateSelections (i.e., an item on a ballot you can select) and the
actual candidates and people underlying those selections.
-->
<CandidateSelection id="cs10861">
<CandidateIds>can10861a can10861b</CandidateIds>
</CandidateSelection>
<Candidate id="can10861a">
<BallotName>
<Text language="en">Barack H. Obama</Text>
</BallotName>
<ContactInformation label="ci10861a">
<AddressLine>1600 Pennsylvania Ave</AddressLine>
<AddressLine>Washington, DC 20006</AddressLine>
<Email>[email protected]</Email>
<Phone>202-456-1111</Phone>
<Phone annotation="TDD">202-456-6213</Phone>
<Uri>http://www.whitehouse.gov</Uri>
<Uri annotation="facebook">https://www.facebook.com/WhiteHouse</Uri>
<Uri annotation="twitter">https://twitter.com/WhiteHouse</Uri>
</ContactInformation>
<FileDate>2015-06-01</FileDate>
<PartyId>par0003</PartyId>
<PersonId>per10861a</PersonId>
</Candidate>
<Person id="per10861a">
<ExternalIdentifiers>
<ExternalIdentifier>
<Type>other</Type>
<OtherType>imdb</OtherType>
<Value>nm1682433</Value>
</ExternalIdentifier>
</ExternalIdentifiers>
<FirstName>Barack</FirstName>
<LastName>Obama</LastName>
<MiddleName>H.</MiddleName>
<PartyId>par0003</PartyId>
</Person>
<Candidate id="can10861b">
<BallotName>
<Text language="en">Joseph R. Biden</Text>
</BallotName>
<PartyId>par0003</PartyId>
<PersonId>per10861b</PersonId>
</Candidate>
<Person id="per10861b">
<FirstName>Joseph</FirstName>
<LastName>Biden</LastName>
<MiddleName>R.</MiddleName>
<PartyId>par0003</PartyId>
</Person>
<CandidateSelection id="cs10862">
<CandidateIds>can10862a can10862b</CandidateIds>
</CandidateSelection>
<Candidate id="can10862a">
<BallotName>
<Text language="en">Mitt Romney</Text>
</BallotName>
<PartyId>par0001</PartyId>
<PersonId>per10862a</PersonId>
</Candidate>
<Person id="per10862a">
<ContactInformation label="ci10862a">
<AddressLine>Post Office Box 149756</AddressLine>
<AddressLine>Boston, MA 02114-9756</AddressLine>
<Email>[email protected]</Email>
<Uri>http://www.mittromney.com</Uri>
</ContactInformation>
<FirstName>Willard</FirstName>
<LastName>Romney</LastName>
<MiddleName>Mitt</MiddleName>
<PartyId>par0001</PartyId>
</Person>
<Candidate id="can10862b">
<BallotName>
<Text language="en">Paul Ryan</Text>
</BallotName>
<PartyId>par0001</PartyId>
<PersonId>per10862b</PersonId>
</Candidate>
<Person id="per10862b">
<FirstName>Paul</FirstName>
<LastName>Ryan</LastName>
<MiddleName>D.</MiddleName>
<PartyId>par0001</PartyId>
</Person>
<CandidateSelection id="cs10961">
<CandidateIds>can10961</CandidateIds>
</CandidateSelection>
<Candidate id="can10961">
<BallotName>
<Text language="en">Ken T. Cuccinelli II</Text>
</BallotName>
<PartyId>par0001</PartyId>
<PersonId>per10961</PersonId>
</Candidate>
<Person id="per10961">
<ContactInformation label="ci10961">
<AddressLine>10560 Main St, Ste 218</AddressLine>
<AddressLine>Fairfax, VA 22030</AddressLine>
<Email>[email protected]</Email>
<Phone>8047863808</Phone>
<Uri>http://www.cuccinelli.com</Uri>
</ContactInformation>
<FirstName>Ken</FirstName>
<LastName>Cuccinelli</LastName>
<MiddleName>T.</MiddleName>
<PartyId>par0001</PartyId>
<Suffix>II</Suffix>
</Person>
<CandidateSelection id="cs10962">
<CandidateIds>can10962</CandidateIds>
</CandidateSelection>
<Candidate id="can10962">
<BallotName>
<Text language="en">Robert C. Sarvis</Text>
</BallotName>
<PartyId>par0002</PartyId>
<PersonId>per10962</PersonId>
</Candidate>
<Person id="per10962">
<ContactInformation label="ci10962">
<AddressLine>PO Box 224</AddressLine>
<AddressLine>Annandale, VA 22003</AddressLine>
<Email>[email protected]</Email>
<Uri>http://www.robertsarvis.com</Uri>
</ContactInformation>
<FirstName>Robert</FirstName>
<LastName>Sarvis</LastName>
<MiddleName>C.</MiddleName>
<PartyId>par0006</PartyId>
</Person>
<CandidateSelection id="cs10963">
<CandidateIds>can10963</CandidateIds>
</CandidateSelection>
<Candidate id="can10963">
<BallotName>
<Text language="en">Terry R. McAuliffe</Text>
</BallotName>
<PartyId>par0003</PartyId>
<PersonId>per10963</PersonId>
</Candidate>
<Person id="per10963">
<ContactInformation label="ci10963">
<AddressLine>1601 N. Kent St., Suite 900</AddressLine>
<AddressLine>Arlington, VA 22209</AddressLine>
<Email>[email protected]</Email>
<Phone>7038227604</Phone>
<Uri>http://www.terrymcauliffe.com</Uri>
</ContactInformation>
<FirstName>Terry</FirstName>
<LastName>McAuliffe</LastName>
<MiddleName>R.</MiddleName>
<PartyId>par0003</PartyId>
</Person>
<CandidateSelection id="cs10966">
<CandidateIds>can10966</CandidateIds>
</CandidateSelection>
<Candidate id="can10966">
<BallotName>
<Text language="en">Ralph S. Northam</Text>
</BallotName>
<PartyId>par0003</PartyId>
<PersonId>per10966</PersonId>
</Candidate>
<Person id="per10966">
<ContactInformation label="ci10966">
<AddressLine>PO Box 597</AddressLine>
<AddressLine>Richmond, VA 23218</AddressLine>
<Email>[email protected]</Email>
<Phone>7576954188</Phone>
<Uri>http://www.northamforlg.com</Uri>
</ContactInformation>
<FirstName>Ralph</FirstName>
<LastName>Northam</LastName>
<MiddleName>S.</MiddleName>
<PartyId>par0003</PartyId>
</Person>