

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 출력당 오버레이 작업 비활성화 - 페이로드
<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
          }
        }
      }
    ]
  }
}
```