openapi-generators / openapi-generators/openapi-python-client
Unable to process schema when title is ambiguous
未关闭
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 2k
- 派生
- 293
- 平均合并
- 34 分钟
- 30 天内合并 PR
- 1
描述
Describe the bug
Unable to process schema /components/schemas/ActualApprovement:
Could not find reference in parsed models or enums
Failure to process schema has resulted in the removal of:
/components/schemas/ActualApprovement
Reference(ref='#/components/schemas/backend__server__src__models__types__approvement__ApprovementStatus')
OpenAPI Spec File
A link to an OpenAPI document which produces this issue. Ideally, write a minimal reproduction only containing the problematic pieces.
{
"components": {
"schemas": {
"backend__gateways__types__ApprovementStatus": {
"type": "string",
"enum": [
"in_progress",
"suspended",
"rejected",
"closed"
],
"title": "ApprovementStatus"
},
"backend__server__src__models__types__approvement__ApprovementStatus": {
"type": "string",
"enum": [
"pending",
"approved",
"rejected",
"cancelled"
],
"title": "ApprovementStatus"
},
"ActualApprovement": {
"properties": {
"status": {
"$ref": "#/components/schemas/backend__server__src__models__types__approvement__ApprovementStatus"
}
},
"type": "object",
"required": [
"status",
],
"title": "ActualApprovement"
},
}}}
Desktop (please complete the following information):
- OS: Ubuntu 22.04
- Python Version: 3.9
- openapi-python-client version 0.27.1
Additional context
Add any other context about the problem here.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先使用 issue 中的 OpenAPI 文档复现该失败,重点检查共享标题 "ApprovementStatus" 的两个 schema 的 schema 解析和引用解析。完成的标准是被引用的 enum 能够正确解析,并且 ActualApprovement schema 不会被移除。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100