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"
}
]
}
}
}