Input URI
|
{base url} + /ope/LCOM-GEN |
|---|
Active Methods
|
POST |
|---|
JSON Schema
Details
{
"type": "object",
"required": [
"Argument"
],
"properties": {
"Argument": {
"description": "LCOM-GEN item for AIK 2K. Only SRC is currently supported.",
"oneOf": [
{
"type": "object",
"required": [
"OPTION",
"DGNCODE",
"RS_SCALE_FACTOR"
],
"properties": {
"OPTION": {
"type": "string",
"enum": [
"ADD",
"REPLACE"
]
},
"DGNCODE": {
"type": "string",
"enum": [
"AIK-SRC2K"
]
},
"RS_SCALE_FACTOR": {
"type": "array",
"items": {
"type": "object",
"required": [
"LOAD_CASE",
"FACTOR"
],
"properties": {
"LOAD_CASE": {
"type": "string",
"description": "Response Spectrum Load Case"
},
"FACTOR": {
"type": "number",
"description": "Scale Factor"
}
}
}
}
}
}
]
}
}
}
"type": "object",
"required": [
"Argument"
],
"properties": {
"Argument": {
"description": "LCOM-GEN item for AIK 2K. Only SRC is currently supported.",
"oneOf": [
{
"type": "object",
"required": [
"OPTION",
"DGNCODE",
"RS_SCALE_FACTOR"
],
"properties": {
"OPTION": {
"type": "string",
"enum": [
"ADD",
"REPLACE"
]
},
"DGNCODE": {
"type": "string",
"enum": [
"AIK-SRC2K"
]
},
"RS_SCALE_FACTOR": {
"type": "array",
"items": {
"type": "object",
"required": [
"LOAD_CASE",
"FACTOR"
],
"properties": {
"LOAD_CASE": {
"type": "string",
"description": "Response Spectrum Load Case"
},
"FACTOR": {
"type": "number",
"description": "Scale Factor"
}
}
}
}
}
}
]
}
}
}
Request Examples
Example
{
"Argument": {
"OPTION": "ADD",
"DGNCODE": "AIK-SRC2K",
"RS_SCALE_FACTOR": [
{
"LOAD_CASE": "RX(RS)",
"FACTOR": 1
},
{
"LOAD_CASE": "RY(RS)",
"FACTOR": 1
}
]
}
}
"Argument": {
"OPTION": "ADD",
"DGNCODE": "AIK-SRC2K",
"RS_SCALE_FACTOR": [
{
"LOAD_CASE": "RX(RS)",
"FACTOR": 1
},
{
"LOAD_CASE": "RY(RS)",
"FACTOR": 1
}
]
}
}
Specifications
Keyed Object Entry
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
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 | |||
|---|---|---|---|---|---|---|---|---|
1 |
OPTION • ADD • REPLACE |
"OPTION" |
string (enum) |
- |
Required |
|||
2 |
DGNCODE • AIK-SRC2K |
"DGNCODE" |
string (enum) |
- |
Required |
|||
3 |
RS_SCALE_FACTOR |
"RS_SCALE_FACTOR" |
array [object] |
- |
Required |
|||
(1) | Response Spectrum Load Case • Static Load Case ◦ NAME + "(ST)" • Response Spectrum Load Case ◦ NAME + "(RS)" |
"LOAD_CASE" |
string |
- |
Required |
|||
(2) | Scale Factor |
"FACTOR" |
number |
- |
Required |
|||