write:pets
read:pets
) Pet object that needs to be added to the store
id | integer <int64> |
category | object (Category) |
name required | string |
photoUrls required | Array of strings |
tags | Array of objects (Tag) |
status | string Enum: "available" "pending" "sold" pet status in the store |
Invalid input
{- "id": 0,
- "category": {
- "id": 0,
- "name": "string"
}, - "name": "doggie",
- "photoUrls": [
- "string"
], - "tags": [
- {
- "id": 0,
- "name": "string"
}
], - "status": "available"
}