メインコンテンツへスキップ
JSON Manual 作成 編集

DESIGN/RC/DRC : RC Design Code

入力 URI

{base url} + DESIGN/RC/DRC



メソッド

PUT,GET,DELETE



JSON スキーマ

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,
      "maxProperties"1,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "required": [
            "DGNCODE"
          ],
          "additionalProperties"false,
          "properties": {
            "DGNCODE": {
              "type""string",
              "description""Design Code",
              "enum": [
                "KDS 41 20 : 2022"
              ]
            }
          }
        }
      }
    }
  }
}


リクエスト例

Example

{
  "Assign": {
    "1": {
      "DGNCODE": "KDS 41 20 : 2022"
    }
  }
}


レスポンス例

Example

{
  "DCON": {
    "1": {
      "DGNCODE": "KDS 41 20 : 2022"
    }
  }
}


仕様

Keyed Object Entry

No. 説明 Key データ型 Default 必須

Root Object

1

Keyed object (dictionary). Each property name is an ID string (e.g., "1").

"Assign"

object

-

Required


Item (Value Object Schema)

No. 説明 Key データ型 Default 必須

General

1

Design Code

• KDS 41 20 : 2022: "KDS 41 20 : 2022"

"DGNCODE"

string

-

Required



0
コンテンツが役に立ちましたか?