メインコンテンツへスキップ
JSON Manual 作成 編集

DESIGN/RC/KDS-41-20-2022/MLLR : Modify Live Load Reduction Factor

入力 URI

/DESIGN/RC/KDS-41-20-2022/MLLR



メソッド

POST,GET,PUT,DELETE



JSON スキーマ

Details

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


リクエスト例

Example

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


レスポンス例

Example

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


仕様

Keyed Object Entry

No. 説明 Key データ型 Default 必須

Root Object

1

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

"Assign"

object

-

必須


Item (Value Object Schema)

No. 説明 Key データ型 Default 必須

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
コンテンツが役に立ちましたか?