Input URI
|
{base url} + DESIGN/RC/KDS-41-20-2022/REXC |
|---|
Active Methods
|
POST,GET,PUT,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,
"additionalProperties": false,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"EXPOSURE"
],
"additionalProperties": false,
"properties": {
"EXPOSURE": {
"type": "string",
"description": "Rebar exposure condition.",
"default": "Dry",
"oneOf": [
{
"const": "Etc",
"title": "Etc"
},
{
"const": "Dry",
"title": "Dry"
}
]
}
}
}
}
}
}
}
"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,
"additionalProperties": false,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"EXPOSURE"
],
"additionalProperties": false,
"properties": {
"EXPOSURE": {
"type": "string",
"description": "Rebar exposure condition.",
"default": "Dry",
"oneOf": [
{
"const": "Etc",
"title": "Etc"
},
{
"const": "Dry",
"title": "Dry"
}
]
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"17": {
"EXPOSURE": "Dry"
},
"49": {
"EXPOSURE": "Etc"
}
}
}
"Assign": {
"17": {
"EXPOSURE": "Dry"
},
"49": {
"EXPOSURE": "Etc"
}
}
}
Response Examples
Example
{
"REXC": {
"17": {
"EXPOSURE": "Dry"
},
"49": {
"EXPOSURE": "Etc"
}
}
}
"REXC": {
"17": {
"EXPOSURE": "Dry"
},
"49": {
"EXPOSURE": "Etc"
}
}
}
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 |
Exposure Condition • Etc: "Etc" • Dry: "Dry" |
"EXPOSURE" |
string |
|
Required |
|||