開発, API

Swagger API作成 配列arrayとオブジェクトobjectの表記

 

Swagger API 配列, オブジェクトの記述例

 

久しぶりにSwagger書くとはまるので、
配列とオブジェクトを書いておく

 

type: object
properties:
  $ref: "./parts/shop.yaml"
example:
  $ref: "./example/shop.yaml"

 

/parts/shop.yaml

draft:
  type: array
  items:
    type: object
    description: 下書き
    properties:
      id:
        type: integer
      shop_id:
        type: integer
        description: shop id
production:
  type: array
  items:
    type: object
    description: 本番
    properties:
      id:
        type: integer
      shop_id:
        type: integer
        description: shop id

 

/example/shop.yaml

draft:
  - id: 1
    shop_id: 1
production:
  - id: 1
    shop_id: 1

 

 

 

type: array
items:
  properties:
    user_id:
      type: integer
      type: user id
    user_name:
      type: string
      description: 名前

type: object
properties:
  user_id:
    type: integer
    type: user id
  user_name:
    type: string
    description: 名前

 

type: array
items:
  properties:
    $ref: "./parts/mail_template_type_add_member_by_console.yaml"

type: object
properties:
  $ref: "./parts/mail_template_id.yaml"

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)