Input URI
{base url} + db/MVLDtr |
---|
Active Methods
POST, GET, PUT, DELETE |
---|
JSON Schema
Details
{
"MVLDTR": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"LCNAME": {
"description": "LoadCaseName",
"type": "string"
},
"DESC": {
"description": "Description",
"type": "string"
},
"MVHL_NAME": {
"description": "Vehicle(MVHL)Name",
"type": "string"
},
"SCALEFACTOR": {
"description": "ScaleFactor",
"type": "number"
},
"LLAN_NAME": {
"description": "LineLaneName",
"type": "string"
},
"NUM_LANE": {
"description": "NumberofLanes",
"type": "integer"
},
"ITEMS": {
"description": "LaneFactors",
"type": "array",
"items": {
"type": "number"
}
}
}
}
}
"MVLDTR": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"LCNAME": {
"description": "LoadCaseName",
"type": "string"
},
"DESC": {
"description": "Description",
"type": "string"
},
"MVHL_NAME": {
"description": "Vehicle(MVHL)Name",
"type": "string"
},
"SCALEFACTOR": {
"description": "ScaleFactor",
"type": "number"
},
"LLAN_NAME": {
"description": "LineLaneName",
"type": "string"
},
"NUM_LANE": {
"description": "NumberofLanes",
"type": "integer"
},
"ITEMS": {
"description": "LaneFactors",
"type": "array",
"items": {
"type": "number"
}
}
}
}
}
Examples
Moving Load Case
{
"Assign": {
"1": {
"LCNAME": "MV_Case1",
"DESC": "",
"MVHL_NAME": "Trans",
"SCALEFACTOR": 1,
"LLAN_NAME": "LL_01",
"NUM_LANE": 3,
"ITEMS": [
1,
1,
0.9,
0.75
]
}
}
}
"Assign": {
"1": {
"LCNAME": "MV_Case1",
"DESC": "",
"MVHL_NAME": "Trans",
"SCALEFACTOR": 1,
"LLAN_NAME": "LL_01",
"NUM_LANE": 3,
"ITEMS": [
1,
1,
0.9,
0.75
]
}
}
}
Specifications
No. | Description | Key | Value Type | Default | Required |
---|---|---|---|---|---|
1 |
Load Case Name |
"LCNAME" |
String |
- |
Required |
2 |
Description |
"DESC" |
String |
Blank |
Optional |
3 |
Vehicle Name |
"MVHL_NAME" |
String |
- |
Required |
4 |
Scale Factor |
"SCALEFACTOR" |
Number |
- |
Required |
5 |
Line Lane |
"LLAN_NAME" |
String |
- |
Required |
6 |
Number of Loaded Lanes |
"NUM_LANE" |
Integer |
- |
Required |
7 |
Factors • Length: NUM_LANE + 1 |
"ITEMS" |
Array |
- |
Required |