ResultsReportingStage

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