Skip to main content
JSON Manual Created Edited

Define Floor Load Type

Input URI

{base url} + db/FBLD



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "FBLD": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "NAME": {
                "description": "FloorLoadTypeName",
                "type": "string"
            },
            "DESC": {
                "description": "Description",
                "type": "string"
            },
            "ITEM": {
                "description": "FloorLoadTypeItem",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "LCNAME": {
                            "description": "LoadCaseName",
                            "type": "string"
                        },
                        "FLOOR_LOAD": {
                            "description": "FloorLoad",
                            "type": "number"
                        },
                        "OPT_SUB_BEAM_WEIGHT": {
                            "description": "SubBeamWeight",
                            "type": "boolean"
                        }
                    }
                }
            }
        }
    }
}


Examples

Define Floor Load Type

{
    "Assign": {
        "1": {
            "NAME": "Floor_example",
            "DESC": "",
            "ITEM": [
                {
                    "LCNAME": "DC",
                    "FLOOR_LOAD": 10,
                    "OPT_SUB_BEAM_WEIGHT": true
                },
                {
                    "LCNAME": "DW",
                    "FLOOR_LOAD": 20,
                    "OPT_SUB_BEAM_WEIGHT": true
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Floor Load Type Name

"NAME"

String

-

Required

2

Description

"DESC"

String

Blank

Optional

3

Floor Loads

 • Insert the data as an object

"ITEM"

Array
[Object]

-

Required

(1)

Load Case Name

"LCNAME"

String

-

Required

(2)

Floor Load

"FLOOR_LOAD"

Number

-

Required

(3)

Consider Sub Beam Weight

"OPT_SUB_BEAM_WEIGHT"

Boolean

false

Optional



0
Was this article helpful?