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

DESIGN/STEEL/KDS-41-30-2022/MLLR : Modify Live Load Reduction Factor

Input URI

{base url} + DESIGN/STEEL/KDS-41-30-2022/MLLR



Active Methods

POST,GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "required": [
    "Assign"
  ],
  "additionalProperties"false,
  "properties": {
    "Assign": {
      "type""object",
      "description""Object keyed by ID strings (e.g., \"1\"), where each entry represents an element.",
      "additionalProperties"false,
      "minProperties"1,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "required": [],
          "additionalProperties"false,
          "properties": {
            "FACTOR": {
              "type""number",
              "description""Reduction Factor",
              "default"1,
              "minimum"0.3,
              "maximum"1
            },
            "COMPONENTS": {
              "type""object",
              "description""Applied Components",
              "additionalProperties"false,
              "properties": {
                "AXIAL": {
                  "type""boolean",
                  "description""Axial Force",
                  "default"false
                },
                "MOMENT": {
                  "type""boolean",
                  "description""Moments",
                  "default"false
                },
                "SHEAR": {
                  "type""boolean",
                  "description""Shear Forces",
                  "default"false
                }
              }
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "922": {
      "COMPONENTS": {
        "AXIAL": false,
        "MOMENT": true,
        "SHEAR": false
      }
    },
    "934": {
      "FACTOR": 0.9,
      "COMPONENTS": {
        "AXIAL": true,
        "SHEAR": false
      }
    }
  }
}


Response Examples

Example

{
  "MLLR": {
    "922": {
      "COMPONENTS": {
        "AXIAL": false,
        "MOMENT": true,
        "SHEAR": false
      }
    },
    "934": {
      "FACTOR": 0.9,
      "COMPONENTS": {
        "AXIAL": true,
        "SHEAR": false
      }
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Object keyed by ID strings (e.g., "1"), where each entry represents an element.

"Assign"

object

-

Required


Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Reduction Factor

Constraints:

• Value Range: >= 0.3, <= 1

"FACTOR"

number

1

Optional

2

Applied Components

"COMPONENTS"

object

-

Optional

2.1

Axial Force

"AXIAL"

boolean

false

Optional

2.2

Moments

"MOMENT"

boolean

false

Optional

2.3

Shear Forces

"SHEAR"

boolean

false

Optional



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