跳到主要内容

OpenAPI 规范

版本 3.0.3

关键词"MUST","MUST NOT","REQUIRED","SHALL","SHALL NOT","SHOULD","SHOULD NOT","RECOMMENDED","NOT RECOMMENDED","MAY",,"OPTIONAL"当且仅当它们以全部大写字母出现时,本文档中将按照 BCP 14RFC2119RFC8174中的描述进行解释。

本文档翻译了,没有那些关键字。o( ̄︶ ̄)o

以下所说的“工具”是指实现OAS规范的软件,例如knife4J。

修订历史

版本翻译时间翻译人备注
3.0.32022-09-201132454419@qq.com初次翻译

介绍

OpenAPI 规范 (OAS) 为 RESTful API 定义了一个与语言无关的标准接口。它允许人们在不访问源代码的情况下通过网络以文档的形式发现和理解服务的功能。如果定义得当,消费者可以用最少的成本实现与远程服务的交互。 可以使用 OpenAPI 定义来显示 API、用各种编程语言生成服务端、客户端、测试端的代码和其他用例。

定义

OpenAPI Document(OpenAPI文档)

定义或描述API的文档(或一组文档)。OpenAPI的定义使用应符合OpenAPI的规范。

Path Templating(模板路径)

Path Templating是指由花括号 ({})分隔的模板表达式,该表达式使用路径传参将URL路径的一部分标记为可替换的。

路径中的每个模板表达式都必须对应一个Path Item ,该参数包含在 Path Item 本身和/或每个 Path ItemOperations中。

Media Types(媒体类型)

Media type的定义分布在多个资源中,且应符合RFC6838的标准。

部分示例:

text/plain; charset=utf-8
application/json
application/vnd.github+json
application/vnd.github.v3+json
application/vnd.github.v3.raw+json
application/vnd.github.v3.text+json
application/vnd.github.v3.html+json
application/vnd.github.v3.full+json
application/vnd.github.v3.diff
application/vnd.github.v3.patch

HTTP Status Codes(HTTP状态码)

HTTP Status Codes用于展示操作的状态。可用状态码由 RFC7231定义,注册状态码列在 IANA Status Code Registry中。

Specification(规范)

Versions(版本)

OpenAPI规范是是使用 Semantic Versioning 2.0.0 (semver)进行版本控制的,并遵循其规范。

semver 的major、minor部分(例如 3.0)应指定 OAS 功能集。通常.patch版本解决的是本文档中的错误,而不是新增或修改功能集。支持 OAS 3.0 的工具应该与所有 OAS 3.0.* 版本兼容。工具不应考虑补丁版本,例如不区分 3.0.0 和 3.0.1。

OpenAPI规范的每一个新的小版本都应该在相同的主版本中对任何以前有效的OpenAPI文档小版本以同等的语义更新为新的规范版本。这样的更新必须将openapi属性更改为新的小版本。

例如,一个有效的OpenAPI 3.0.2文档,修改openapi的属性为3.1.0之后,应该是一个有效的OpenAPI 3.1.0文档,在语义上与等同于原始的OpenAPI 3.0.2文档。必须编写新的OpenAPI规范的小版本以确保这种形式的向后兼容性。

一个与OAS 3.*.*兼容的 OpenAPI 文档包含一个必需的 openapi 字段,该字段指定它使用的 OAS 的语义版本。(OAS 2.0 文档包含一个名为swagger,其值为“2.0”的顶级版本字段。)

Format(格式)

一个符合OpenAPI规范的OpenAPI文档本身就是一个JSON对象,它可以用JSON或YAML格式表示。

例如,如果一个字段有一个数组,则将使用JSON数组表示为:

{
"field": [ 1, 2, 3 ]
}

规范中的所有字段名称都是区分大小写的。包括map中用作Key的所有字段,除非显式地指出Key是不区分大小写的。

Schema公开了两种类型的字段:分别是Fixed fields(固定字段)和Patterned fields(匹配字段),Patterned fields必须在包含对象中具有唯一名称。

为了保留在 YAML 和 JSON 格式之间互相转换的能力,建议使用 YAML 1.2 版以及一些约束:

注意:虽然 API 可以由 OpenAPI 文档以 YAML 或 JSON 格式定义,但 API 请求、响应正文和其他内容可以不为 JSON 或 YAML。

Document Structure(文档结构)

OpenAPI Document可以由单个或者多个文档组成。 在多个的情况下,规范中必须使用 $ref 字段来引用JSON Schema定义中的这部分。建议将OpenAPI 文档命名为:openapi.json openapi.yaml

Data Types(数据类型)

OAS 中的primitive 数据类型是基于JSON Schema Specification Wright Draft 00支持的类型。注意,integer也可作为一种类型,它被定义为没有分数或指数部分的 JSON 数字。 不支持null作为类型(替代解决方案请参阅nullable)。 模型是使用 Schema Object定义的,它是JSON Schema Specification Wright Draft 00的扩展子集。

primitive 有一个可选的修饰符属性:format。 OAS 使用下列几种格式来详细定义所使用的数据类型。 但是为了支持文档需求,format属性是一个开放的string类型的属性,并且可以具有任何值。 即使本规范未定义,也可以使用比如emailuuid等格式。 没有定义format属性的类型遵循 JSON Schema 中的定义。 不能识别特定format的工具可以默认返回单独的type,就像没有指定format一样。

OAS 定义的格式有:

typeformatComments
integerint3232位有符号数
integerint6464位有符号数(long类型)
numberfloat
numberdouble
string
stringbytebase64编码
stringbinary八位字节序列
boolean
stringdateRFC3339定义的full-date
stringdate-timeRFC3339定义的full-time
stringpassword提示 UI 以隐藏输入

Rich Text Formatting(富文本格式)

整个规范的description字段都被标注为支持 CommonMark markdown 格式。 在工具渲染富文本的时候,必须支持CommonMark 0.27中描述的 markdown 语法。 工具可以选择忽略一些CommonMark功能来解决安全问题。

Relative References in URLs(URL中的相对引用)

如未有另外说明,所有属于URL的属性都可以是 RFC3986定义的相对引用。 使用Server Object中定义的 URL 作为基本 URI 来解析相对引用。

$ref 中使用的相对引用按照 JSON 引用进行处理,使用当前文档的 URL 作为基本 URI。 另请参见参考对象。

Schema(架构)

在下面的描述中,如果一个字段没有明确地被要求必填(REQUIRED、MUST 、SHALL)描述,它可以被认为是可选的(OPTIONAL)。

OpenAPI Object(文档对象)

OpenAPI 文档的根对象。

Fixed fields:
属性名属性类型描述
openapistring必填,该字符串必须是OpenAPI文档使用的OpenAPI Specification version的语义版本号。
infoInfo Object必填,提供有关 API 的metadata,可以根据需要由工具使用。
servers[Server Object]Server Object数组,提供到目标服务器的连接信息。如果未提供servers属性,或为空数组,则默认值将是一个Server Object,其url值为/
pathsPaths Object必填,API的可用path和操作。
componentsComponents Object保存规范里schemas的元素(element)信息。
security[Security Requirement Object]API的安全机制配置。值列表可以使用任意的Security Requirement Object。只需满足其中一个就可以对请求进行授权。单个请求可以重写此定义。如不需要,可配置为{}
tagsTag Object带有附加metadata的tags列表。tags的顺序可用于解析工具展示它们的顺序。 不是每个Operation Objecttags都必须声明。 未声明的tags可以随机展示或基于工具的实现逻辑展示。 列表中的每个tag名称必须是唯一的。
externalDocsExternal Documentation Object其他外部文档。

该对象可以通过Specification Extensions进行扩展。

Info Object(信息对象)

该对象提供有关 API 的metadata 。metadata可以由客户使用也可以在编辑或文档生成工具中使用。

Fixed Fields
属性名属性类型描述
titlestring必填,API的标题。
descriptionstringAPI的简短描述,使用CommonMark syntax可以用于展示富文本。
termsOfServicestring指向API服务条款的URL。必须为URL格式。
contactContact ObjectAPI联系信息。
licenseLicense ObjectAPI许可信息。
versionstring必填,文档的版本(不同于OpenAPI 规范版本或 API 实现版本)。

该对象可以通过Specification Extensions进行扩展。

