gpt4 book ai didi

swagger - 结合 Swagger 文档中的定义

转载 作者:行者123 更新时间:2023-12-04 10:03:47 25 4
gpt4 key购买 nike

我正在用 Swagger 文档记录 API。我有几个端点共享一组通用的基本属性。我想使用 $ref 来引用该基本属性集,然后使用每个端点独有的附加属性扩展这些属性。我想象它会像这样工作,但这是无效的:

"properties": {
"$ref": "#/definitions/baseProperties",
unique_thing": {
"type": "string"
},
"another_unique_thing": {
"type": "string"
}
}

最佳答案

事实上,你在这里给出的例子是无效的,因为 $ref不能与同一对象中的其他属性共存。 $ref是一个 JSON 引用,根据定义,将导致其他属性被忽略。

根据您的问题,我假设您正在寻找基本组合(而不是继承)。这可以使用 allOf 实现关键词。

因此,使用您提供的示例,您将获得如下内容:

{
"baseProperties": {
"type": "object",
"properties": {
...
}
},
"complexModel": {
"allOf": [
{
"$ref": "#/definitions/baseProperties"
},
{
"type": "object",
"properties": {
"unique_thing": {
"type": "string"
},
"another_unique_thing": {
"type": "string"
}
}
}
]
}
}

YAML 版本:

definitions:
baseProperties:
type: object
properties:
...
complexModel:
allOf:
- $ref: '#/definitions/baseProperties'
- type: object
properties:
unique_thing:
type: string
another_unique_thing:
type: string

您也可以查看 example in the spec .

关于swagger - 结合 Swagger 文档中的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29463634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com