Skip to main content
JSON Manual Created Edited

DESIGN/RC/KDS-41-20-2022/DFBA : Design Force for Beam Assigned as Member

Input URI

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



Active Methods

POST,GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "required": [
    "Assign"
  ],
  "additionalProperties"false,
  "properties": {
    "Assign": {
      "type""object",
      "description""Object keyed by member ID strings (e.g., \"1\"), where each entry represents the design force type assigned to the beam member.",
      "additionalProperties"false,
      "minProperties"1,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "required": [
            "FORCE_TYPE"
          ],
          "additionalProperties"false,
          "properties": {
            "FORCE_TYPE": {
              "type""string",
              "description""Design force type for the beam member.",
              "oneOf": [
                {
                  "title""Subdivided Forces",
                  "const""Subdivided Forces"
                },
                {
                  "title""Member Forces",
                  "const""Member Forces"
                }
              ]
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "859": {
      "FORCE_TYPE": "Subdivided Forces"
    },
    "860": {
      "FORCE_TYPE": "Member Forces"
    }
  }
}


Response Examples

Example

{
  "DFBA": {
    "859": {
      "FORCE_TYPE": "Subdivided Forces"
    },
    "860": {
      "FORCE_TYPE": "Member Forces"
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Object keyed by member ID strings (e.g., "1"), where each entry represents the design force type assigned to the beam member.

"Assign"

object

-

Required



Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Design Force Type

• Subdivided Forces: "Subdivided Forces"

• Member Forces: "Member Forces"

"FORCE_TYPE"

string

-

Required



0
Was this article helpful?