Skip to main content
JSON Manual Created Edited

Prestress Beam Loads

Input URI

{base url} + db/PRST



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "PRST": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITEMS": {
                "description": "Items",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ID": {
                            "description": "ID",
                            "type": "integer"
                        },
                        "LCNAME": {
                            "description": "LoadCaseName",
                            "type": "string"
                        },
                        "GROUP_NAME": {
                            "description": "LoadGroupName",
                            "type": "string"
                        },
                        "DIR": {
                            "description": "Direction",
                            "type": "integer"
                        },
                        "TENSION": {
                            "description": "Tension",
                            "type": "number"
                        },
                        "DISTANCE_I": {
                            "description": "DistanceI",
                            "type": "number"
                        },
                        "DISTANCE_M": {
                            "description": "DistanceM",
                            "type": "number"
                        },
                        "DISTANCE_J": {
                            "description": "DistanceJ",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Prestress Beam Loads

{
    "Assign": {
        "1101": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PS",
                    "GROUP_NAME": "LoadGroup",
                    "DIR": 1,
                    "TENSION": 1360,
                    "DISTANCE_I": 0.2,
                    "DISTANCE_M": 0.3,
                    "DISTANCE_J": 0.4
                }
            ]
        },
        "1102": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PS",
                    "GROUP_NAME": "LoadGroup",
                    "DIR": 1,
                    "TENSION": 1360,
                    "DISTANCE_I": 0.2,
                    "DISTANCE_M": 0.3,
                    "DISTANCE_J": 0.4
                }
            ]
        },
        "1103": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PS",
                    "GROUP_NAME": "LoadGroup",
                    "DIR": 1,
                    "TENSION": 1360,
                    "DISTANCE_I": 0.2,
                    "DISTANCE_M": 0.3,
                    "DISTANCE_J": 0.4
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Prestress Beam Loads

 • Insert the data as an object

"ITEMS"

Array
[Object]

-

Required

(1)

Serial Number

"ID"

Integer

0

Optional

(2)

Load Case Name

"LCNAME"

String

-

Required

(3)

Load Group Name

"GROUP_NAME"

String

Blank

Optional

(4)

Direction

 • Local y: 0

 • Local z: 1

"DIR"

Integer

0

Optional

(5)

Tension

"TENSION"

Number

-

Required

(6)

Distance - I (Di)

"DISTANCE_I"

Number

0

Optional

(7)

Distance - M (Dm)

"DISTANCE_M"

Number

0

Optional

(8)

Distance - J (Dj)

"DISTANCE_J"

Number

0

Optional



0
Was this article helpful?