ResultsReportingStage を使用して、コンテストの結果レポートの特定のステージを定義します。
要素
次の表に、ResultsReportingStage の要素を示します。
| 要素 | 重複 | タイプ | 説明 |
|---|---|---|---|
StageType |
1 | ResultsReportingStageType |
結果報告ステージのタイプ。 |
Description |
1 | InternationalizedText |
結果レポートのステージの説明。 |
Attribution |
1 以上 | Attribution |
このステージの結果のソースの属性。 |
ExpectedStartDateTime |
1 | dateTime |
結果レポート ステージの開始予定日時。 |
ActualStartDateTime |
0 または 1 | dateTime |
結果の報告ステージが実際に開始された日時。 |
例
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" } ] } ]