AI-generated Key Takeaways
-
ElectionAdministrationprovides information about an election authority and is used for pre-election data and election results feeds but not officeholder feeds. -
It is recommended to include an
ElectionAdministrationentity if the election's scope is defined by aGpUnitwith the typeReportingUnit. -
Key elements include
ContactInformation,ElectionOfficialPersonIds, andName.
Use ElectionAdministration to provide various information about an election
authority.
The Election entity references a
GpUnit that defines the scope of the
election. For example, if the scope of the election is a district, then
Election references the GpUnit entity that's defined for that district.
If the GpUnit has the type
ReportingUnit, we recommend
that you include an ElectionAdministration entity.
Elements
The following table shows the elements for ElectionAdministration:
| Element | Multiplicity | Type | Description |
|---|---|---|---|
ContactInformation |
0 or 1 | ContactInformation |
Provides contact information for the election authority. |
ElectionOfficialPersonIds |
0 or 1 | IDREFS | Unique identifier for one or more
elements that are defined for individuals associated with the election
authority. |
Name |
0 or 1 | string |
The name of the election authority. |
Examples
XML
<ElectionAdministration> <ContactInformation label="ci60001"> <AddressLine>Viad. Tlalpan 100</AddressLine> <AddressLine>Arenal Tepepan</AddressLine> <AddressLine>14610 Ciudad de México, CDMX</AddressLine> <AddressLine>Mexico</AddressLine> <Name>Instituto Nacional Electoral</Name> <Phone annotation="domestic">01 800 433 2000</Phone> <Phone annotation="usa">1 (866) 986 8306</Phone> <Phone annotation="collect">+52 (55) 5481 9897</Phone> </ContactInformation> <ElectionOfficialPersonIds>per00521</ElectionOfficialPersonIds> </ElectionAdministration>
JSON
"ElectionAdministration": { "ContactInformation": { "label": "ci60001", "AddressLine": [ "Viad. Tlalpan 100", "Arenal Tepepan", "14610 Ciudad de México, CDMX", "Mexico" ], "Name": "Instituto Nacional Electoral", "Phone": [ { "annotation": "domestic", "value": "01 800 433 2000" }, { "annotation": "usa", "value": "1 (866) 986 8306" }, { "annotation": "collect", "value": "+52 (55) 5481 9897" } ] }, "ElectionOfficialPersonIds": ["per00521"] }