Better support for $ref to schema's properties (#18233)

* use once

* add support for reference to schema properties
This commit is contained in:
William Cheng
2024-03-27 11:46:00 +08:00
committed by GitHub
parent 309918d03e
commit e78aeb6bc7
11 changed files with 764 additions and 17 deletions

View File

@@ -0,0 +1,28 @@
# PetRef
## 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) | pet status in the store | [optional] |
## Enum: StatusEnum
| Name | Value |
|---- | -----|
| AVAILABLE | "available" |
| PENDING | "pending" |
| SOLD | "sold" |