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

Load Combination (SRC) - AIK-SRC2K

Input URI

{base url} + /ope/LCOM-SRC



Active Methods

POST



JSON Schema

Details

{
  "type": "object",
  "required": [
    "Argument"
  ],
  "properties": {
    "Argument": {
      "type": "object",
      "required": [
        "OPTION",
        "DGNCODE"
      ],
      "properties": {
        "OPTION": {
          "type": "string",
          "enum": [
            "ADD",
            "REPLACE"
          ]
        },
        "DGNCODE": {
          "type": "string",
          "enum": [
            "AIK-SRC2K"
          ]
        },
        "RS_SCALE_FACTOR": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "LOAD_CASE",
              "FACTOR"
            ],
            "properties": {
              "LOAD_CASE": {
                "type": "string",
                "description": "Response Spectrum Load Case"
              },
              "FACTOR": {
                "type": "number",
                "description": "Scale Factor"
              }
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Argument": {
    "OPTION": "ADD",
    "DGNCODE": "AIK-SRC2K",
    "RS_SCALE_FACTOR": [
      {
        "LOAD_CASE": "RX(RS)",
        "FACTOR": 1.2
      },
      {
        "LOAD_CASE": "RY(RS)",
        "FACTOR": 1.3
      }
    ]
  }
}


Specifications

Keyed Object Entry

No.DescriptionKeyValue TypeDefaultRequired

1

Map of keyed objects where each key is a string identifier.

"Argument"

object

-

Required



Item (Value Object Schema)

No.DescriptionKeyValue TypeDefaultRequired

1

OPTION

• ADD

• REPLACE

"OPTION"

string (enum)

-

Required

2

DGNCODE

• AIK-SRC2K

"DGNCODE"

string (enum)

-

Required

3

RS_SCALE_FACTOR

"RS_SCALE_FACTOR"

array [object]

-

Optional

(1)

Response Spectrum Load Case

 • Static Load Case

   ◦ NAME + "(ST)"

 • Response Spectrum Load Case

   ◦ NAME + "(RS)"

"LOAD_CASE"

string

-

Required

(2)

Scale Factor

"FACTOR"

number

-

Required

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