Skip to main content
JSON Manual Created Edited

DESIGN/STEEL/KDS-41-30-2022/CMFT : Equivalent Moment Correction Factor(Cm)

Input URI

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



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": {
            "OPT_AUTO": {
              "type""boolean",
              "description""Auto Calculate",
              "default"false
            },
            "CMY": {
              "type""number",
              "description""CMy",
              "default"0
            },
            "CMZ": {
              "type""number",
              "description""CMz",
              "default"0
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "1067": {
      "OPT_AUTO": true
    },
    "1068": {
      "OPT_AUTO": true
    },
    "1069": {
      "CMY": 0.7,
      "CMZ": 0.6
    },
    "1070": {
      "CMY": 0.72,
      "CMZ": 0.85
    },
    "1071": {
      "CMY": 0.8,
      "CMZ": 0.8
    }
  }
}


Response Examples

Example

{
  "CMFT": {
    "1067": {
      "OPT_AUTO": true
    },
    "1068": {
      "OPT_AUTO": true
    },
    "1069": {
      "CMY": 0.7,
      "CMZ": 0.6
    },
    "1070": {
      "CMY": 0.72,
      "CMZ": 0.85
    },
    "1071": {
      "CMY": 0.8,
      "CMZ": 0.8
    }
  }
}


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

"OPT_AUTO"

boolean

false

Optional

2

CMy

"CMY"

number

0

Optional

3

CMz

"CMZ"

number

0

Optional



0
Was this article helpful?