Quản trị bầu cử

Sử dụng ElectionAdministration để cung cấp nhiều thông tin về cơ quan bầu cử.

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

Thành phần

Bảng sau đây cho thấy các phần tử của 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 riêng biệt cho một hoặc nhiều phần tử Person được xác định cho những cá nhân có liên quan đến cơ quan bầu cử.
Name 0 hoặc 1 string Tên của 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"]
    }