跳至內容

API 一般資訊

將您的 API 的一般資訊納入規格中被認為是一個好的做法:版本號碼、授權附註、聯絡資料、文件連結等等。我們特別建議針對公開可用的 API 執行此操作;因為這可以提高使用者對您的公司提供的服務的信心。若要指定 API 元數據,您可以使用頂層 info 物件的屬性。

1
openapi: 3.0.0
2
info:
3
# You application title. Required.
4
title: Sample Pet Store App
5
6
# API version. You can use semantic versioning like 1.0.0,
7
# or an arbitrary string like 0.99-beta. Required.
8
version: 1.0.0
9
10
# API description. Arbitrary text in CommonMark or HTML.
11
description: This is a sample server for a pet store.
12
13
# Link to the page that describes the terms of service.
14
# Must be in the URL format.
15
termsOfService: http://example.com/terms/
16
17
# Contact information: name, email, URL.
18
contact:
19
name: API Support
20
email: support@example.com
21
url: http://example.com/support
22
23
# Name of the license and a URL to the license description.
24
license:
25
name: Apache 2.0
26
url: http://www.apache.org/licenses/LICENSE-2.0.html
27
28
# Link to the external documentation (if any).
29
# Code or documentation generation tools can use description as the text of the link.
30
externalDocs:
31
description: Find out more
32
url: http://example.com

titleversion 屬性是必要的,其他屬性是選用的。

參考

資訊物件

找不到您要尋找的內容嗎? 詢問社群
發現錯誤? 告訴我們