示例:
{
"title": "Sample Pet Store App",
"description": "This is a sample server for a pet store.",
"termsOfService": "http://example.com/terms/",
"contact": {
"name": "API Support",
"url": "http://www.example.com/support",
"email": "support@example.com"
},
"license": {
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "1.0.1"
}
title: Sample Pet Store App
description: This is a sample server for a pet store.
termsOfService: http://example.com/terms/
contact:
name: API Support
url: http://www.example.com/support
email: support@example.com
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.1

Contact Object(联系信息对象)

API联系信息

属性名属性类型描述
namestring联系人/组织的名称
urlstring联系人信息的URL。必须为URL格式。
emailstring联系人/组织的电子邮件。 必须采用电子邮件格式。

该对象可以通过Specification Extensions进行扩展。

示例:
{
"name": "API Support",
"url": "http://www.example.com/support",
"email": "support@example.com"
}
name: API Support
url: http://www.example.com/support
email: support@example.com

License Object(许可信息对象)

API许可信息

属性名属性类型描述
namestring必填,API使用的许可证名称。
urlstringAPI使用的许可的URL。必须为URL格式。
示例:
{
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html

Server Object(服务器对象)

表示服务器的对象。

Fixed fields:
属性名属性类型描述
urlstring必填,指向目标主机的URL。可以是相对路径,表示服务器相对于OpenAPI文档的位置。当变量命名在{}中时,将进行变量替换。例如{brackets}则会替换brackets变量。
descriptionstringurl所指向的服务器的描述信息,使用CommonMark syntax可以用于展示富文本。
variablesMap[string,Server Variable Object]变量名与值之间的映射,用于替换serversurl配置信息的模板。

该对象可以通过Specification Extensions进行扩展。

示例:
单个服务器:
{
"url": "https://development.gigantic-server.com/v1",
"description": "Development server"
}
url: https://development.gigantic-server.com/v1
description: Development server
多个服务器:
{
"servers": [
{
"url": "https://development.gigantic-server.com/v1",
"description": "Development server"
},
{
"url": "https://staging.gigantic-server.com/v1",
"description": "Staging server"
},
{
"url": "https://api.gigantic-server.com/v1",
"description": "Production server"
}
]
}
servers:
- url: https://development.gigantic-server.com/v1
description: Development server
- url: https://staging.gigantic-server.com/v1
description: Staging server
- url: https://api.gigantic-server.com/v1
description: Production server
应用变量:
{
"servers": [
{
"url": "https://{username}.gigantic-server.com:{port}/{basePath}",
"description": "The production API server",
"variables": {
"username": {
"default": "demo",
"description": "this value is assigned by the service provider, in this example `gigantic-server.com`"
},
"port": {
"enum": [
"8443",
"443"
],
"default": "8443"
},
"basePath": {
"default": "v2"
}
}
}
]
}
servers:
- url: https://{username}.gigantic-server.com:{port}/{basePath}
description: The production API server
variables:
username:
# note! no enum here means it is an open value
default: demo
description: this value is assigned by the service provider, in this example `gigantic-server.com`
port:
enum:
- '8443'
- '443'
default: '8443'
basePath:
# open meaning there is the opportunity to use special base paths as assigned by the provider, default is `v2`
default: v2

Server Variable Object(可变服务器对象)

表示服务器URL模板替换的Server Variable对象。

Fixed Fields
属性名属性类型描述
enum[string]如果替换选项来自数组,则要使用的字符串值的枚举。且数组不能为空。
defaultstring必填,用于替换的默认值,如果未提供,则应发送该值。请注意,此行为与Schema Object对默认值的处理方式不同,因为在这些情况下,参数值是可选的。 如果定义了枚举,则该值应该存在于枚举的值中。
descriptionstring对服务器变量的描述,使用CommonMark syntax可以展示富文本。

这个对象可以使用Specification Extensions进行扩展。

Components Object(组件对象)

为 OAS保存一组可重用的对象。 Components Object中定义的所有对象都不会对API产生影响,除非它们被Components Object外部的属性显式引用。

Fixed Fields
匹配字段属性类型描述
schemasMap[string, Schema Object | Reference Object]可重复使用的Schema Object.
responsesMap[string, Response Object | Reference Object]可重复使用的Response Object.
parametersMap[string, Parameter Object | Reference Object]可重复使用的Parameter Object.
examplesMap[string, Example Object | Reference Object]可重复使用的Example Object.
requestBodiesMap[string, Request Body Object | Reference Object]可重复使用的Request Body Object.
headersMap[string, Header Object| Reference Object]可重复使用的Header Object.
securitySchemesMap[string, Security Scheme Object| Reference Object]可重复使用的Security Scheme Objects.
linksMap[string, Link Object | Reference Object]可重复使用的Link Object.
callbacksMap[string, Callback Object | Reference Object]可重复使用的Callback Object.

这个对象可以使用Specification Extensions进行扩展。

上面声明的所有字段的key都必须能与正则表达式^[a-zA-Z0-9\.\-_]+$匹配。

key的示例
User
User_1
User_Name
user-name
my.org.User
对象示例
"components": {
"schemas": {
"GeneralError": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
}
}
},
"Category": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
}
}
},
"Tag": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
}
}
}
},
"parameters": {
"skipParam": {
"name": "skip",
"in": "query",
"description": "number of items to skip",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
},
"limitParam": {
"name": "limit",
"in": "query",
"description": "max records to return",
"required": true,
"schema" : {
"type": "integer",
"format": "int32"
}
}
},
"responses": {
"NotFound": {
"description": "Entity not found."
},
"IllegalInput": {
"description": "Illegal input for operation."
},
"GeneralError": {
"description": "General Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GeneralError"
}
}
}
}
},
"securitySchemes": {
"api_key": {
"type": "apiKey",
"name": "api_key",
"in": "header"
},
"petstore_auth": {
"type": "oauth2",
"flows": {
"implicit": {
"authorizationUrl": "http://example.org/api/oauth/dialog",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
}
}
}
}
}
components:
schemas:
GeneralError:
type: object
properties:
code:
type: integer
format: int32
message:
type: string
Category:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
Tag:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
parameters:
skipParam:
name: skip
in: query
description: number of items to skip
required: true
schema:
type: integer
format: int32
limitParam:
name: limit
in: query
description: max records to return
required: true
schema:
type: integer
format: int32
responses:
NotFound:
description: Entity not found.
IllegalInput:
description: Illegal input for operation.
GeneralError:
description: General Error
content:
application/json:
schema:
$ref: '#/components/schemas/GeneralError'
securitySchemes:
api_key:
type: apiKey
name: api_key
in: header
petstore_auth:
type: oauth2
flows:
implicit:
authorizationUrl: http://example.org/api/oauth/dialog
scopes:
write:pets: modify pets in your account
read:pets: read your pets

Paths Object(路径对象)

保存到各个资源及其操作的相对路径。该路径被附加到来Server Object的URL以构建完整的URL。 由于ACL约束,Path Item可能为空。

Patterned fields:
匹配字段属性类型描述
/{path}Path Item Object访问资源的相对路径。 字段名称必须以/开头。 路径从Server Object的url字段拼接成完整的URL。 可以使用模板路径。 匹配 URL 时,将会优先匹配模板路径。 具有相同层次结构但不同名称的路径不能存在,因为它们是相同的。 如果匹配不明确,则由工具决定使用哪一个。

这个对象可以使用Specification Extensions进行扩展。

路径匹配示例:

假设定义/pets/mine路径,匹配顺序为:

/pets/{petId}
/pets/mine

相同且无效的匹配方案:

/pets/{petId}
/pets/{name}

匹配不明确的匹配方案:

/{entity}/me
/books/{id}
示例:
{
"/pets": {
"get": {
"description": "Returns all pets from the system that the user has access to",
"responses": {
"200": {
"description": "A list of pets.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/pet"
}
}
}
}
}
}
}
}
}
/pets:
get:
description: Returns all pets from the system that the user has access to
responses:
'200':
description: A list of pets.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/pet'

Path Item Object(路径详细信息对象)

描述在单个路径上可用的操作。由于ACL约束,Path Item可能为空,虽然仍可以通过文档查看,但无法确定哪些操作和参数可用。

Fixed Fields

属性名属性类型描述
$refstring允许对此path item进行外部定义。 引用的结构必须是Path Item Object。 如果Path Item Object字段同时出现在已定义对象和引用对象中,则定义无效。
summarystring一个可选的摘要,应用于此路径中的所有操作。
descriptionstring应用于此路径中的所有操作,如使用CommonMark syntax则可以用于展示富文本。
getOperation Objectget请求操作的定义。
putOperation Objectput请求操作的定义。
postOperation Objectpost请求操作的定义。
deleteOperation Objectdelete请求操作的定义。
optionsOperation Objectoptions请求操作的定义。
headOperation Objecthead请求操作的定义。
patchOperation Objectpatch请求操作的定义。
traceOperation Objecttrace请求操作的定义。
servers[Server Object]servers请求操作的定义。
parameters[Parameter Object | Reference Object]适用于此路径下所有请求操作的参数列表。 这些参数可以在Operation Object中配置parameters覆盖,但不能删除。 且列表内同一个位置的参数名不能重复。 该列表可以使用Reference Object链接到OpenAPI Objectcomponents/parameters定义的参数。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"get": {
"description": "Returns pets based on ID",
"summary": "Find pets by ID",
"operationId": "getPetsById",
"responses": {
"200": {
"description": "pet response",
"content": {
"*/*": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Pet"
}
}
}
}
},
"default": {
"description": "error payload",
"content": {
"text/html": {
"schema": {
"$ref": "#/components/schemas/ErrorModel"
}
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID of pet to use",
"required": true,
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"style": "simple"
}
]
}
get:
description: Returns pets based on ID
summary: Find pets by ID
operationId: getPetsById
responses:
'200':
description: pet response
content:
'*/*' :
schema:
type: array
items:
$ref: '#/components/schemas/Pet'
default:
description: error payload
content:
'text/html':
schema:
$ref: '#/components/schemas/ErrorModel'
parameters:
- name: id
in: path
description: ID of pet to use
required: true
schema:
type: array
items:
type: string
style: simple

Operation Object(请求对象)

路径上的单个API请求操作的描述。以下简称“请求”。

