Input URI
|
{base url} + DESIGN/SRC/AIK-SRC2K/DCO |
|---|
Active Methods
|
PUT,GET,DELETE |
|---|
JSON Schema
Details
{
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
"minProperties": 1,
"maxProeprties": 1,
"additionalProperties": false,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"DGNCODE",
"SEISMIC"
],
"additionalProperties": false,
"properties": {
"DGNCODE": {
"type": "string",
"description": "Design code.",
"default": "AIK-SRC2K",
"oneOf": [
{
"const": "AIK-SRC2K",
"title": "AIK-SRC2K"
}
]
},
"SEISMIC": {
"type": "boolean",
"description": "Whether seismic design is applied.",
"default": true
}
}
}
}
}
}
}
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
"minProperties": 1,
"maxProeprties": 1,
"additionalProperties": false,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"DGNCODE",
"SEISMIC"
],
"additionalProperties": false,
"properties": {
"DGNCODE": {
"type": "string",
"description": "Design code.",
"default": "AIK-SRC2K",
"oneOf": [
{
"const": "AIK-SRC2K",
"title": "AIK-SRC2K"
}
]
},
"SEISMIC": {
"type": "boolean",
"description": "Whether seismic design is applied.",
"default": true
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"1": {
"DGNCODE": "AIK-SRC2K",
"SEISMIC": true
}
}
}
"Assign": {
"1": {
"DGNCODE": "AIK-SRC2K",
"SEISMIC": true
}
}
}
Response Examples
Example
{
"SRCDCO": {
"1": {
"DGNCODE": "AIK-SRC2K",
"SEISMIC": true
}
}
}
"SRCDCO": {
"1": {
"DGNCODE": "AIK-SRC2K",
"SEISMIC": true
}
}
}
Specifications
Keyed Object Entry
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
Root Object |
||||||||
|
1 |
Keyed object (dictionary). Each property name is an ID string (e.g., "1"). |
"Assign" |
object |
- |
Required |
|||
Item (Value Object Schema)
| No. | Description | Key | Value Type | Default | Required | |||
|---|---|---|---|---|---|---|---|---|
|
General |
||||||||
|
1 |
Design Code • AIK-SRC2K: "AIK-SRC2K" |
"DGNCODE" |
string |
|
Required |
|||
|
2 |
Seismic |
"SEISMIC" |
boolean |
|
Required |
|||