Skip to main content
JSON Manual Created Edited

DESIGN/STEEL/KDS-41-30-2022/LENG : Unbraced Length (L, Lb)

Input URI

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



Active Methods

POST,GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "required": [
    "Assign"
  ],
  "additionalProperties"false,
  "properties": {
    "Assign": {
      "type""object",
      "description""Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
      "additionalProperties"false,
      "minProperties"1,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "required": [],
          "additionalProperties"false,
          "properties": {
            "LY": {
              "type""number",
              "description""Unbraced Length Ly",
              "default"0
            },
            "LZ": {
              "type""number",
              "description""Unbraced Length Lz",
              "default"0
            },
            "LB": {
              "type""number",
              "description""Laterally Unbraced Length",
              "default"0
            },
            "bNOTUSE": {
              "type""boolean",
              "description""Do not consider of laterally unbraced length",
              "default"false
            },
            "LT": {
              "type""number",
              "description""Torsional Unbraced Length",
              "default"0
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "888": {
      "LY": 1,
      "LZ": 1,
      "LB": 1,
      "bNOTUSE": true,
      "LT": 1
    },
    "891": {
      "LY": 1,
      "LZ": 1,
      "LB": 2
    }
  }
}


Response Examples

Example

{
  "LENG": {
    "888": {
      "LY": 1,
      "LZ": 1,
      "LB": 1,
      "bNOTUSE": true,
      "LT": 1
    },
    "891": {
      "LY": 1,
      "LZ": 1,
      "LB": 2
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Keyed object (dictionary). Each property name is an ID string (e.g., "1").

"Assign"

object

-

Required



Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Unbraced Length Ly

"LY"

number

0

Optional

2

Unbraced Length Lz

"LZ"

number

0

Optional

3

Laterally Unbraced Length

"LB"

number

0

Optional

4

Do not consider of laterally unbraced length

"bNOTUSE"

boolean

false

Optional

5

Torsional Unbraced Length

"LT"

number

0

Optional



0
Was this article helpful?