

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# 出力ごとのオーバーレイアクションを無効にする – ペイロード
<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>

無効アクションは、指定された出力または出力で、指定された出力レイヤーごとにイメージを無効にします。

この例では、アクティブ化の例から続くように、 アクションは出力 hls-high-res の出力レイヤー 4 ごとに存在するすべてのイメージオーバーレイを削除します。

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