Skip to main content
JSON Manual Created Edited

DESIGN/RC/KDS-41-20-2022/SCOL : Seismic Column Type

Input URI

{base url} + DESIGN/RC/KDS-41-20-2022/SCOL



Active Methods

POST,GET,PUT,DELETE



JSON Schema

Details

{
  "type""object",
  "additionalProperties"false,
  "required": [
    "Assign"
  ],
  "properties": {
    "Assign": {
      "type""object",
      "description""Object keyed by member ID strings (e.g., \"1059\"), where each value is a story type setting object.",
      "minProperties"1,
      "additionalProperties"false,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "additionalProperties"false,
          "required": [
            "TYPE"
          ],
          "properties": {
            "TYPE": {
              "type""string",
              "description""Story type classification.",
              "oneOf": [
                {
                  "title""PILOTI",
                  "const""PILOTI"
                },
                {
                  "title""SOFT_STORY",
                  "const""SOFT_STORY"
                }
              ]
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "915": {
      "TYPE": "PILOTI"
    },
    "916": {
      "TYPE": "SOFT_STORY"
    }
  }
}


Response Examples

Example

{
  "SCOL": {
    "915": {
      "TYPE": "PILOTI"
    },
    "916": {
      "TYPE": "SOFT_STORY"
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Object keyed by member ID strings (e.g., "1059"), where each value is a story type setting object.

"Assign"

object

-

Required



Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Type

• PILOTI: "PILOTI"

• SOFT_STORY: "SOFT_STORY"

"TYPE"

string

-

Required



0
Was this article helpful?