Input URI
|
{base url} + DESIGN/RC/KDS-41-20-2022/WMAK |
|---|
Active Methods
|
POST,GET,PUT,DELETE |
|---|
JSON Schema
Details
{
"title": "Modify Wall Mark Data (WMAK)",
"description": "POST /DESIGN/RC/KDS-41-20-2022/WMAK — Design Parameters - Modify Wall Mark Data",
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"title": "Modify Wall Mark Data",
"type": "object",
"required": [
"MARKNAME",
"WID_LIST"
],
"additionalProperties": false,
"properties": {
"MARKNAME": {
"type": "string",
"description": "Wall mark name",
"minLength": 1
},
"WID_LIST": {
"type": "array",
"description": "Target wall IDs",
"items": {
"type": "integer"
},
"minItems": 1
}
}
}
}
}
}
}
"title": "Modify Wall Mark Data (WMAK)",
"description": "POST /DESIGN/RC/KDS-41-20-2022/WMAK — Design Parameters - Modify Wall Mark Data",
"type": "object",
"required": [
"Assign"
],
"additionalProperties": false,
"properties": {
"Assign": {
"type": "object",
"description": "Keyed object (dictionary). Each property name is an ID string (e.g., \"1\").",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"title": "Modify Wall Mark Data",
"type": "object",
"required": [
"MARKNAME",
"WID_LIST"
],
"additionalProperties": false,
"properties": {
"MARKNAME": {
"type": "string",
"description": "Wall mark name",
"minLength": 1
},
"WID_LIST": {
"type": "array",
"description": "Target wall IDs",
"items": {
"type": "integer"
},
"minItems": 1
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"1": {
"MARKNAME": "W200",
"WID_LIST": [
1,
2
]
}
}
}
"Assign": {
"1": {
"MARKNAME": "W200",
"WID_LIST": [
1,
2
]
}
}
}
Response Examples
Example
{
"WMAK": {
"1": {
"MARKNAME": "W200",
"WID_LIST": [
1,
2
]
}
}
}
"WMAK": {
"1": {
"MARKNAME": "W200",
"WID_LIST": [
1,
2
]
}
}
}
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 |
Mark Name Constraints: • Length: min 1 |
"MARKNAME" |
string |
- |
Required |
|||
|
2 |
Wall ID List Constraints: • Items: min 1 |
"WID_LIST" |
Array [integer] |
- |
Required |
|||