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