Skip to main content
JSON Manual Created Edited

DESIGN/RC/KDS-41-20-2022/TRFT : Torsion Reduction Factor

Input URI

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



Active Methods

POST,GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "required": [
    "Assign"
  ],
  "additionalProperties"false,
  "properties": {
    "Assign": {
      "type""object",
      "description""Object keyed by beam member ID strings (e.g., \"859\"), where each entry assigns a torsion reduction factor. Only Beam Member Type is applicable.",
      "additionalProperties"false,
      "minProperties"1,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "required": [
            "FACTOR"
          ],
          "additionalProperties"false,
          "properties": {
            "FACTOR": {
              "type""number",
              "description""Torsion reduction factor applied to the member.",
              "default"1,
              "exclusiveMinimum"0,
              "maximum"1
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "888": {
      "FACTOR": 1
    }
  }
}


Response Examples

Example

{
  "TRFT": {
    "888": {
      "FACTOR": 1
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Object keyed by beam member ID strings (e.g., "859"), where each entry assigns a torsion reduction factor. Only Beam Member Type is applicable.

"Assign"

object

-

Required


Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Torsion Reduction Factor

Constraints:

• Value Range: > 0, <= 1

"FACTOR"

number

1

Required



0
Was this article helpful?