Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

An object used as input to define a jobTask context and application-specific configurations.

Fields

Key

Type

Required

Description

inputs [ ]

String

Required

입력 URI

앱에 따라 복수개의 입력이 필요할 수도 있음

appCode

String

Required

실행할 앱의 종류를 구분하는 코드. See app_code table

alarmIntervalHint

Integer

선호하는 알람 주기를 앱에게 힌트로 보내기 위한 값. (단위: 밀리초)

annotationLevel

Integer

비디오 주석 수준 (0: 비디오 주석 안함, 1~5: 가장 약함 ~ 가장 강함)

appConfigs [ ]

String

앱의 고유 비정형 설정 값

JSON BODY

Code Block
{
  "inputs ": [ "rtsp://98.210.72.185" ],
  "appCode": "PeopleCounting",
  "alarmIntervalHint": 5000,
  "annotationLevel":3,
  "appConfigs": {
    "sensibility":"5"
    // You can add more application specific parameters ...
  }
}

...