BallotMeasureScope

BallotMeasureScope-Entitäten werden verwendet, um eine Abstimmung zu beschreiben, über die in einer ElectionEvent abgestimmt wird.

Elemente

Element Multiplizität Typ Beschreibung
DebugName 0 oder 1 string Aussagekräftiger Name für die Abstimmung.
LocationLevel 1 OfficeLevel Die Standortebene der Abstimmung: Country für national, Administrative Area 1 für einen Bundesstaat oder eine Provinz usw.
LocationOcdId 0 oder 1 string Die OCD-IDs des Standorts des Volksentscheids.
TitleOrTopic 1 string Titel des Volksentscheids, falls bekannt. Andernfalls eine kurze Beschreibung des Themas.

Beispiele

Das folgende Beispiel zeigt ein Feed-Objekt, das ein ElectionEvent-Objekt mit BallotMeasureScope enthält. Sie gibt an, dass Feed Daten zu einer Abstimmung enthält, die in Kalifornien stattfinden wird:

XML

<BallotMeasureScope>
  <DebugName>California state Ballot measures</DebugName>
  <LocationLevel>Administrative Area 1</LocationLevel>
  <LocationOcdId>ocd-division/country:us/state:ca</LocationOcdId>
  <TitleOrTopic>Remove Voter Approval Requirement for Public Low-Rent Housing Projects Amendment</TitleOrTopic>
</BallotMeasureScope>

JSON

{
  "BallotMeasureScope": {
      "DebugName": "California state Ballot measures",
      "LocationLevel": "Administrative Area 1",
      "LocationOcdId": "ocd-division/country:us/state:ca",
      "TitleOrTopic": "Remove Voter Approval Requirement for Public Low-Rent Housing Projects Amendment"
  }
}