Input URI
|
/DESIGN/RC/KDS-41-20-2022/MCMB |
|---|
Active Methods
|
POST,GET,PUT,DELETE |
|---|
JSON Schema
Details
{
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Object keyed by member ID strings (e.g., \"1\"), where each entry represents the moment calculation method assigned to the beam member.",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"CALC_METHOD"
],
"additionalProperties": false,
"properties": {
"CALC_METHOD": {
"type": "string",
"description": "Moment calculation method for the beam member.",
"oneOf": [
{
"title": "Each Span",
"const": "EACH"
},
{
"title": "Equivalent Frame",
"const": "EQUI"
}
]
}
}
}
}
}
}
}
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Object keyed by member ID strings (e.g., \"1\"), where each entry represents the moment calculation method assigned to the beam member.",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"CALC_METHOD"
],
"additionalProperties": false,
"properties": {
"CALC_METHOD": {
"type": "string",
"description": "Moment calculation method for the beam member.",
"oneOf": [
{
"title": "Each Span",
"const": "EACH"
},
{
"title": "Equivalent Frame",
"const": "EQUI"
}
]
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"888": {
"CALC_METHOD": "EACH"
}
}
}
"Assign": {
"888": {
"CALC_METHOD": "EACH"
}
}
}
Response Examples
Example
{
"MCMB": {
"888": {
"CALC_METHOD": "EACH"
}
}
}
"MCMB": {
"888": {
"CALC_METHOD": "EACH"
}
}
}
Specifications
Keyed Object Entry
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
Root Object |
||||||||
|
1 |
Object keyed by member ID strings (e.g., "1"), where each entry represents the moment calculation method assigned to the beam member. |
"Assign" |
object |
- |
Required |
|||
Item (Value Object Schema)
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
General |
||||||||
|
1 |
Moment Calculation Method • Each Span: "EACH" • Equivalent Frame: "EQUI" |
"CALC_METHOD" |
string |
- |
Required |
|||