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

استخدِم 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"]
    }