Input URI
|
{base url} + DESIGN/STEEL/KDS-41-30-2022/MLLR |
|---|
Active Methods
|
POST,GET,PUT,DELETE |
|---|
JSON Schema
Details
{
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Object keyed by ID strings (e.g., \"1\"), where each entry represents an element.",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"FACTOR": {
"type": "number",
"description": "Reduction Factor",
"default": 1,
"minimum": 0.3,
"maximum": 1
},
"COMPONENTS": {
"type": "object",
"description": "Applied Components",
"additionalProperties": false,
"properties": {
"AXIAL": {
"type": "boolean",
"description": "Axial Force",
"default": false
},
"MOMENT": {
"type": "boolean",
"description": "Moments",
"default": false
},
"SHEAR": {
"type": "boolean",
"description": "Shear Forces",
"default": false
}
}
}
}
}
}
}
}
}
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Object keyed by ID strings (e.g., \"1\"), where each entry represents an element.",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"FACTOR": {
"type": "number",
"description": "Reduction Factor",
"default": 1,
"minimum": 0.3,
"maximum": 1
},
"COMPONENTS": {
"type": "object",
"description": "Applied Components",
"additionalProperties": false,
"properties": {
"AXIAL": {
"type": "boolean",
"description": "Axial Force",
"default": false
},
"MOMENT": {
"type": "boolean",
"description": "Moments",
"default": false
},
"SHEAR": {
"type": "boolean",
"description": "Shear Forces",
"default": false
}
}
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"922": {
"COMPONENTS": {
"AXIAL": false,
"MOMENT": true,
"SHEAR": false
}
},
"934": {
"FACTOR": 0.9,
"COMPONENTS": {
"AXIAL": true,
"SHEAR": false
}
}
}
}
"Assign": {
"922": {
"COMPONENTS": {
"AXIAL": false,
"MOMENT": true,
"SHEAR": false
}
},
"934": {
"FACTOR": 0.9,
"COMPONENTS": {
"AXIAL": true,
"SHEAR": false
}
}
}
}
Response Examples
Example
{
"MLLR": {
"922": {
"COMPONENTS": {
"AXIAL": false,
"MOMENT": true,
"SHEAR": false
}
},
"934": {
"FACTOR": 0.9,
"COMPONENTS": {
"AXIAL": true,
"SHEAR": false
}
}
}
}
"MLLR": {
"922": {
"COMPONENTS": {
"AXIAL": false,
"MOMENT": true,
"SHEAR": false
}
},
"934": {
"FACTOR": 0.9,
"COMPONENTS": {
"AXIAL": true,
"SHEAR": false
}
}
}
}
Specifications
Keyed Object Entry
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
Root Object |
||||||||
|
1 |
Object keyed by ID strings (e.g., "1"), where each entry represents an element. |
"Assign" |
object |
- |
Required |
|||
Item (Value Object Schema)
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
General |
||||||||
|
1 |
Reduction Factor Constraints: • Value Range: >= 0.3, <= 1 |
"FACTOR" |
number |
|
Optional |
|||
|
2 |
Applied Components |
"COMPONENTS" |
object |
- |
Optional |
|||
|
2.1 |
Axial Force |
"AXIAL" |
boolean |
|
Optional |
|||
|
2.2 |
Moments |
"MOMENT" |
boolean |
|
Optional |
|||
|
2.3 |
Shear Forces |
"SHEAR" |
boolean |
|
Optional |
|||