Input URI
|
{base url} + RATING/PSC/AASHTO-LRFR19/PFRO-VBEAM |
|---|
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\").",
"additionalProperties": false,
"minProperties": 1,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": [
"PART"
],
"additionalProperties": false,
"properties": {
"PART": {
"type": "enum",
"description": "Part Type",
"default": 0,
"enum": [
0,
1,
2
]
}
}
}
}
}
}
}
"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]+$": {
"type": "object",
"required": [
"PART"
],
"additionalProperties": false,
"properties": {
"PART": {
"type": "enum",
"description": "Part Type",
"default": 0,
"enum": [
0,
1,
2
]
}
}
}
}
}
}
}
Request Examples
Example
{
"Assign": {
"1": {
"PART": 0
},
"2": {
"PART": 1
},
"3": {
"PART": 2
}
}
}
"Assign": {
"1": {
"PART": 0
},
"2": {
"PART": 1
},
"3": {
"PART": 2
}
}
}
Response Examples
Example
{
"PFRO": {
"1": {
"PART": 0
},
"2": {
"PART": 1
},
"3": {
"PART": 2
}
}
}
"PFRO": {
"1": {
"PART": 0
},
"2": {
"PART": 1
},
"3": {
"PART": 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 |
Position Type • I: "0" • J: "1" • I & J: "2" |
"PART" |
enum |
0 |
Required |
|||