Skip to main content
JSON Manual Created Edited

Tendon Prestress

Input URI

{base url} + db/TDPL



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "TDPL": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITEMS": {
                "description": "TendonPrestressLoadsByStaticLoad",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ID": {
                            "description": "ID",
                            "type": "integer"
                        },
                        "LCNAME": {
                            "description": "LoadCaseName",
                            "type": "string"
                        },
                        "GROUP_NAME": {
                            "description": "GroupName",
                            "type": "string"
                        },
                        "TENDON_NAME": {
                            "description": "TendonName",
                            "type": "string"
                        },
                        "TYPE": {
                            "description": "ValueType(STRESS/FORCE)",
                            "type": "string"
                        },
                        "ORDER": {
                            "description": "StartFrom(BEGIN/END/BOTH)",
                            "type": "string"
                        },
                        "BEGIN": {
                            "description": "ValueBegin",
                            "type": "number"
                        },
                        "END": {
                            "description": "ValueEnd",
                            "type": "number"
                        },
                        "GROUTING": {
                            "description": "Grouting",
                            "type": "integer"
                        }
                    }
                }
            }
        }
    }
}


Examples

Tendon Prestress

{
    "Assign": {
        "2": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PS",
                    "GROUP_NAME": "LoadGroup",
                    "TENDON_NAME": "2D/Round/Element",
                    "TYPE": "FORCE",
                    "ORDER": "BOTH",
                    "BEGIN": 1360000,
                    "END": 1360000,
                    "GROUTING": 1
                }
            ]
        },
        "6": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PS",
                    "GROUP_NAME": "LoadGroup",
                    "TENDON_NAME": "2D/Round/Curve",
                    "TYPE": "STRESS",
                    "ORDER": "BOTH",
                    "BEGIN": 1360000,
                    "END": 1360000,
                    "GROUTING": 1
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Tendon Prestress

 • 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)

Tendon Profile Name

"TENDON_NAME"

String

-

Required

(5)

Prestress Load Type

 • Stress: "STRESS"

 • Force: "FORCE"

"TYPE"

String

"STRESS"

Optional

(6)

Jacking Step

 • Begin: "BEGIN"

 • End: "END"

 • Both: "BOTH"

"ORDER"

String

"BEGIN"

Optional

(7)

Jaking Force at Begin

"BEGIN"

Number

-

Required

(8)

Jaking Force at End

"END"

Number

-

Required

(9)

Grouting Stage

"GROUTING"

Integer

0

Optional



0
Was this article helpful?