Pet
Properties
| Name | Type | Required | Example / Values |
|---|---|---|---|
| object | |||
| name | string | required | Example: "doggie" |
| photoUrls | array[string] | required | |
| id | integer (int64) | optional | Example: 10 |
| category | object | optional | |
| id | integer (int64) | optional | Example: 1 |
| name | string | optional | Example: "Dogs" |
| tags | array[object] | optional | |
| Item | object | ||
| id | integer (int64) | optional | Example: 0 |
| name | string | optional | Example: "string" |
| status | string | optional | availablependingsold |
pet status in the store | |||
Example
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [
"string"
],
"tags": [
{
"id": 0,
"name": "string"
}
],
"status": "available"
}Used In
POST
/petPUT
/petGET
/pet/findByStatusGET
/pet/findByTagsGET
/pet/{petId}POST
/pet/{petId}