Fix missing objects when defining inline anyOf, or oneOf (#17141)

* better handling of composed schema in inline model resolver

* better handling of example
This commit is contained in:
William Cheng
2023-11-20 10:24:57 +08:00
committed by GitHub
parent 6d93b0ec83
commit 0401c46147
14 changed files with 861 additions and 6 deletions

View File

@@ -10,6 +10,7 @@
|**id** | **Long** | | [optional] |
|**name** | **String** | | |
|**linkListColumn1** | [**AllOfModelArrayAnyOfAllOfLinkListColumn1**](AllOfModelArrayAnyOfAllOfLinkListColumn1.md) | | [optional] |
|**attributes** | [**AllOfModelArrayAnyOfAllOfAttributes**](AllOfModelArrayAnyOfAllOfAttributes.md) | | [optional] |

View File

@@ -0,0 +1,13 @@
# AllOfModelArrayAnyOfAllOfAttributes
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**C** | [**AllOfModelArrayAnyOfAllOfAttributesC**](AllOfModelArrayAnyOfAllOfAttributesC.md) | | [optional] |

View File

@@ -0,0 +1,32 @@
# AllOfModelArrayAnyOfAllOfAttributesC
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **Long** | | [optional] |
|**category** | [**Category**](Category.md) | | [optional] |
|**name** | **String** | | |
|**photoUrls** | **List<String>** | | |
|**tags** | [**List<Tag>**](Tag.md) | | [optional] |
|**status** | [**StatusEnum**](#StatusEnum) | Order Status | [optional] |
|**petId** | **Long** | | [optional] |
|**quantity** | **Integer** | | [optional] |
|**shipDate** | **OffsetDateTime** | | [optional] |
|**complete** | **Boolean** | | [optional] |
## Enum: StatusEnum
| Name | Value |
|---- | -----|
| PLACED | "placed" |
| APPROVED | "approved" |
| DELIVERED | "delivered" |