Skip to main content
JSON Manual Created Edited

Pretension Loads

Input URI

{base url} + db/PTNS



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "PTNS": {
        "$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"
                        },
                        "TENSION": {
                            "description": "Tension",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Pretension Loads

{
    "Assign": {
        "3431": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PrS1",
                    "GROUP_NAME": "LoadGroup",
                    "TENSION": 130
                }
            ]
        },
        "3432": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PrS1",
                    "GROUP_NAME": "LoadGroup",
                    "TENSION": 130
                }
            ]
        },
        "3433": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "PrS2",
                    "GROUP_NAME": "LoadGroup",
                    "TENSION": 130
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

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

Pretension Load

"TENSION"

Number

-

Required



0
Was this article helpful?