Input URI
{base url} + post/TABLE |
---|
Active Methods
POST |
---|
JSON Schema
Details
"RESULTGRAPHIC": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"Argument": {
"type": "object",
"properties": {
"TABLE_NAME": {
"type": "string",
"description": "TableName"
},
"TABLE_TYPE": {
"type": "string",
"description": "ResultTableType",
"enum": [
"IEHG_ELEM_ROT_BEAM",
"IEHG_ELEM_ROT_WALL"
]
},
"EXPORT_PATH": {
"type": "string",
"description": "ResultTableSavePath"
},
"UNIT": {
"type": "object",
"description": "ResponseUnitSetting",
"properties": {
"FORCE": {
"type": "string",
"description": "Force"
},
"DIST": {
"type": "string",
"description": "Length"
},
"HEAT": {
"type": "string",
"description": "Heat"
},
"TEMP": {
"type": "string",
"description": "Temperature"
}
}
},
"STYLES": {
"type": "object",
"description": "ResponseNumberFormat",
"properties": {
"FORMAT": {
"type": "string",
"description": "Numberformat",
"enum": [
"Default",
"Fixed",
"Scientific",
"General"
]
},
"PLACE": {
"type": "integer",
"description": "Digitplace"
}
}
},
"COMPONENTS": {
"type": "array",
"description": "ComponentsofResultTable",
"items": {
"type": "string"
}
},
"TH_LOAD_CASE_NAMES": {
"type": "array",
"description": "TimeHistoryLoadCaseName",
"items": {
"type": "string"
}
}
}
}
}
}
}
Request Examples
Beam
"Argument": {
"TABLE_NAME": "Beam",
"TABLE_TYPE": "IEHG_ELEM_ROT_BEAM",
"EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
"UNIT": {
"FORCE": "kN",
"DIST": "m"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 12
},
"COMPONENTS": [
"Elem",
"Load",
"Part",
"Ry/Rotation",
"Ry/Time",
"Rz/Rotation",
"Rz/Time"
],
"TH_LOAD_CASE_NAMES": [
"Elcent(TH:max)",
"Elcent(TH:min)"
]
}
}
Wall
"Argument": {
"TABLE_NAME": "Wall",
"TABLE_TYPE": "IEHG_ELEM_ROT_WALL",
"EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
"UNIT": {
"FORCE": "kN",
"DIST": "m"
},
"STYLES": {
"FORMAT": "Fixed",
"PLACE": 12
},
"COMPONENTS": [
"Story",
"WallID",
"Load",
"Part",
"Ry/Rotation",
"Ry/Time",
"Rz/Rotation",
"Rz/Time"
],
"TH_LOAD_CASE_NAMES": [
"Elcent(TH:max)",
"Elcent(TH:min)"
]
}
}
Response Examples
Beam
"Beam": {
"FORCE": "kN",
"DIST": "m",
"HEAD": [
"Index",
"Elem",
"Load",
"Part",
"Ry/Rotation",
"Ry/Time",
"Rz/Rotation",
"Rz/Time"
],
"DATA": [
[
"1",
"2",
"Elcent(max)",
"I",
"0.074839800000",
"2.600000000000",
"0.096699700000",
"3.200000000000"
],
[
"2",
"2",
"Elcent(max)",
"J",
"0.056081600000",
"2.600000000000",
"0.080104800000",
"3.200000000000"
],
[
"3",
"3",
"Elcent(max)",
"I",
"0.066542100000",
"2.600000000000",
"0.071378200000",
"3.200000000000"
],
[
"4",
"3",
"Elcent(max)",
"J",
"0.040834900000",
"2.600000000000",
"0.056965600000",
"2.100000000000"
],
[
"5",
"2",
"Elcent(min)",
"I",
"-0.085612600000",
"5.000000000000",
"-0.084381300000",
"2.600000000000"
],
[
"6",
"2",
"Elcent(min)",
"J",
"-0.073813700000",
"2.100000000000",
"-0.064128700000",
"2.600000000000"
],
[
"7",
"3",
"Elcent(min)",
"I",
"-0.069268700000",
"2.100000000000",
"-0.076992400000",
"2.600000000000"
],
[
"8",
"3",
"Elcent(min)",
"J",
"-0.054808900000",
"2.100000000000",
"-0.047926000000",
"2.600000000000"
]
]
}
}
Wall
"Wall": {
"FORCE": "kN",
"DIST": "m",
"HEAD": [
"Index",
"Story",
"WallID",
"Load",
"Part",
"Ry/Rotation",
"Ry/Time",
"Rz/Rotation",
"Rz/Time"
],
"DATA": [
[
"1",
"Base:1F",
"1",
"Elcent(max)",
"Bot",
"0.000132",
"1.700",
"0.048631",
"2.200"
],
[
"2",
"Base:1F",
"1",
"Elcent(max)",
"Top",
"0.000606",
"4.500",
"0.051369",
"2.400"
],
[
"3",
"Base:1F",
"3",
"Elcent(max)",
"Bot",
"0.000132",
"1.700",
"0.069822",
"2.200"
],
[
"4",
"Base:1F",
"3",
"Elcent(max)",
"Top",
"0.000606",
"4.500",
"0.051467",
"2.400"
],
[
"5",
"Base:1F",
"1",
"Elcent(min)",
"Bot",
"-0.000127",
"2.100",
"-0.038741",
"2.400"
],
[
"6",
"Base:1F",
"1",
"Elcent(min)",
"Top",
"-0.000767",
"2.100",
"-0.063388",
"2.200"
],
[
"7",
"Base:1F",
"3",
"Elcent(min)",
"Bot",
"-0.000127",
"2.100",
"-0.057523",
"2.400"
],
[
"8",
"Base:1F",
"3",
"Elcent(min)",
"Top",
"-0.000767",
"2.100",
"-0.063506",
"2.200"
]
]
}
}
Specifications
No. | Description | Key | Value Type | Default | Required | |
---|---|---|---|---|---|---|
1 |
Table Name • Response Table Title |
"TABLE_NAME" |
String |
Empty |
Optional |
|
2 |
Result Table Type • Element Rotation - Beam: "IEHG_ELEM_ROT_BEAM" • Element Rotation - Wall: "IEHG_ELEM_ROT_WALL" |
"TABLE_TYPE" |
String |
- |
Required |
|
3 |
Result Table Save Path |
"EXPORT_PATH" |
String |
- |
Optional |
|
4 |
Response Unit Setting |
"UNIT" |
Object |
System |
Optional |
|
(1) |
Force |
"FORCE" |
String |
- |
Optional |
|
(2) |
Length |
"DIST" |
String |
- |
Optional |
|
(3) |
Heat |
"HEAT" |
String |
- |
Optional |
|
(4) |
Temperature |
"TEMP" |
String |
- |
Optional |
|
5 |
Response Number Format |
"STYLES" |
Object |
System |
Optional |
|
(1) |
Number Format • "Default" • "Fixed" • "Scientific" • "General" |
"FORMAT" |
String |
- |
Optional |
|
(2) |
Digit Place • 0 to 15 |
"PLACE" |
Integer |
- |
Optional |
|
6 |
Components of Result Table |
"COMPONENTS" |
Array [String] |
All |
Optional |
|
7 |
Time History Load Case Name • NAME • NAME + "(TH:all)" • NAME + "(TH:max)" • NAME + "(TH:min)" |
"TH_LOAD_CASE_NAMES" |
Array [String] |
All |
Optional |