Skip to main content
JSON Manual Created Edited

DESIGN/STEEL/KDS-41-30-2022/CBFT : Bending Coefficient(Cb)

Input URI

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



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": {
            "AUTO_CAL": {
              "type""boolean",
              "description""Auto Calculate by Program",
              "default"false
            },
            "VALUE": {
              "type""number",
              "description""Bending Coefficient (Cb) Value",
              "default"1
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "915": {
      "AUTO_CAL": true
    },
    "1058": {
      "AUTO_CAL": false,
      "VALUE": 1.2
    },
    "1059": {
      "AUTO_CAL": false,
      "VALUE": 1.25
    }
  }
}


Response Examples

Example

{
  "CBFT": {
    "915": {
      "AUTO_CAL": true
    },
    "1058": {
      "AUTO_CAL": false,
      "VALUE": 1.2
    },
    "1059": {
      "AUTO_CAL": false,
      "VALUE": 1.25
    }
  }
}


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

Auto Calculate by Program

"AUTO_CAL"

boolean

false

Optional

When "AUTO_CAL" is false

2

Bending Coefficient (Cb) Value

"VALUE"

number

1

Optional



0
Was this article helpful?