Bir yarışma için sonuç raporlamanın belirli bir aşamasını tanımlamak üzere ResultsReportingStage kullanın.
Öğeler
Aşağıdaki tabloda ResultsReportingStage öğeleri açıklanmaktadır:
| Öğe | Çokluk | Tür | Açıklama |
|---|---|---|---|
StageType |
1 | ResultsReportingStageType |
Sonuçları bildirme aşamasının türü. |
Description |
1 | InternationalizedText |
Sonuç raporlama aşamasının açıklaması. |
Attribution |
1 veya daha fazla | Attribution |
Bu aşamadaki sonuçların kaynağına ilişkin ilişkilendirme. |
ExpectedStartDateTime |
1 | dateTime |
Sonuç raporlama aşamasının başlaması beklenen tarih ve saat. |
ActualStartDateTime |
0 veya 1 | dateTime |
Sonuç raporlama aşamasının gerçekten başladığı tarih ve saat. |
Örnekler
XML
<ResultsReportingStage> <StageType>exit-polls</StageType> <ExpectedStartDateTime>2025-11-03T06:00:00-05:00</ExpectedStartDateTime> <ActualStartDateTime>2025-11-03T08:00:00-05:00</ActualStartDateTime> <Attribution> <DataSourceId>datasource1</DataSourceId> </Attribution> </ResultsReportingStage> <ResultsReportingStage> <StageType>preliminary</StageType> <ExpectedStartDateTime>2025-11-03T22:00:00-05:00</ExpectedStartDateTime> <ActualStartDateTime>2025-11-04T01:00:00-05:00</ActualStartDateTime> <Attribution> <DataSourceId>datasource2</DataSourceId> </Attribution> </ResultsReportingStage>
JSON
"ResultsReportingStage": [ { "StageType": "exit-polls", "ExpectedStartDateTime": "2025-11-03T06:00:00-05:00", "ActualStartDateTime": "2025-11-03T08:00:00-05:00", "Attribution": [ { "DataSourceId": "datasource1" } ] }, { "StageType": "preliminary", "ExpectedStartDateTime": "2025-11-03T22:00:00-05:00", "ActualStartDateTime": "2025-11-04T01:00:00-05:00", "Attribution": [ { "DataSourceId": "datasource2" } ] } ]