Fixed Fields
属性名属性类型描述
tags[string]API文档控制的tags列表。 tag可用于对请求资源进行分组。
summarystring请求的简单说明。
descriptionstring请求的详细描述。使用CommonMark syntax可以展示富文本。
externalDocsExternal Documentation Object该请求附加的外部文档。
operationIdstring用于标识请求的唯一字符串。 在API中描述的所有请求中,id必须是唯一的。 operationId值区分大小写。工具可以使用operationId来标识唯一请求,建议遵循常见的编程命名约定。
parameters[Parameter Object | Reference Object]适用于此请求的参数列表。 如果已经在Path Item中定义了parameters,在这里定义将覆盖它,但不会删除。 且列表内的参数在同一个位置参数名不能重复。 该列表可以使用Reference Object链接到OpenAPI Objectcomponents/parameters定义的参数。
requestBodyRequest Body Object | Reference Object适用于此请求的的requestBodyrequestBody仅在HTTP 1.1 specification RFC7231明确定义的HTTP方法中受支持。在其他HTTP specification定义不明确的情况下,应该忽略此参数。
responsesResponses Object必填, 该请求可能的响应列表。
callbacksMap[string, Callback Object | Reference Object]与请求相关的回调的映射。 key是Callback Object的唯一标识符。其每个值都是一个Callback Object,它描述了API提供者发起的请求和预期的响应。
deprecatedboolean声明过期的请求。 默认值为false。
security[Security Requirement Object]API的安全机制配置。值列表可以使用任意的Security Requirement Object。只需满足其中一个就可以对请求进行授权。在这里定义会覆盖顶级配置的安全机制。如果要忽略顶级的配置,可以使用空数组。
servers[Server Object]提供该请求的服务器数组。如果在Path Item根对象指定了servers,该值会覆盖以上配置。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"tags": [
"pet"
],
"summary": "Updates a pet in the store with form data",
"operationId": "updatePetWithForm",
"parameters": [
{
"name": "petId",
"in": "path",
"description": "ID of pet that needs to be updated",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
"schema": {
"type": "object",
"properties": {
"name": {
"description": "Updated name of the pet",
"type": "string"
},
"status": {
"description": "Updated status of the pet",
"type": "string"
}
},
"required": ["status"]
}
}
}
},
"responses": {
"200": {
"description": "Pet updated.",
"content": {
"application/json": {},
"application/xml": {}
}
},
"405": {
"description": "Method Not Allowed",
"content": {
"application/json": {},
"application/xml": {}
}
}
},
"security": [
{
"petstore_auth": [
"write:pets",
"read:pets"
]
}
]
}
tags:
- pet
summary: Updates a pet in the store with form data
operationId: updatePetWithForm
parameters:
- name: petId
in: path
description: ID of pet that needs to be updated
required: true
schema:
type: string
requestBody:
content:
'application/x-www-form-urlencoded':
schema:
properties:
name:
description: Updated name of the pet
type: string
status:
description: Updated status of the pet
type: string
required:
- status
responses:
'200':
description: Pet updated.
content:
'application/json': {}
'application/xml': {}
'405':
description: Method Not Allowed
content:
'application/json': {}
'application/xml': {}
security:
- petstore_auth:
- write:pets
- read:pets

External Documentation Object(附加文档信息对象)

引用外部资源的扩展文档。

Fixed Fields
属性名属性类型描述
descriptionstring目标文档的简短描述,使用CommonMark syntax可以用于展示富文本。
urlstring必填,指向目标文档的URL. 必须为URL格式。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"description": "Find more info here",
"url": "https://example.com"
}
description: Find more info here
url: https://example.com

Parameter Object(参数对象)

描述单个请求的参数,在同一个位置参数名不能重复。

参数位置

in字段指定了参数的四个位置::

  • path - 与模板路径一起使用,参数实际上是请求URL的一部分。 但不包括API的host和base path。 例如,在/items/{itemId} 中,路径参数为itemId。
  • query - 附加到URL后面的参数,例如在/items?id=###请求里,query参数为 id.
  • header - 自定义请求头作为请求的一部分。注意,RFC7230规定请求头名称不区分大小写。
  • cookie - 设置特定的cookie值传递给API。
Fixed Fields
属性名属性类型描述
namestring必填, 参数的名称,区分大小写;如果in"path",则名称字段必须在模板路径的表达式中;如果in"header",且名称字段为“Accept”、“Content-Type”或“Authorization”,则定义无效;其他情况则可以直接使用该字段;
instring必填, 参数的位置,有效值为 "query", "header", "path" or "cookie"
descriptionstring参数的简要说明和使用的举例。 使用CommonMark syntax可以用于展示富文本。
requiredboolean是否为必填参数。如果参数的in"path",此属性的值必须为true;否则,该属性默认值为false。
deprecatedboolean指定参数已弃用;默认值为false。
allowEmptyValueboolean设置参数是否可以为空,仅对query参数有效, 默认值为假。 如果使用了 style,并且如果 behavior 为 n/a(不能序列化),则 allowEmptyValue 的值应被忽略;不推荐使用此属性,因为它可能会在以后的版本中被删除。

指定参数的序列化规则以两种方式之一。 对于更简单的场景,schemastyle可以描述参数的结构和语法。

属性名属性类型描述
stylestring描述如何根据参数值的类型对参数值进行序列化。 默认值基于in的值;instyle的对应关系为:query - formpath - simpleheader - simplecookie - form
explodeboolean当属性为true时,会为array的每一个值或object的key-value生成独立的参数放到map里。 对于其他类型,此属性无效。 当styleform时,默认值为true;为其他值时,默认值为 false。
allowReservedboolean参数值是否为保留字,如RFC3986所定义:/?#[]@!$&'()*+,;=在不包含URL编码(percent-encoding)的情况下。 此属性仅适用于in值为query的参数。 默认值为false。
schemaSchema Object | Reference Object该schema定义了用于参数的类型。
exampleAny参数值的示例。 该示例应匹配指定的schema和编码。example属性和examples属性互斥。如果引用的schema包含示例,则该示例应覆盖schema提供的示例。不能用JSON或YAML表示的media types的示例,可以用字符串表示,并在必要时进行转义。
examplesMap[ string, Example Object | Reference Object]参数值的示例。每个示例都应该为参数指定编码的正确格式的值。examples属性和example属性互斥。如果引用的schema包含示例,则该示例应覆盖schema提供的示例。

针对更复杂的场景, content属性可以定义参数的media type和schema。一个参数配置必须包含schema属性或content属性,但不能同时包含两者。当exampleexamplesschema一起提供时,该示例必须遵循指定的参数序列化策略。

属性名属性类型描述
contentMap[string, Media Type Object]表示参数的map。key为media type,值为它的描述。map有且只能有一个值。
Style 的值:

为了支持简单参数的序列化,定义了一组style 值。

styletypeinComments
matrixprimitive, array, objectpathPath-style参数由RFC6570定义。
labelprimitive, array, objectpathLabel style参数由RFC6570定义。
formprimitive, array, objectquery, cookie该选项将collectionFormat替换为OpenAPI 2.0中的csv(explode为false时)或multi(explode为true时)值。
simplearraypath, headerSimple style参数由RFC6570定义。该选项将collectionFormat替换为OpenAPI 2.0中的csv
spaceDelimitedarrayquery空格分隔的数组值。该选项将collectionFormat替换为OpenAPI 2.0中的ssv
pipeDelimitedarrayquery管道(|)分隔数组值。该选项将collectionFormat替换为OpenAPI 2.0中的pipes
deepObjectobjectquery提供一种使用表单参数嵌套的对象。
Style 示例:

假设color参数为以下值之一:

string -> "blue"
array -> ["blue","black","brown"]
object -> { "R": 100, "G": 200, "B": 150 }

差异对照表:

styleexplodeemptystringarrayobject
matrixfalse;color;color=blue;color=blue,black,brown;color=R,100,G,200,B,150
matrixtrue;color;color=blue;color=blue;color=black;color=brown;R=100;G=200;B=150
labelfalse..blue.blue.black.brown.R.100.G.200.B.150
labeltrue..blue.blue.black.brown.R=100.G=200.B=150
formfalsecolor=color=bluecolor=blue,black,browncolor=R,100,G,200,B,150
formtruecolor=color=bluecolor=blue&color=black&color=brownR=100&G=200&B=150
simplefalsen/ablueblue,black,brownR,100,G,200,B,150
simpletruen/ablueblue,black,brownR=100,G=200,B=150
spaceDelimitedfalsen/an/ablue%20black%20brownR%20100%20G%20200%20B%20150
pipeDelimitedfalsen/an/ablue|black|brownR|100|G|200|B|150
deepObjecttruen/an/an/acolor[R]=100&color[G]=200&color[B]=150

这个对象可以使用Specification Extensions进行扩展。

示例:
64位integer数组的header参数示例:
{
"name": "token",
"in": "header",
"description": "token to be passed as a header",
"required": true,
"schema": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
},
"style": "simple"
}
name: token
in: header
description: token to be passed as a header
required: true
schema:
type: array
items:
type: integer
format: int64
style: simple
string类型的path参数示例:
{
"name": "username",
"in": "path",
"description": "username to fetch",
"required": true,
"schema": {
"type": "string"
}
}
name: username
in: path
description: username to fetch
required: true
schema:
type: string

字符串类型的query参数,通过重复来实现传递多个值:

{
"name": "id",
"in": "query",
"description": "ID of the object to fetch",
"required": false,
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"style": "form",
"explode": true
}
name: id
in: query
description: ID of the object to fetch
required: false
schema:
type: array
items:
type: string
style: form
explode: true

