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

Load Combination (General) - AIK-SRC2K

Input URI

{base url} + /ope/LCOM-GEN



Active Methods

POST



JSON Schema

Details

{
  "type": "object",
  "required": [
    "Argument"
  ],
  "properties": {
    "Argument": {
      "description": "LCOM-GEN item for AIK 2K. Only SRC is currently supported.",
      "oneOf": [
        {
          "type": "object",
          "required": [
            "OPTION",
            "DGNCODE",
            "RS_SCALE_FACTOR"
          ],
          "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
      },
      {
        "LOAD_CASE": "RY(RS)",
        "FACTOR": 1
      }
    ]
  }
}


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]

-

Required

(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
컨텐츠가 도움이 되셨나요?