Skip to main content
JSON Manual Created Edited

System Temperature

Input URI

{base url} + db/STMP



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "STMP": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "TEMPER": {
                "description": "SystemTemperature",
                "type": "number"
            },
            "LCNAME": {
                "description": "LoadCaseName",
                "type": "string"
            },
            "GROUP_NAME": {
                "description": "LoadGroupName",
                "type": "string"
            }
        }
    }
}


Examples

System Temperature

{
    "Assign": {
        "1": {
            "TEMPER": 12.5,
            "LCNAME": "Temp(+)",
            "GROUP_NAME": "LoadGroup1"
        },
        "2": {
            "TEMPER": -32.3,
            "LCNAME": "Temp(-)",
            "GROUP_NAME": "LoadGroup2"
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Load Case Name

"LCNAME"

String

-

Required

2

Load Group Name

"GROUP_NAME"

String

Blank

Optional

3

System Temperature

"TEMPER"

Number

0

Optional



0
Was this article helpful?