free-form的query参数,允许使用特定类型的undefined参数:

{
"in": "query",
"name": "freeForm",
"schema": {
"type": "object",
"additionalProperties": {
"type": "integer"
},
},
"style": "form"
}
in: query
name: freeForm
schema:
type: object
additionalProperties:
type: integer
style: form

使用content定义序列化的一个complex参数:

{
"in": "query",
"name": "coordinates",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"lat",
"long"
],
"properties": {
"lat": {
"type": "number"
},
"long": {
"type": "number"
}
}
}
}
}
}
in: query
name: coordinates
content:
application/json:
schema:
type: object
required:
- lat
- long
properties:
lat:
type: number
long:
type: number

Request Body Object(请求体对象)

描述单个request body.

Fixed Fields
属性名属性类型描述
descriptionstringrequest body的简短描述. 使用CommonMark syntax可以用于展示富文本。
contentMap[string, Media Type Object]必填. request body的内容。key是media type或media type range和能描述它的值。 对于匹配多个key的请求,只有最具体的key适用。 例如text/plain覆盖 text/*
requiredboolean确定请求中是否需要request body。默认值为false

这个对象可以使用Specification Extensions进行扩展。

示例:
带有model引用的request body
{
"description": "user to add to the system",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/User"
},
"examples": {
"user" : {
"summary": "User Example",
"externalValue": "http://foo.bar/examples/user-example.json"
}
}
},
"application/xml": {
"schema": {
"$ref": "#/components/schemas/User"
},
"examples": {
"user" : {
"summary": "User example in XML",
"externalValue": "http://foo.bar/examples/user-example.xml"
}
}
},
"text/plain": {
"examples": {
"user" : {
"summary": "User example in Plain text",
"externalValue": "http://foo.bar/examples/user-example.txt"
}
}
},
"*/*": {
"examples": {
"user" : {
"summary": "User example in other format",
"externalValue": "http://foo.bar/examples/user-example.whatever"
}
}
}
}
}
description: user to add to the system
content:
'application/json':
schema:
$ref: '#/components/schemas/User'
examples:
user:
summary: User Example
externalValue: 'http://foo.bar/examples/user-example.json'
'application/xml':
schema:
$ref: '#/components/schemas/User'
examples:
user:
summary: User Example in XML
externalValue: 'http://foo.bar/examples/user-example.xml'
'text/plain':
examples:
user:
summary: User example in text plain format
externalValue: 'http://foo.bar/examples/user-example.txt'
'*/*':
examples:
user:
summary: User example in other format
externalValue: 'http://foo.bar/examples/user-example.whatever
字符串数组的body参数:
{
"description": "user to add to the system",
"content": {
"text/plain": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
description: user to add to the system
required: true
content:
text/plain:
schema:
type: array
items:
type: string

Media Type Object(媒体类型对象)

Media Type Object提供标识media type的key的schema和examples。

Fixed Fields
属性名属性类型描述
schemaSchema Object | Reference Object定义请求响应参数content的schema。
exampleAnymedia type示例。 示例应使用media type的正确格式。example属性和examples属性互斥。如果引用的schema包含示例,则该示例应覆盖schema提供的示例。
examplesMap[ string, Example Object | Reference Object]media type示例。如果存在,每个示例对象应该匹配media type和指定的schema。example属性和examples属性互斥。如果引用的schema包含示例,则该示例应覆盖schema提供的示例。
encodingMap[string, Encoding Object]属性名与编码信息的映射。 作为属性名的key必须作为属性存在于schema中。 当media type为multipartapplication/x-www-form-urlencoded时,编码对象应该仅适用于requestBody对象。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"application/json": {
"schema": {
"$ref": "#/components/schemas/Pet"
},
"examples": {
"cat" : {
"summary": "An example of a cat",
"value":
{
"name": "Fluffy",
"petType": "Cat",
"color": "White",
"gender": "male",
"breed": "Persian"
}
},
"dog": {
"summary": "An example of a dog with a cat's name",
"value" : {
"name": "Puma",
"petType": "Dog",
"color": "Black",
"gender": "Female",
"breed": "Mixed"
},
"frog": {
"$ref": "#/components/examples/frog-example"
}
}
}
}
}
application/json: 
schema:
$ref: "#/components/schemas/Pet"
examples:
cat:
summary: An example of a cat
value:
name: Fluffy
petType: Cat
color: White
gender: male
breed: Persian
dog:
summary: An example of a dog with a cat's name
value:
name: Puma
petType: Dog
color: Black
gender: Female
breed: Mixed
frog:
$ref: "#/components/examples/frog-example"
文件上传的注意事项

与2.0规范相比,OpenAPI中的file input/output使用与其他schema类型相同的方式进行描述。具体如下:

# content transferred with base64 encoding
schema:
type: string
format: base64
# content transferred in binary (octet-stream):
schema:
type: string
format: binary

这些例子既适用于文件上传的输入载荷,也适用于响应载荷。

POST请求中提交文件的requestBody参考如下:

requestBody:
content:
application/octet-stream:
schema:
# a binary file of any type
type: string
format: binary

指定media types:

# multiple, specific media types may be specified:
requestBody:
content:
# a binary file of type png or jpeg
'image/jpeg':
schema:
type: string
format: binary
'image/png':
schema:
type: string
format: binary

上传多个文件,必须使用multipart的media type:

requestBody:
content:
multipart/form-data:
schema:
properties:
# The property name 'file' will be used for all files.
file:
type: array
items:
type: string
format: binary
支持x-www-form-urlencoded的请求

要使用RFC1866的form url encoding提交内容,可以使用以下方式:

requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
id:
type: string
format: uuid
address:
# complex types are stringified to support RFC 1866
type: object
properties: {}

在这个例子中,requestBody中的content在传递给服务器时必须遵循RFC1866进行字符串化。address字段的复杂对象也将被字符串化。

在传递application/x-www-form-urlencoded类型的complex对象时,这些属性的默认序列化策略在Encoding Objectstyle属性中为form

multipart Content的特殊注意事项

在请求操作时,通常使用Content-Typemultipart/form-data作为请求体。 与 2.0 相比,当使用multipart content时,需要定义一个schema作为请求的输入参数。这样做可以支持complex结构以及多个文件的上传。

当传入multipart类型时,可以使用分界线(—)来分隔正在传输内容的各个部分,以下是为multipart定义的几种默认Content-Type

  • 如果属性是primitive或者数组类型的primitive,默认的Content-Typ是text/plain
  • 如果属性是复杂对象或者是数组类型的复杂对象,默认的Content-Type是application/json
  • 如果属性是type: stringformat: binaryformat: base64(又名 file object),则默认Content-Type为 application/octet-stream

Examples:

requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
id:
type: string
format: uuid
address:
# default Content-Type for objects is `application/json`
type: object
properties: {}
profileImage:
# default Content-Type for string/binary is `application/octet-stream`
type: string
format: binary
children:
# default Content-Type for arrays is based on the `inner` type (text/plain here)
type: array
items:
type: string
addresses:
# default Content-Type for arrays is based on the `inner` type (object shown, so `application/json` in this example)
type: array
items:
type: '#/components/schemas/Address'

使用encoding 属性可以控制multipart 请求body的部分序列化。 此属性仅适用于multipartapplication/x-www-form-urlencoded 请求的body。

Encoding Object(编码对象)

定义应用于单个schema属性的单个编码。

Fixed Fields
属性名属性类型描述
contentTypestring用于编码特定属性的Content-Type。 默认值取决于属性类型:对stringformatbinaryapplication/octet-stream; 对于其他primitive类型为text/plain; 对objectapplication/json; 对array默认值是根据内部类型定义的。 该值可以是特定媒体类型(例如application/json)、通配符媒体类型(例如image/*)或用逗号分隔的列表。
headersMap[string, Header Object| Reference Object]一个为header提供附加信息的map,例如Content-DispositionContent-Type如果单独描述本属性应该忽略。 如果请求body的media type不是multipart,本属性应该忽略。
stylestring描述如何根据类型序列化属性值。 有关style属性的详细信息,参考Parameter Object。 该行为遵循与query参数相同的值,包括默认值。 如果请求正文媒体类型不是application/x-www-form-urlencoded,则应忽略此属性。
explodeboolean当属性为true时,会为array的每一个值或object的key-value生成独立的参数放到map里。 对于其他类型,此属性无效。 当styleform时,默认值为true;为其他值时,默认值为 false。如果请求正文媒体类型不是application/x-www-form-urlencoded,则应忽略此属性。
allowReservedboolean参数值是否为保留字,如RFC3986所定义:/?#[]@!$&'()*+,;=在不包含URL编码(percent-encoding)的情况下。 默认值为false。如果请求正文媒体类型不是application/x-www-form-urlencoded,则应忽略此属性。

这个对象可以使用Specification Extensions进行扩展。

示例:
requestBody:
content:
multipart/mixed:
schema:
type: object
properties:
id:
# default is text/plain
type: string
format: uuid
address:
# default is application/json
type: object
properties: {}
historyMetadata:
# need to declare XML format!
description: metadata in XML format
type: object
properties: {}
profileImage:
# default is application/octet-stream, need to declare an image type only!
type: string
format: binary
encoding:
historyMetadata:
# require XML Content-Type in utf-8 encoding
contentType: application/xml; charset=utf-8
profileImage:
# only accept png/jpeg
contentType: image/png, image/jpeg
headers:
X-Rate-Limit-Limit:
description: The number of allowed requests in the current period
schema:
type: integer

Responses Object(响应容器对象)

请求预期响应的容器。 容器内为一个或多个map,将HTTP响应码映射到预期响应。

该文档不一定会涵盖所有的HTTP响应码,因为它们可能事先并没有定义或说明。 但是文档应涵盖所有请求成功和错误的响应。

default 属性是如果配置的HTTP响应码没有匹配到,则默认响应的对象。

Responses Object至少应该定义一个成功请求的响应代码。

Fixed Fields
属性名属性类型描述
defaultResponse Object | Reference Object指定响应代码之外的默认响应。 Reference Object可以链接到OpenAPI Object's components/responses部分定义的响应。
Patterned Fields
匹配字段属性类型描述
HTTP Status CodeResponse Object | Reference Object任何 HTTP 状态代码都可以用作属性名称,但每个状态码只能定义一次。链接到OpenAPI Object's components/responses部分定义的响应。 此字段必须用引号引起来(例如"200")以实现 JSON 和 YAML 之间的兼容性。 要定义响应代码的范围,此字段可以包含大写通配符X。例如2XX表示 [200-299] 之间的所有响应代码。 仅允许定义以下范围:1XX, 2XX, 3XX, 4XX, 和5XX。 如果使用显式代码定义响应,则显式代码定义优先于该代码的范围定义。

这个对象可以使用Specification Extensions进行扩展。

Responses Object 示例:
状态码为200和其他(错误)情况的响应示例:
{
"200": {
"description": "a pet to be returned",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Pet"
}
}
}
},
"default": {
"description": "Unexpected error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorModel"
}
}
}
}
}
'200':
description: a pet to be returned
content:
application/json:
schema:
$ref: '#/components/schemas/Pet'
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel

Response Object(响应对象)

描述来自API请求的单个响应,包括设计时基于响应请求的静态链接。

Fixed Fields
属性名属性类型描述
descriptionstring必填. response的简短描述. 使用CommonMark syntax可以用于展示富文本。
headersMap[string, Header Object| Reference Object]以header名定义的一个map,header名以RFC7230定义的状态为准,不区分大小写。如果定义的响应名为"Content-Type",这个属性会被忽略。
contentMap[string, Media Type Object]包含响应载荷的map。key是media type或media type range和能描述它的值。 对于匹配多个key的请求,只有最具体的key适用。 例如text/plain覆盖 text/*
linksMap[string, Link Object | Reference Object]链接请求的map。map的key为link的短名称, 遵循Component Object中的命名约束。

这个对象可以使用Specification Extensions进行扩展。

示例:
数组类型的复杂对象响应示例:
{
"description": "A complex object array response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VeryComplexType"
}
}
}
}
}
description: A complex object array response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/VeryComplexType'
string类型的响应示例:
{
"description": "A simple string response",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}

}
description: A simple string response
content:
text/plain:
schema:
type: string
带标题的纯文本响应示例:
{
"description": "A simple string response",
"content": {
"text/plain": {
"schema": {
"type": "string",
"example": "whoa!"
}
}
},
"headers": {
"X-Rate-Limit-Limit": {
"description": "The number of allowed requests in the current period",
"schema": {
"type": "integer"
}
},
"X-Rate-Limit-Remaining": {
"description": "The number of remaining requests in the current period",
"schema": {
"type": "integer"
}
},
"X-Rate-Limit-Reset": {
"description": "The number of seconds left in the current period",
"schema": {
"type": "integer"
}
}
}
}
description: A simple string response
content:
text/plain:
schema:
type: string
example: 'whoa!'
headers:
X-Rate-Limit-Limit:
description: The number of allowed requests in the current period
schema:
type: integer
X-Rate-Limit-Remaining:
description: The number of remaining requests in the current period
schema:
type: integer
X-Rate-Limit-Reset:
description: The number of seconds left in the current period
schema:
type: integer
没有返回值的响应示例:
{
"description": "object created"
}
description: object created

Callback Object(回调对象)

可能与父操作相关的回调map。map中的每个值都是一个Path Item Object,它描述了一组由API提供者发起的请求和预期的响应。用于标识Path Item Object的key是一个运行时表达式(runtime expression),用它标识回调操作的URL。

Patterned Fields
匹配字段属性类型描述
{expression}Path Item Object定义回调请求和响应的Path Item Object对象. A complete example is available.

这个对象可以使用Specification Extensions进行扩展。

Key Expression

标识Path Item Object的key是一个运行时表达式,可以在运行HTTP 请求/响应时,从上下文中获取值以标识要用于回调请求的URL,使用运行时表达式可以访问完整的HTTP请求。这包括访问RFC6901引用正文的任何部分。

如HTTP请求如下:

POST /subscribe/myevent?queryUrl=http://clientdomain.com/stillrunning HTTP/1.1
Host: example.org
Content-Type: application/json
Content-Length: 187

{
"failedUrl" : "http://clientdomain.com/failed",
"successUrls" : [
"http://clientdomain.com/fast",
"http://clientdomain.com/medium",
"http://clientdomain.com/slow"
]
}

201 Created
Location: http://example.org/subscription/1

以下展示了使用表达式的方式,假设回调操作有一个名为eventType 的path参数和一个名为queryUrl的query参数。

ExpressionValue
$urlhttp://example.org/subscribe/myevent?queryUrl=http://clientdomain.com/stillrunning
$methodPOST
$request.path.eventTypemyevent
$request.query.queryUrlhttp://clientdomain.com/stillrunning
$request.header.content-Typeapplication/json
$request.body#/failedUrlhttp://clientdomain.com/failed
$request.body#/successUrls/2http://clientdomain.com/medium
$response.header.Locationhttp://example.org/subscription/1
Callback Object示例:

以下示例使用用户提供的queryUrl查询字符串参数来定义回调 URL。

myCallback:
'{$request.query.queryUrl}':
post:
requestBody:
description: Callback payload
content:
'application/json':
schema:
$ref: '#/components/schemas/SomePayload'
responses:
'200':
description: callback successfully processed

服务器是固定的,但查询字符串参数是取请求正文中的idemail 属性填充的回调示例。

transactionCallback:
'http://notificationServer.com?transactionId={$request.body#/id}&email={$request.body#/email}':
post:
requestBody:
description: Callback payload
content:
'application/json':
schema:
$ref: '#/components/schemas/SomePayload'
responses:
'200':
description: callback successfully processed

Example Object(示例对象)

Fixed Fields
属性名属性类型描述
summarystring示例的简短描述。
descriptionstring示例的完整描述,使用CommonMark syntax可以用于展示富文本。
valueAny嵌入式示例值(直接写在这里的示例)。value 字段和externalValue 字段是互斥的。不能在JSON或YAML中自然表示的媒体类型,请使用字符串值来表示,并在必要时转义。
externalValuestring指向示例的URL(引用示例)。提供了不方便展示示例(如太长了)的引用能力。value 字段和externalValue 字段是互斥的。

这个对象可以使用Specification Extensions进行扩展。

所有情况下,示例值都应该与关联的schema类型兼容。工具实现可以选择自动验证兼容性,如果不兼容则拒绝示例值。

示例:
在request body中的示例:
requestBody:
content:
'application/json':
schema:
$ref: '#/components/schemas/Address'
examples:
foo:
summary: A foo example
value: {"foo": "bar"}
bar:
summary: A bar example
value: {"bar": "baz"}
'application/xml':
examples:
xmlExample:
summary: This is an example in XML
externalValue: 'http://example.org/examples/address-example.xml'
'text/plain':
examples:
textExample:
summary: This is a text example
externalValue: 'http://foo.bar/examples/address-example.txt'
在parameter中的示例:
parameters:
- name: 'zipCode'
in: 'query'
schema:
type: 'string'
format: 'zip-code'
examples:
zip-example:
$ref: '#/components/examples/zip-example'
在response中的示例:
responses:
'200':
description: your car appointment has been booked
content:
application/json:
schema:
$ref: '#/components/schemas/SuccessResponse'
examples:
confirmation-success:
$ref: '#/components/examples/confirmation-success'

Link object 表示响应的可能设计时链接。链接存在并不能保证能够成功调用,它只是提供了响应和其他操作之间的关系和遍历机制。

Unlike dynamic links (i.e. links provided in the response payload), the OAS linking mechanism does not require link information in the runtime response.

与动态链接(响应负载中提供的链接)不同,运行的时候,OAS链接机制不需要响应中的链接信息。

Runtime表达式用于访问操作中的值,并在调用时将它们作为参数。

Fixed Fields
属性名属性类型描述
operationRefstring对 OAS请求的相对或绝对URI引用。该字段与operationId字段互斥,并且必须指向一个Operation Object 。相对operationRef 值可用于定位OpenAPI定义中的现有Operation Object
operationIdstring已定义并且可解析的OAS请求的名称,由唯一的operationId定义。该字段与operationRef字段互斥。
parametersMap[string, Any | {expression}]表示要传递给请求参数的map,该请求由operationId 指定或通过operationRef标识。key是要使用的参数名称,而值可以是常量或Runtime表达式。对于在不同位置(例如 path.id)使用相同参数名称的请求,可以使用参数位置 [{in}.]{name}来限定参数名称。
requestBodyAny | {expression}调用目标请求时用作请求body的文字值或Runtime表达式
descriptionstring链接的描述,使用CommonMark syntax可以用于展示富文本。
serverServer Object目标请求要使用的服务器对象。

这个对象可以使用Specification Extensions进行扩展。

必须使用operationRefoperationId来标识链接操作。在使用 operationId的情况下,它必须是在OAS文档的范围内唯一定义的。由于名称可能会冲突,因此具有外部引用的规范推荐使用operationRef

示例:

在请求中使用表达式传递link的参数,如$request.path.id

paths:
/users/{id}:
parameters:
- name: id
in: path
required: true
description: the user identifier, as userId
schema:
type: string
get:
responses:
'200':
description: the user being returned
content:
application/json:
schema:
type: object
properties:
uuid: # the unique user id
type: string
format: uuid
links:
address:
# the target link operationId
operationId: getUserAddress
parameters:
# get the `id` field from the request path parameter named `id`
userId: $request.path.id
# the path item of the linked operation
/users/{userid}/address:
parameters:
- name: userid
in: path
required: true
description: the user identifier, as userId
schema:
type: string
# linked operation
get:
operationId: getUserAddress
responses:
'200':
description: the user's address

在运行的时候,当表达式无法计算(错误)时,不会将参数值传递给请求。

response body中的值可用于链接。

links:
address:
operationId: getUserAddressByUUID
parameters:
# get the `uuid` field from the `uuid` field in the response body
userUuid: $response.body#/uuid

工具自行决定是否遵循所有链接。权限和成功调用该链接的能力都不能仅由关系来保证。

OperationRef Examples

由于使用operationId 进行引用时,operationId 可能为空(operationId请求对象中的一个可选字段),因此也可以通过 operationRef进行相对引用:

links:
UserRepositories:
# returns array of '#/components/schemas/repository'
operationRef: '#/paths/~12.0~1repositories~1{username}/get'
parameters:
username: $response.body#/username

或绝对引用:

links:
UserRepositories:
# returns array of '#/components/schemas/repository'
operationRef: 'https://na2.gigantic-server.com/#/paths/~12.0~1repositories~1{username}/get'
parameters:
username: $response.body#/username

请注意,在JSON中使用 operationRef时,正斜杠需要转义。

Runtime Expressions

使用Runtime表达式可以在API调用过程中,从HTTP消息里提取信息来定义值。Link ObjectCallback Object都使用此机制。

Runtime表达式由下列ABNF语法定义:

      expression = ( "$url" / "$method" / "$statusCode" / "$request." source / "$response." source )
source = ( header-reference / query-reference / path-reference / body-reference )
header-reference = "header." token
query-reference = "query." name
path-reference = "path." name
body-reference = "body" ["#" json-pointer ]
json-pointer = *( "/" reference-token )
reference-token = *( unescaped / escaped )
unescaped = %x00-2E / %x30-7D / %x7F-10FFFF
; %x2F ('/') and %x7E ('~') are excluded from 'unescaped'
escaped = "~" ( "0" / "1" )
; representing '~' and '/', respectively
name = *( CHAR )
token = 1*tchar
tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." /
"^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA

这里的 json-pointer来自RFC 6901char来自RFC 7159token来自RFC 7230.

name 标识符区分大小写,而token 不区分大小写。

下表提供了Runtime表达式的示例及其在值中的使用示例:

表达式对照表
数据位置示例表达式说明
HTTP Method$method提取请求的method
Requested media type$request.header.accept提取请求的header
Request parameter$request.path.id提取请求的参数,请求参数必须在请求的parameters中声明,否则无法提取。包括请求header。
Request body property$request.body#/user/uuid提取请求body的值,在请求载荷中,可以对请求body的部分或整个body进行引用。
Request URL$url提取请求的URL
Response value$response.body#/status提取返回值,在返回有效载荷中,可以对响应body部分或整个body进行提取。
Response header$response.header.Server提取返回的header,仅单个header可用

Runtime表达式保留提取值的类型。将表达式放到{}花括号内,可以嵌入到字符串中。

Header Object(头对象)

Header Object遵循Parameter Object的结构,但有下列不同:

  1. 不能指定name ,它在相应的header的map中给出。
  2. 不能指定in,它隐含在header中.
  3. 受位置影响的所有特征必须适用于header 位置(例如 style)。
示例:
integer类型的header示例:
{
"description": "The number of allowed requests in the current period",
"schema": {
"type": "integer"
}
}
description: The number of allowed requests in the current period
schema:
type: integer

Tag Object(标签对象)

将metadata添加到Operation Object使用的单个标签信息。在Operation Object实例中定义的每个标签都不是必填的。

Fixed Fields
属性名属性类型描述
namestring必填,标签的名字。
descriptionstring标签的简短描述, 使用CommonMark syntax可以用于展示富文本。
externalDocsExternal Documentation Object额外的外部文档。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"name": "pet",
"description": "Pets operations"
}
name: pet
description: Pets operations
name: pet
description: Pets operations

Reference Object(引用对象)

一个简单对象,允许在内部和外部引用规范中的其他组件。该对象由JSON Reference定义,遵循相同的结构、行为和规则。关于该规范,引用解析是由JSON Reference定义的,而不是由JSON Schema定义的。

固定字段:

属性名属性类型描述
$refstring必填,引用字符串

此对象不能使用附加属性进行扩展,并且应忽略添加的其他任何属性。

示例:
{
"$ref": "#/components/schemas/Pet"
}
$ref: '#/components/schemas/Pet'
相对Schema文档:
{
"$ref": "Pet.json"
}
$ref: Pet.yaml
相对于Schema文档内的对象
{
"$ref": "definitions.json#/Pet"
}
$ref: definitions.yaml#/Pet

Schema Object(架构对象)

Schema Object 允许定义输入和输出数据类型。 这些类型可以是objects,也可以是primitivesarrays。 此对象是JSON Schema Specification Wright Draft 00的扩展子集。

更多信息请参考 JSON Schema CoreJSON Schema Validation。 如无例外,属性定义遵循 JSON Schema。

Properties

以下属性直接取自JSON Schema定义,遵循相同的规范:

  • title
  • multipleOf
  • maximum
  • exclusiveMaximum
  • minimum
  • exclusiveMinimum
  • maxLength
  • minLength
  • pattern (正则表达式字符串,使用Ecma-262 Edition 5.1 regular expression方言)
  • maxItems
  • minItems
  • uniqueItems
  • maxProperties
  • minProperties
  • required
  • enum

以下属性取自JSON Schema 定义,但是根据OpenAPI规范进行了部分调整,调整如下:

  • type - 必须为字符串且不能通过数组传递多个.
  • allOf - 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。
  • oneOf - 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。
  • anyOf - 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。
  • not - 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。
  • items -值必须是一个object而不是一个array. 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。如果typearrayitems必须存在
  • properties - 属性定义必须是 Schema Object,而不是标准的 JSON Schema。 (内联或引用).
  • additionalProperties - 值可以为一个boolean或者一个object. 内联或引用的schema 必须是 Schema Object,而不是标准的 JSON Schema。和JSON Schema一致,additionalProperties默认为true。
  • description - CommonMark syntax可用富文本表示。
  • format - 参考Data Type Formats。在依赖于JSON Schema的定义格式的同时,OAS还提供了一些额外的预定义格式。
  • default - 如果未提供默认值,则使用该值作为默认值。和 JSON Schema 不同的是该值必须符合在同一级别定义的 Schema Object的定义类型。 例如,如果typestring,那么 default可以是 "foo" 但不能是 1

在任何地方使用Schema Object,都可以在当前位置上使用 Reference Object。在可以使用引用定义的情况下请勿使用内联定义。

除了以上提及的属性,其他由JSON Schema规范定义的属性是不受支持的,另外,可以使用以下字段进一步的描述Schema:

Fixed Fields
属性名属性类型描述
nullablebooleantrue时,type允许为"null",只在同一个Schema Object中明确定义type时有效。 默认值为false
discriminatorDiscriminator Object增加对polymorphism(多态)的支持。discriminator是一个对象名称,用于区分可满足条件的其他schemas。参考Composition and Inheritance了解更多细节。
readOnlyboolean仅与Schema的"properties"定义相关。 将属性声明为只读。如果该属性为true并且在required列表中,则required将仅对响应生效(对请求无效)。 readOnlywriteOnly不能同时为true。 该属性默认值为false
writeOnlyboolean仅与Schema的"properties"定义相关。 将属性声明为只写。 与readOnly相反,则required将仅对请求生效(对响应无效)。readOnlywriteOnly不能同时为true。 该属性默认值为false
xmlXML Object只能用于properties schemas。 对root schemas没有影响。 添加其他的metadata来描述此属性的XML。
externalDocsExternal Documentation Object此schema的其他外部文档。
exampleAny此schema实例示例的free-form属性。 不能用JSON或YAML展示的示例,可以使用字符串表示,并在必要时进行转义。
deprecatedboolean指定schema已被弃用并且应该停止使用。 默认值为false

这个对象可以使用Specification Extensions进行扩展。

组合和继承 (多态)

OpenAPI 规范可以使用JSON Schema的allOf属性来组合和扩展模型(model)的定义。 allOf是一个object的数组,这些object互相独立,但共同组成一个对象。

虽然组合提供了模型(model)可扩展性,但这并不代表模型(model)之间存在层次结构。 为了支持多态性,OpenAPI 规范添加了discriminator字段。 discriminator决定要验证schema定义的哪些属性的名称。 所以discriminator 字段必须为必填字段。 有两种方法可以为继承实例定义discriminator 的值。

  • 使用schema的名字。
  • 重写schema的名字来覆盖老的值,内联模式定义的情况下,如果没有指定id,将不能用于多态性。
XML Modeling

当将JSON转换为xml时,xml属性允许额外的定义。 XML Object包含有关可用属性的其他信息。

示例:
普通值(Primitive)
{
"type": "string",
"format": "email"
}
type: string
format: email
简单模型
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"address": {
"$ref": "#/components/schemas/Address"
},
"age": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
}
type: object
required:
- name
properties:
name:
type: string
address:
$ref: '#/components/schemas/Address'
age:
type: integer
format: int32
minimum: 0
map模型/数据字典
{
"type": "object",
"additionalProperties": {
"type": "string"
}
}
type: object
additionalProperties:
type: string
引用模型
{
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/ComplexModel"
}
}
type: object
additionalProperties:
$ref: '#/components/schemas/ComplexModel'
带示例的模型
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"example": {
"name": "Puma",
"id": 1
}
}
type: object
properties:
id:
type: integer
format: int64
name:
type: string
required:
- name
example:
name: Puma
id: 1
组合的模型
{
"components": {
"schemas": {
"ErrorModel": {
"type": "object",
"required": [
"message",
"code"
],
"properties": {
"message": {
"type": "string"
},
"code": {
"type": "integer",
"minimum": 100,
"maximum": 600
}
}
},
"ExtendedErrorModel": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorModel"
},
{
"type": "object",
"required": [
"rootCause"
],
"properties": {
"rootCause": {
"type": "string"
}
}
}
]
}
}
}
}
components:
schemas:
ErrorModel:
type: object
required:
- message
- code
properties:
message:
type: string
code:
type: integer
minimum: 100
maximum: 600
ExtendedErrorModel:
allOf:
- $ref: '#/components/schemas/ErrorModel'
- type: object
required:
- rootCause
properties:
rootCause:
type: string
支持多台的模型
{
"components": {
"schemas": {
"Pet": {
"type": "object",
"discriminator": {
"propertyName": "petType"
},
"properties": {
"name": {
"type": "string"
},
"petType": {
"type": "string"
}
},
"required": [
"name",
"petType"
]
},
"Cat": {
"description": "A representation of a cat. Note that `Cat` will be used as the discriminator value.",
"allOf": [
{
"$ref": "#/components/schemas/Pet"
},
{
"type": "object",
"properties": {
"huntingSkill": {
"type": "string",
"description": "The measured skill for hunting",
"default": "lazy",
"enum": [
"clueless",
"lazy",
"adventurous",
"aggressive"
]
}
},
"required": [
"huntingSkill"
]
}
]
},
"Dog": {
"description": "A representation of a dog. Note that `Dog` will be used as the discriminator value.",
"allOf": [
{
"$ref": "#/components/schemas/Pet"
},
{
"type": "object",
"properties": {
"packSize": {
"type": "integer",
"format": "int32",
"description": "the size of the pack the dog is from",
"default": 0,
"minimum": 0
}
},
"required": [
"packSize"
]
}
]
}
}
}
}
components:
schemas:
Pet:
type: object
discriminator:
propertyName: petType
properties:
name:
type: string
petType:
type: string
required:
- name
- petType
Cat: ## "Cat" will be used as the discriminator value
description: A representation of a cat
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
properties:
huntingSkill:
type: string
description: The measured skill for hunting
enum:
- clueless
- lazy
- adventurous
- aggressive
required:
- huntingSkill
Dog: ## "Dog" will be used as the discriminator value
description: A representation of a dog
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
properties:
packSize:
type: integer
format: int32
description: the size of the pack the dog is from
default: 0
minimum: 0
required:
- packSize

Discriminator Object

当请求body或响应有效载荷是许多不同schema之一时,鉴别器对象(discriminator object)可用于帮助序列化、反序列化和验证。鉴别器是schema的特定对象,用于根据与其关联的值通知消费者替代schema的规范。

当使用discriminator时候,内联模式将会失效。

Fixed Fields
属性名属性类型描述
propertyNamestring必填,鉴别器值的属性的名称。
mappingMap[string, string]用于保存有效负载值(payload value)和schema名称或引用之间映射的的对象。

只有在使用复合关键字oneOf, anyOf, allOf之一时,鉴别器对象才是可用的。

在OAS 3.0中,响应载荷可以被描述为任意数量的类型之一:

MyResponseType:
oneOf:
- $ref: '#/components/schemas/Cat'
- $ref: '#/components/schemas/Dog'
- $ref: '#/components/schemas/Lizard'

在上面的例子中,响应的有效载荷必须与 CatDogLizard描述的schema之一完全匹配才可以通过验证。在这种情况下,使用鉴别器可以快速验证和选择匹配schema,这可能是比较消耗资源的操作,具体取决于schema的复杂性。也可以准确地指定字段使用哪个模式:

MyResponseType:
oneOf:
- $ref: '#/components/schemas/Cat'
- $ref: '#/components/schemas/Dog'
- $ref: '#/components/schemas/Lizard'
discriminator:
propertyName: petType

在上面例子中,期望是一个名为petType的属性必须出现在响应载荷中,并且该值将对应于OAS文档中定义的schema名称。因此响应有效载荷虚构为:

{
"id": 12345,
"petType": "Cat"
}

这样会指定Cat的schema与此有效载荷一起使用。

在鉴别器字段的值与schema的名称不匹配或不能隐式映射的情况下,可以选择直接定义映射关系:

MyResponseType:
oneOf:
- $ref: '#/components/schemas/Cat'
- $ref: '#/components/schemas/Dog'
- $ref: '#/components/schemas/Lizard'
- $ref: 'https://gigantic-server.com/schemas/Monster/schema.json'
discriminator:
propertyName: petType
mapping:
dog: '#/components/schemas/Dog'
monster: 'https://gigantic-server.com/schemas/Monster/schema.json'

这里 dog 的鉴别器值将映射到模式#/components/schemas/Dog,而不是 Dog的默认(隐式映射)的值。如果鉴别器值与隐式或显式映射不匹配,则无法确定schema并且应该验证失败。映射key必须是字符串,但工具可以将响应值转换为字符串以进行比较。

当与anyOf构造结合使用时,鉴别器的使用可以避免多个schema可能满足单个有效载荷的歧义。

oneOfanyOf 用例中,必须明确列出所有可能的schema。为了避免重复定义,可以将鉴别器添加到父schema定义中,并且在allOf 构造中包含父schema的所有schema都可以用作替代schema。

举个栗子:

components:
schemas:
Pet:
type: object
required:
- petType
properties:
petType:
type: string
discriminator:
propertyName: petType
mapping:
dog: Dog
Cat:
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
# all other properties specific to a `Cat`
properties:
name:
type: string
Dog:
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
# all other properties specific to a `Dog`
properties:
bark:
type: string
Lizard:
allOf:
- $ref: '#/components/schemas/Pet'
- type: object
# all other properties specific to a `Lizard`
properties:
lovesRocks:
type: boolean

响应载荷虚构如下:

{
"petType": "Cat",
"name": "misty"
}

以上响应载荷将指定Cat schema。另一个响应载荷:

{
"petType": "dog",
"bark": "soft"
}

由于Pet定义了mapping映射元素,所以dog将映射到Dog

XML Object(XML对象)

一个元数据对象(metadata object),可以更使用详细的 XML模型定义。

使用数组时,无法从XML的元素名称推断出是单个还是多个,应该使用name 属性来添加该信息。请参阅示例以了解预期行为。

Fixed Fields
属性名属性类型描述
namestring替换用于描述的模式属性的元素/属性(element/attribute)的名称。在items中定义时,它将影响列表中各个XML元素的名称。当wrappedtrue时,与typearray(在items外)一起定义,它将影响包装元素。如果wrappedfalse,它将被忽略。
namespacestring命名空间(namespace)定义的URI。值必须为绝对地址。
prefixstring用于名称的前缀(prefix)。
attributeboolean声明属性定义是否转换为属性(property)而不是元素(attribute)。默认值为false
wrappedboolean只能用于数组定义。表示数组是被包装的(例如,<books><book/><book/></books>)还是未包装的(<book/><book/>)。默认值为false。该定义仅在typearray并在items外一起定义时生效。

这个对象可以使用Specification Extensions进行扩展。

示例:

XML对象定义的示例包含在Schema Object 的属性定义中,并带有它的XML表示示例。

没有XML元素

基本字符串属性:

{
"animals": {
"type": "string"
}
}
animals:
type: string
<animals>...</animals>

基本字符串数组属性(wrapped 默认为false):

{
"animals": {
"type": "array",
"items": {
"type": "string"
}
}
}
animals:
type: array
items:
type: string
<animals>...</animals>
<animals>...</animals>
<animals>...</animals>
XML名称替换
{
"animals": {
"type": "string",
"xml": {
"name": "animal"
}
}
}
animals:
type: string
xml:
name: animal
<animal>...</animal>
XML 属性、前缀和命名空间

该示例展示了完整的模型定义。

{
"Person": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32",
"xml": {
"attribute": true
}
},
"name": {
"type": "string",
"xml": {
"namespace": "http://example.com/schema/sample",
"prefix": "sample"
}
}
}
}
}
Person:
type: object
properties:
id:
type: integer
format: int32
xml:
attribute: true
name:
type: string
xml:
namespace: http://example.com/schema/sample
prefix: sample
<Person id="123">
<sample:name xmlns:sample="http://example.com/schema/sample">example</sample:name>
</Person>
XML Arrays

修改元素(element)的名称:

{
"animals": {
"type": "array",
"items": {
"type": "string",
"xml": {
"name": "animal"
}
}
}
}
animals:
type: array
items:
type: string
xml:
name: animal
<animal>value</animal>
<animal>value</animal>

如果没有定义wrappedtrue,外部name属性对XML没有影响:

{
"animals": {
"type": "array",
"items": {
"type": "string",
"xml": {
"name": "animal"
}
},
"xml": {
"name": "aliens"
}
}
}
animals:
type: array
items:
type: string
xml:
name: animal
xml:
name: aliens
<animal>value</animal>
<animal>value</animal>

如果数组被包装且没有明确定义名称,内部和外部都将使用相同的名称:

{
"animals": {
"type": "array",
"items": {
"type": "string"
},
"xml": {
"wrapped": true
}
}
}
animals:
type: array
items:
type: string
xml:
wrapped: true
<animals>
<animals>value</animals>
<animals>value</animals>
</animals>

为了解决上面示例中的命名问题,可以使用以下定义:

{
"animals": {
"type": "array",
"items": {
"type": "string",
"xml": {
"name": "animal"
}
},
"xml": {
"wrapped": true
}
}
}
animals:
type: array
items:
type: string
xml:
name: animal
xml:
wrapped: true
<animals>
<animal>value</animal>
<animal>value</animal>
</animals>

改变内部和外部名称:

{
"animals": {
"type": "array",
"items": {
"type": "string",
"xml": {
"name": "animal"
}
},
"xml": {
"name": "aliens",
"wrapped": true
}
}
}
animals:
type: array
items:
type: string
xml:
name: animal
xml:
name: aliens
wrapped: true
<aliens>
<animal>value</animal>
<animal>value</animal>
</aliens>

只改变外部元素而不改变内部元素:

{
"animals": {
"type": "array",
"items": {
"type": "string"
},
"xml": {
"name": "aliens",
"wrapped": true
}
}
}
animals:
type: array
items:
type: string
xml:
name: aliens
wrapped: true
<aliens>
<aliens>value</aliens>
<aliens>value</aliens>
</aliens>

Security Scheme Object(安全架构对象)

定义操作可以使用的安全方案。 支持的方案有HTTP authentication, API key(header、cookie和query参数)、 RFC6749中定义的OAuth2的常见认证(implicit、password、 client credentials和authorization code)和OpenID Connect Discovery

Fixed Fields
属性名属性类型作用范围描述
typestringAny必填,安全方案的类型。 有效值为"apiKey", "http", "oauth2", "openIdConnect"
descriptionstringAny安全方案的简短描述. 使用CommonMark syntax可以用于展示富文本。
namestringapiKey必填,要使用的header、query或者cookie参数的名称.
instringapiKey必填,API key的所在位置,有效值为"query", "header" or "cookie".
schemestringhttp必填,要在Authorization header as defined in RFC7235中使用的HTTP Authorization scheme名称。 其使用的值应该在IANA Authentication Scheme registry中注册。
bearerFormatstringhttp ("bearer")提示客户端识别bearer token的格式。bearer token通常由授权服务器生成,因此此信息主要用于文档。
flowsOAuth Flows Objectoauth2必填,包含所支持的流类型的配置信息的对象。
openIdConnectUrlstringopenIdConnect必填,OpenId Connect URL以发现OAuth2的配置值。必须为URL格式。

这个对象可以使用Specification Extensions进行扩展。

示例:
Basic Authentication示例
{
"type": "http",
"scheme": "basic"
}
type: http
scheme: basic
API Key示例
{
"type": "apiKey",
"name": "api_key",
"in": "header"
}
type: apiKey
name: api_key
in: header
JWT Bearer示例
{
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT",
}
type: http
scheme: bearer
bearerFormat: JWT
Implicit OAuth2示例
{
"type": "oauth2",
"flows": {
"implicit": {
"authorizationUrl": "https://example.com/api/oauth/dialog",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
}
}
}
type: oauth2
flows:
implicit:
authorizationUrl: https://example.com/api/oauth/dialog
scopes:
write:pets: modify pets in your account
read:pets: read your pets

OAuth Flows Object(OAuth流对象)

用于配置支持的OAuth流(OAuth Flows)。

Fixed Fields
属性名属性类型描述
implicitOAuth Flow ObjectOAuth隐式流(OAuth Implicit flow)配置
passwordOAuth Flow ObjectOAuth资源所有者密码流(OAuth Resource Owner Password flow)的配置
clientCredentialsOAuth Flow ObjectOAuth客户端凭据流(OAuth Client Credentials flow)的配置。在OpenAPI 2.0中为application
authorizationCodeOAuth Flow ObjectOAuth授权码流(OAuth Authorization Code flow)配置. 在OpenAPI 2.0中为accessCode

这个对象可以使用Specification Extensions进行扩展。

OAuth Flow Object(OAuth流详情对象)

OAuth流的详细配置信息

Fixed Fields
属性名属性类型适用于描述
authorizationUrlstringoauth2 ("implicit", "authorizationCode")必填,用于此流的授权 URL。必须为 URL 格式。
tokenUrlstringoauth2 ("password", "clientCredentials", "authorizationCode")必填, 用于此流Token的URL。必须为 URL 格式。
refreshUrlstringoauth2获取刷新后Token的URL。必须为 URL 格式。
scopesMap[string, string]oauth2必填,OAuth2安全方案的可用范围,是范围名称和它的简短描述之间的映射。map可以为空。

这个对象可以使用Specification Extensions进行扩展。

示例:
{
"type": "oauth2",
"flows": {
"implicit": {
"authorizationUrl": "https://example.com/api/oauth/dialog",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
},
"authorizationCode": {
"authorizationUrl": "https://example.com/api/oauth/dialog",
"tokenUrl": "https://example.com/api/oauth/token",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
}
}
}
type: oauth2
flows:
implicit:
authorizationUrl: https://example.com/api/oauth/dialog
scopes:
write:pets: modify pets in your account
read:pets: read your pets
authorizationCode:
authorizationUrl: https://example.com/api/oauth/dialog
tokenUrl: https://example.com/api/oauth/token
scopes:
write:pets: modify pets in your account
read:pets: read your pets

Security Requirement Object(安全要求对象)

执行请求所需的安全方案列表。每个属性的名称必须对应于Components Object下的securitySchemes属性声明的安全方案。

Security Requirement Objects包含多个对象时,要求必须满足所有对象才能使请求获得授权。 这需要传递多个query参数或header参数。

当在OpenAPI ObjectOperation Object上定义Security Requirement Objects列表时,只需满足列表中的一个Security Requirement Object即可授权请求。

Patterned Fields
匹配字段属性类型描述
{name}[string]每个名称必须对应于在Components ObjectsecuritySchemes中声明的安全方案。 如果安全方案的type字段为“oauth2”或“openIdConnect”,则该值是执行范围的名称列表,如果不需要指定范围,则该列表可以为空。 对于其他类型,数组必须为空。
示例:
非OAuth2的情况
{
"api_key": []
}
api_key: []
OAuth2的情况
{
"petstore_auth": [
"write:pets",
"read:pets"
]
}
petstore_auth:
- write:pets
- read:pets
OAuth2的可选情况

OpenAPI ObjectOperation Object中定义的一样。

{
"security": [
{},
{
"petstore_auth": [
"write:pets",
"read:pets"
]
}
]
}
security:
- {}
- petstore_auth:
- write:pets
- read:pets

Specification Extensions(规范扩展)

虽然OpenAPI规范尝试适应大多数的应用场景,但可以添加额外的数据以在某些点扩展规范。

扩展属性的实现始终以"x-"为前缀的模式化字段。

匹配字段类型描述
^x-Any可以对OpenAPI Schema进行扩展。字段名称必须以x-开头,例如x-internal-id。该值可以是 null、基本数据类型(primitive)、数组(array)或对象(object)。可以有任何有效的 JSON 格式值。

可用工具可能支持也可能不支持扩展,但也可以扩展这些扩展以添加请求的支持(如果工具是内部的或开源的)。

Security Filtering(安全过滤)

OpenAPI规范中的一些对象可以被声明并保持为空,或者被完全删除,即使它们是API文档的核心。

原因是因为可以对文档进行额外的访问控制。虽然这不是规范本身的一部分,但某些库可以选择允许基于某种形式的身份验证/授权访问(authentication/authorization)文档的某些部分。

举例如下:

  1. Paths Object可能为空。这是为了告诉查看者他们访问到了正确的位置,但无法访问任何文档。但他们仍然可以访问可能包含有关身份验证附加信息的Info Object
  2. Path Item Object可能为空。在这种情况下,查看者将知道路径存在,但将无法看到它的任何请求或参数。这与从Paths Object,中隐藏路径本身不同,因为用户会知道它的存在。这允许文档提供者更精细地控制查看者可以看到的内容。