선거 관리

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