-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: OpenAPIのドキュメントを改良 #1438
ENH: OpenAPIのドキュメントを改良 #1438
Conversation
title="エラー名", | ||
description="|name|description|\n|---|---|\n" | ||
description="エラー名\n\n" | ||
"|name|description|\n|---|---|\n" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
既にdescription
が使用されていたので改行で対応した。
description=( | ||
"スタイルの種類。" | ||
"talk:音声合成クエリの作成と音声合成が可能。" | ||
"singing_teacher:歌唱音声合成用のクエリの作成が可能。" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
直接関係はないのだが改行されないので見にくい気がする。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
そもそもスキーマは別リンクになっていて欲しい気もしますね。。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!
今思ったんですが、そもそも結構見づらいですね。。
画面が広い時に右に表示されるjsonサンプルみたいなのがいらなさそう・・・?(いる人もいるかもだけど。。)
ドキュメント読んだ感じ、設定は色々ありそう。
https://redocly.com/docs/redoc/config
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
マージします!
OpenAPI見るとtitleは自動せいせされてそうですね。
これが最高の形かどうかはわからないけど、とりあえず良くなった・・・はず。
内容
OpenAPIのドキュメントをより見やすくします。
#1318 (comment) で分かったことなのですが
Field
のtitle
引数でモデルの要素の説明を書くとSwagger UI
では表示されないことが分かりました。また、
description
の方に書くと表示されることが分かりました。description
の方が分かりやすいと思うので変更します。関連 Issue
speaker_info
のリソースをURLで返すようにする #1318 (comment)スクリーンショット・動画など
変更後のイメージ
その他
APIの動作には影響はないはず。
一部で既に
description
を使用している部分があったので改行で対応。