7
我正在用Swagger文檔記錄API。我有幾個共享一組通用屬性的端點。我想使用$ ref引用該基本屬性集,然後使用每個端點獨有的附加屬性擴展這些屬性。我想象它會工作是這樣的,但這是無效的:在Swagger文檔中結合定義
"properties": {
"$ref": "#/definitions/baseProperties",
unique_thing": {
"type": "string"
},
"another_unique_thing": {
"type": "string"
}
}