Wahlverwaltung

Verwenden Sie ElectionAdministration, um verschiedene Informationen zu einer Wahlbehörde anzugeben.

Die Election-Einheit verweist auf eine GpUnit, die den Umfang der Wahl definiert. Wenn der Geltungsbereich der Wahl beispielsweise ein Bezirk ist, verweist Election auf die GpUnit-Entität, die für diesen Bezirk definiert ist. Wenn GpUnit den Typ ReportingUnit hat, empfehlen wir, eine ElectionAdministration-Entität einzufügen.

Elemente

In der folgenden Tabelle sind die Elemente für ElectionAdministration aufgeführt:

Element Multiplizität Typ Beschreibung
ContactInformation 0 oder 1 ContactInformation Hier finden Sie die Kontaktdaten der Wahlbehörde.
ElectionOfficialPersonIds 0 oder 1 IDREFS Eindeutige Kennung für ein oder mehrere Person-Elemente, die für Personen definiert sind, die mit der Wahlbehörde in Verbindung stehen.
Name 0 oder 1 string Der Name der Wahlbehörde.

Beispiele

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"]
    }