

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# Return-to-network 消息-有效载荷
<a name="cli-schedule-fields-for-return-network"></a>

有关以下 JSON 中字段和值的含义的信息，请参阅 [return-to-network消息的字段](schedule-fields-for-return-to-network.md)。

```
{
 "ScheduleActions": [
  {
   "ScheduleActionStartSettings": {
    "FixedModeScheduleActionStartSettings": {
     "Time": "string"
    },
    "FollowModeScheduleActionStartSettings": {
     "FollowPoint": "enum",
     "ReferenceActionName": "string"
    },
    "ImmediateModeScheduleActionStartSettings": {
    }
   },
   "ActionName": "string",
   "ScheduleActionSettings": {
    "Scte35ReturnToNetworkSettings": {
     "SpliceEventId": integer                
    }
   }
  }
 ]
}
```

## 示例
<a name="json-return-network-example"></a>

此请求示例创建了 UTC 开始时间 return-to-network为 20:42:19 的。

```
{
  "ChannelId": "999999",
  "Creates": {
    "ScheduleActions": [
      {
        "ScheduleActionStartSettings": {
          "FixedModeScheduleActionStartSettings": {
            "Time": "2018-05-21T20:42:19.000Z"
          }
      },
      "ActionName": "end-adavail-3708",
      "ScheduleActionSettings": {
        "Scte35ReturnToNetworkSettings": {
          }
        }
      }
    ]
  }
}
```