

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

# 停用按输出叠加操作 – 有效载荷
<a name="cli-schedule-fields-for-deactivate-image-per-output"></a>

有关以下 JSON 中字段和值的含义的信息，请参阅 [停用按输出图像叠加的字段](schedule-fields-deactivate-image-per-output.md)。

```
{
 "ChannelId": "string",
 "Creates": {
 "ScheduleActions": [
  {
   "ScheduleActionStartSettings": {
    "FixedModeScheduleActionStartSettings": {
     "Time": "string"
    },
    "ImmediateModeScheduleActionStartSettings": {
    }
   },
   "ActionName": "string",
   "ScheduleActionSettings": {
    "StaticImageOutputDeactivateSettings": {
     "FadeOut": integer,
     "Layer": integer,
     "OutputNames"
    }
   }
  }
 ]
}
```

## 示例
<a name="cli-schedule-fields-for-deactivate-image-per-output-example"></a>

停用操作会停用指定按输出层、指定输出中的图像。

在此示例中（继激活示例），该操作将移除输出中每输出第 4 层中的所有图像叠加层。 hls-high-res

```
{
  "ChannelId": "999999",
  "Creates": {
  "ScheduleActions": [
    {
      "ScheduleActionStartSettings": {
        "FixedModeScheduleActionStartSettings": {
          "Time": "2018-05-21T20:42:04.000Z"
        }
      },
      "ActionName": "stop-layer4-all-outputs",
      "ScheduleActionSettings": {
        "StaticImageOutputDeactivateSettings": {
          "outputNames": [
            hls-high-res
           ],
          "FadeOut": 500,
          "Layer": 4
          }
        }
      }
    ]
  }
}
```