Quản trị bầu cử

Sử dụng ElectionAdministration để cung cấp nhiều thông tin về cuộc bầu cử cơ quan cấp chứng nhận.

Thực thể Election tham chiếu đến một GpUnit xác định phạm vi của bầu cử. Ví dụ: nếu phạm vi bầu cử là một khu vực bầu cử, thì Election tham chiếu đến thực thể GpUnit được xác định cho học khu đó. Nếu GpUnit có loại ReportingUnit, bạn nên mà bạn thêm thực thể ElectionAdministration.

Thành phần

Bảng sau đây trình bày các phần tử cho ElectionAdministration:

Phần tử Số bội Loại Mô tả
ContactInformation 0 hoặc 1 ContactInformation Cung cấp thông tin liên hệ của cơ quan bầu cử.
ElectionOfficialPersonIds 0 hoặc 1 IDREFS Giá trị nhận dạng duy nhất của một hoặc nhiều Person những yếu tố được xác định cho các cá nhân liên quan đến cuộc bầu cử cơ quan cấp chứng nhận.
Name 0 hoặc 1 string Tên cơ quan bầu cử.

Ví dụ

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