marihachi/Minazuki

About basic format of API response - 基本的なAPIレスポンスのフォーマットについて

marihachi opened this issue · 2 comments

成功時(success)

{
  success : true,
  license? : {
    key : string,
    enabled : boolean,
    activated : boolean
  },
  licenses? : [
    {
      key : string,
      enabled : boolean,
      activated : boolean
    },
    (...)
  ]
}

失敗時(failure)

{
  success : false,
  error : {
    message : string,
    detail? : {
      paramName? : string
    }
  }
}

content要らないかなあ

フォーマット更新した