Skip to main content
JSON Manual Created Edited

DESIGN/RC/KDS-41-20-2022/LMRR : Limiting Maximum Rebar Ratio

Input URI

{base url} + DESIGN/RC/KDS-41-20-2022/LMRR



Active Methods

GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "additionalProperties"false,
  "required": [
    "Assign"
  ],
  "properties": {
    "Assign": {
      "type""object",
      "description""Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
      "minProperties"1,
      "maxProperties"1,
      "additionalProperties"false,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "additionalProperties"false,
          "required": [
            "RHOR",
            "RHOC",
            "RHOW"
          ],
          "properties": {
            "RHOW": {
              "type""number",
              "description""Maximum rebar ratio for Shear Wall Design (Rhow)."
            },
            "RHOC": {
              "type""number",
              "description""Maximum rebar ratio for Column Design (Rhoc)."
            },
            "RHOR": {
              "type""number",
              "description""Maximum rebar ratio for Brace Design (Rhor)."
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "1": {
      "RHOW": 0.04,
      "RHOC": 0.03,
      "RHOR": 0.03
    }
  }
}


Response Examples

Example

{
  "LMRR": {
    "1": {
      "RHOR": 0.03,
      "RHOC": 0.03,
      "RHOW": 0.04
    }
  }
}


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

Shear Wall Design (Rhow)

"RHOW"

number

-

Required

2

Column Design (Rhoc)

"RHOC"

number

-

Required

3

Brace Design (Rhor)

"RHOR"

number

-

Required



0
Was this article helpful?