Skip to main content
JSON Manual Created Edited

Section Manager - Stress Points

Input URI

{base url} + db/STRPSSM



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "STRPSSM": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "OPT_SAME_J": {
                "description": "SameAdditionalStressPointsDataati&j-end",
                "type": "boolean"
            },
            "POINT_SIZE_1": {
                "description": "PointSize1",
                "type": "integer"
            },
            "POINT_SIZE_2": {
                "description": "PointSize2",
                "type": "integer"
            },
            "POINT1": {
                "description": "PointData1",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "PY": {
                            "description": "PointY",
                            "type": "number"
                        },
                        "PZ": {
                            "description": "PointZ",
                            "type": "number"
                        }
                    }
                }
            },
            "POINT2": {
                "description": "PointData2",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "PY": {
                            "description": "PointY",
                            "type": "number"
                        },
                        "PZ": {
                            "description": "PointZ",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Stress Points

{
    "STRPSSM": {
        "9003": {
            "OPT_SAME_J": true,
            "POINT_SIZE_1": 2,
            "POINT_SIZE_2": 2,
            "POINT1": [
                {
                    "PY": 0.00583,
                    "PZ": 0.00476
                },
                {
                    "PY": -0.00506,
                    "PZ": 0.00097
                }
            ],
            "POINT2": [
                {
                    "PY": 0.007067356048348719,
                    "PZ": 0.005572125828318985
                },
                {
                    "PY": -0.0059233102292634635,
                    "PZ": 0.0011354962297204655
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Same Additional Stress Points Data at i and j-end

"OPT_SAME_J"

Boolean

true

Optional

2

Number of Stress Point for I

"POINT_SIZE_1"

Integer

-

Required

3

Number of Stress Point for J

"POINT_SIZE_2"

Integer

-

Required

4

Stress Point Coordinates for I

 • Insert the data as an object

"POINT1"

Array
[Object]

-

Required

(1)

Point Y

"PY"

Number

-

Required

(2)

Point Z

"PZ"

Number

-

Required

5

Stress Point Coordinates for J

 • Insert the data as an object

"POINT2"

Array
[Object]

-

Required

(1)

Point Y

"PY"

Number

-

Required

(2)

Point Z

"PZ"

Number

-

Required



0
Was this article helpful?