주 콘텐츠로 건너뛰기
JSON Manual 생성 편집

Define Boundary Combination

Input URI

{base url} + db/BCGD-M1



 

Active Methods

POST, GET, PUT, DELETE



 

JSON Schema

Details

{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "Assign"
  ],
  "properties": {
    "Assign": {
      "type": "object",
      "description": "The key is a string (e.g. \"1\"), and each item is a Boundary Group Combination object (`DTO_BCGD_M1`).",
      "minProperties": 1,
      "additionalProperties": {
        "type": "object",
        "unevaluatedProperties": false,
        "allOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "BCG_NAME",
              "GROUP_LIST"
            ],
            "properties": {
              "BCG_NAME": {
                "type": "string",
                "minLength": 1,
                "maxLength": 20,
                "description": "Name (1~20자, 모델 내 유일)"
              },
              "GROUP_LIST": {
                "type": "array",
                "minItems": 1,
                "items": {
                  "type": "string",
                  "minLength": 1
                },
                "description": "Select Boundary Group (체크된 항목의 이름 배열. 중복 서버 측 자동 제거)"
              }
            }
          }
        ]
      }
    }
  }
}



 

Examples

Define Boundary Comgination

{
  "Assign": {
    "1": {
      "BCG_NAME": "Support_BCG",
      "GROUP_LIST": [
        "Fixed_Support",
        "Elastic_Link"
      ]
    },
    "2": {
      "BCG_NAME": "Stage_BCG",
      "GROUP_LIST": [
        "Stage1_Boundary",
        "Stage2_Boundary",
        "Stage3_Boundary"
      ]
    }
  }
}



 

Specifications

No. Description Key Value Type Default Required

1

Boundary Combination Name

"BCG_NAME"

string

-

Required

2

Boundary Group List

"GROUP_LIST"

array

-

Required

0
컨텐츠가 도움이 되셨나요?