Skip to main content
JSON Manual Created Edited

Nodal Temperature

Input URI

{base url} + db/NTMP



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "NTMP": {
        "$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"
                        },
                        "TEMPER": {
                            "description": "NodalTemperature",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Nodal Temperature

{
    "Assign": {
        "190": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "Temp(-)",
                    "GROUP_NAME": "LoadGroup2",
                    "TEMPER": -3
                },
                {
                    "ID": 3,
                    "LCNAME": "Temp(+)",
                    "GROUP_NAME": "LoadGroup1",
                    "TEMPER": 2
                }
            ]
        },
        "234": {
            "ITEMS": [
                {
                    "ID": 1,
                    "LCNAME": "Temp(-)",
                    "GROUP_NAME": "LoadGroup2",
                    "TEMPER": -5
                },
                {
                    "ID": 3,
                    "LCNAME": "Temp(+)",
                    "GROUP_NAME": "LoadGroup1",
                    "TEMPER": 3
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Nodal Temperature

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

Temperature

"TEMPER"

Number

-

Required



0
Was this article helpful?