การบริหารการเลือกตั้ง

ใช้ ElectionAdministration เพื่อให้ข้อมูลต่างๆ เกี่ยวกับหน่วยงานการเลือกตั้ง

เอนทิตี Election อ้างอิงถึง GpUnit ที่กำหนดขอบเขตของการเลือกตั้ง เช่น หากขอบเขตของการเลือกตั้งเป็นเขต Election จะอ้างอิงเอนทิตี GpUnit ที่กําหนดไว้สำหรับเขตนั้น หาก GpUnit มีประเภทเป็น ReportingUnit เราขอแนะนำให้คุณรวมเอนทิตี ElectionAdministration ไว้ด้วย

องค์ประกอบ

ตารางต่อไปนี้แสดงองค์ประกอบสำหรับ ElectionAdministration

องค์ประกอบ ความหลากหลาย Type คำอธิบาย
ContactInformation 0 หรือ 1 ContactInformation ให้ข้อมูลติดต่อของหน่วยงานการเลือกตั้ง
ElectionOfficialPersonIds 0 หรือ 1 IDREFS ตัวระบุที่ไม่ซ้ำกันสำหรับองค์ประกอบ Person อย่างน้อย 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"]
    }