Skip to main content
JSON Manual Created Edited

Specified Displacements of Support

Input URI

{base url} + db/SDSP



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "SDSP": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITEMS": {
                "description": "ItemsByNode",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ID": {
                            "description": "ID",
                            "type": "integer"
                        },
                        "LCNAME": {
                            "description": "LoadCaseName",
                            "type": "string"
                        },
                        "GROUP_NAME": {
                            "description": "LoadGroupName",
                            "type": "string"
                        },
                        "VALUES": {
                            "description": "Values",
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "OPT_FLAG": {
                                        "description": "UsageFlag",
                                        "type": "boolean"
                                    },
                                    "DISPLACEMENT": {
                                        "description": "Displacement(LocalDirection)Value",
                                        "type": "number"
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Specified Displacements of Support

{
    "Assign": {
        "10": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "LL",
                    "GROUP_NAME": "",
                    "VALUES": [
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 1.5
                        },
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 1.5
                        },
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 1.5
                        },
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 1.5
                        },
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 0.5
                        },
                        {
                            "OPT_FLAG": true,
                            "DISPLACEMENT": 0.5
                        }
                    ]
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Specified Displacement of Support

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

Displacements (Local Direction)

 • [Dx, Dy, Dz, Rx, Ry, Rz]

"VALUES"

Array
[Object, 6]

Blank

Optional

i. Usage Flag

"OPT_FLAG"

Boolean

False

Optional

ii. Displacement Value

"DISPLACEMENT"

Real

0

Optional



0
Was this article helpful?