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

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

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

องค์ประกอบ

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

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