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"] }