Version 2.7.51: OpenAPI `allOf` based schema not rendered in Design mode (property missing)
Tericky Shih
After upgrading to apidog 2.7.51, an object property that uses allOf to reference another schema (see query below) does not display in the Design (visual) mode. The schema is valid OpenAPI-style JSON; the issue appears to be a parsing/rendering regression in the new apidog release that mishandles allOf inside object properties.
"BodyOfSearchIssueGroup": {
"type": "object",
"properties": {
"sort": {
"description": "排序條件",
"type": "array",
"items": {
"$ref": "#/components/schemas/SortOfSearchIssueGroup"
}
},
"pagination": {
"$ref": "#/components/schemas/BasePagination"
},
"query": {
"description": "查詢條件",
"allOf": [
{
"$ref": "#/components/schemas/QueryOfSearchIssueGroup"
}
]
}
}
}
z
zoey
We apologize for the inconvenience. This issue has been successfully resolved. Please update your application to version 2.7.52 and attempt to use the feature again.
Tericky Shih
Thank you for the quick response and prompt fix!
I’ve updated to the latest version(2.7.53), and the issue is now working correctly.
Really appreciate the team’s fast support and continuous improvements.