選舉行政

透過 ElectionAdministration提供多項選舉相關資訊 授權。

Election 實體會參照 GpUnit,用來定義 選舉舉例來說,如果選舉範圍為選區, Election 會參照為該學區定義的 GpUnit 實體。 如果 GpUnit 的類型為 ReportingUnit,建議 您納入了 ElectionAdministration 實體

元素

下表列出 ElectionAdministration 的元素:

元素 多重性 類型 說明
ContactInformation 0 或 1 ContactInformation 提供選舉主管機關的聯絡資訊。
ElectionOfficialPersonIds 0 或 1 IDREFS 一或多個項目的專屬 ID 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"]
    }