Input URI
|
{base url} + DESIGN/PSC/AASHTO-LRFD24/TABLE |
|---|
Active Methods
|
POST |
|---|
JSON Schema
Details
"type": "object",
"required": [
"Argument"
],
"additionalProperties": false,
"properties": {
"Argument": {
"type": "object",
"required": [
"TABLE_TYPE"
],
"additionalProperties": false,
"properties": {
"TABLE_NAME": {
"type": "string",
"description": "Response Table Title",
"default": ""
},
"TABLE_TYPE": {
"type": "string",
"description": "Check Tensile Stress for Prestressing Tendons - Result Table Type",
"enum": [
"PSC_STRESS_TENDON",
"PSC_STRESS_TENDON_VBEAM"
]
},
"EXPORT_PATH": {
"type": "string",
"description": "Result Table Save Path"
},
"UNIT": {
"type": "object",
"description": "Response Unit Setting",
"properties": {
"FORCE": {
"type": "string",
"description": "Force unit"
},
"DIST": {
"type": "string",
"description": "Length/Distance unit"
},
"HEAT": {
"type": "string",
"description": "Heat unit"
},
"TEMP": {
"type": "string",
"description": "Temperature unit"
}
},
"default": "System"
},
"STYLES": {
"type": "object",
"description": "Response Number Format",
"properties": {
"FORMAT": {
"type": "string",
"description": "Number format",
"enum": [
"Default",
"Fixed",
"Scientific",
"General"
]
},
"PLACE": {
"type": "integer",
"description": "Digit place",
"minimum": 0,
"maximum": 15
}
},
"default": "System"
},
"COMPONENTS": {
"type": "array",
"description": "Components of Result Table",
"items": {
"type": "string",
"enum": [
"FDL1",
"FDL2",
"FLL1",
"AFDL1",
"AFDL2",
"AFLL1"
]
}
},
"TENDON_NO": {
"type": "object",
"description": "Tendon Number",
"properties": {
"KEYS": {
"type": "array",
"description": "Specify Each ID",
"items": {
"type": "integer"
}
},
"TO": {
"type": "string",
"description": "Specify ID Range (e.g., '1to160')"
}
}
}
}
}
}
}
Request Examples
Example
"Argument": {
"TABLE_TYPE": "PSC_STRESS_TENDON",
"TABLE_NAME": "test",
"COMPONENTS": [
"FDL1",
"FDL2",
"FLL1",
"AFDL1",
"AFDL2",
"AFLL1"
],
"TENDON_NO": {
"KEYS": [
1
]
}
}
}
Response Examples
Example
"test": {
"FORCE": "KN",
"DIST": "M",
"HEAD": [
"Index",
"FDL1",
"FDL2",
"FLL1",
"AFDL1",
"AFDL2",
"AFLL1"
],
"DATA": [
[
"1",
"22497258.0000",
"22320546.0000",
"21525388.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"2",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"3",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"4",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"5",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"6",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
],
[
"7",
"0.0000",
"0.0000",
"0.0000",
"1330000.0000",
"1406000.0000",
"1280000.0000"
]
]
}
}
Specifications
Keyed Object Entry
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
Root Object |
||||||||
|
1 |
Map of keyed objects where each key is a string identifier. |
"Argument" |
object |
- |
Required |
|||
Item (Value Object Schema)
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
General |
||||||||
|
1 |
Table Name Output table title in response |
"TABLE_NAME" |
string |
|
Optional |
|||
|
2 |
Table Type • Check Tensile Stress for Prestressing Tendons: "PSC_STRESS_TENDON" • Check Tensile Stress for Prestressing Tendons (Virtual Beam): "PSC_STRESS_TENDON_VBEAM" |
"TABLE_TYPE" |
string |
- |
Required |
|||
|
3 |
Export Path Optional: Save results to file path |
"EXPORT_PATH" |
string |
- |
Optional |
|||
|
4 |
Unit Settings |
"UNIT" |
object |
System |
Optional |
|||
|
4.1 |
Force unit |
"FORCE" |
string |
- |
Optional |
|||
|
4.2 |
Length/Distance unit |
"DIST" |
string |
- |
Optional |
|||
|
4.3 |
Heat unit |
"HEAT" |
string |
- |
Optional |
|||
|
4.4 |
Temperature unit |
"TEMP" |
string |
- |
Optional |
|||
|
5 |
Number Format |
"STYLES" |
object |
System |
Optional |
|||
|
5.1 |
Number format • Default: "Default" • Fixed: "Fixed" • Scientific: "Scientific" • General: "General" |
"FORMAT" |
string |
- |
Optional |
|||
|
5.2 |
Digit place Constraints: • Value Range: >= 0, <= 15 |
"PLACE" |
integer |
- |
Optional |
|||
|
6 |
Components • FDL1: "FDL1" • FDL2: "FDL2" • FLL1: "FLL1" • AFDL1: "AFDL1" • AFDL2: "AFDL2" • AFLL1: "AFLL1" |
"COMPONENTS" |
Array [string] |
- |
Optional |
|||
|
7 |
Tendon Selection Use only ONE of the twice methods: KEYS, TO |
"TENDON_NO" |
object |
- |
Optional |
|||
|
7.1 |
Specify Each ID |
"KEYS" |
Array [integer] |
- |
Optional |
|||
|
7.2 |
Specify ID Range (e.g., '1to160') |
"TO" |
string |
- |
Optional |
|||