إدارة الانتخابات

استخدام ElectionAdministration لتقديم معلومات مختلفة عن الانتخابات والسلطة.

يشير الكيان Election إلى GpUnit التي تحدد نطاق الانتخابات. فعلى سبيل المثال، إذا كان نطاق الانتخابات دائرة، فعندئذ تشير السمة Election إلى الكيان GpUnit المحدَّد لهذه المنطقة. إذا كان النوع GpUnit ReportingUnit، ننصح باستخدام تضمين كيان ElectionAdministration.

العناصر

يعرض الجدول التالي عناصر ElectionAdministration:

العنصر التعددية النوع الوصف
ContactInformation 0 أو 1 ContactInformation يقدّم معلومات الاتصال للهيئة المعنية بالانتخابات
ElectionOfficialPersonIds 0 أو 1 IDREFS المعرّف الفريد لواحد أو أكثر 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"]
    }