ElectionAdministration
を使用して、選挙に関するさまざまな情報を提供する
できます。
Election
エンティティは、
スコープを定義する GpUnit
選挙。たとえば、選挙の範囲が選挙区の場合は、
Election
は、その学区で定義された GpUnit
エンティティを参照します。
GpUnit
の型が
ReportingUnit
をおすすめします。
これはElectionAdministration
エンティティの例です
要素
次の表に、ElectionAdministration
の要素を示します。
要素 | 重複 | タイプ | 説明 |
---|---|---|---|
ContactInformation |
0 または 1 | ContactInformation |
選挙管理局の連絡先情報を提供します。 |
ElectionOfficialPersonIds |
0 または 1 | IDREFS | 1 つ以上の一意の識別子
選挙に関連する個人に対して定義された要素
できます。 |
Name |
0 または 1 | string |
選挙管理機関の名前。 |
例
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"] }