주 콘텐츠로 건너뛰기
JSON Manual 생성 편집

DESIGN/SRC/AIK-SRC2K/DCO : Design Code Option

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
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "1": {
      "DGNCODE": "AIK-SRC2K",
      "SEISMIC": true
    }
  }
}


Response Examples

Example

{
  "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

"AIK-SRC2K"

Required

2

Seismic

"SEISMIC"

boolean

true

Required



0
컨텐츠가 도움이 되셨나요?