Utilizza CountStatus
per generare report sullo stato del conteggio di vari elementi, ad esempio
tipi di voti o write-in oppure se i conteggi sono in corso, non ancora
sia iniziato o completato. La Contest
,
Election
e
Le entità GpUnit
includono CountStatus
.
Elementi
Nella tabella seguente vengono descritti gli elementi per CountStatus
:
Elemento | Molteplicità | Tipo | Descrizione |
---|---|---|---|
Status |
1 | CountItemStatus |
Lo stato del conteggio. |
Type |
1 | CountItemType |
Il tipo di elemento da conteggiare. Se il tipo di
CountStatus elemento non è elencato in
Enumerazione CountItemType , imposta Type su
other e includi il tipo personalizzato
OtherType . |
OtherType |
0 o 1 | string |
Utilizzato quando Type è other per specificare
lo stato di ciò che viene conteggiato. |
Esempi
XML
<CountStatus> <Status>completed</Status> <Type>early</Type> </CountStatus>
<CountStatus> <Status>in-process</Status> <Type>election-day</Type> </CountStatus>
JSON
"CountStatus": [ { "Status": "completed", "Type": "early" } ]
"CountStatus": [ { "Status": "in-process", "Type": "election-day" } ]