Schemas
ApiResponse
- objectExample:
{"code":0,"type":"string","message":"string"}
Properties:code
integer:int32Example:0
type
stringExample:"string"
message
stringExample:"string"
Cat
A representation of a cat
- objectExample:
{"id":0,"category":{"id":0,"name":"string"},"name":"doggie","photoUrls":["string"],"tags":[{"id":0,"name":"string"}],"status":"available","huntingSkill":"clueless"}
Properties:id
integer:int64RequiredExample:0
category
objectCategoryExample:{"id":0,"name":"string"}
name
stringRequiredExample:"doggie"
photoUrls
array<string>RequiredExample:["string"]
Items:- stringExample:
"string"
tags
arrayExample:[{"id":0,"name":"string"}]
Items:- objectTagExample:
{"id":0,"name":"string"}
status
stringpet status in the storeExample:"available"
Enum:available
pending
sold
huntingSkill
stringRequiredThe measured skill for huntingExample:"clueless"
Enum:clueless
lazy
adventurous
aggressive
Category
- objectExample:
{"id":0,"name":"string","sub":{"prop1":"string"}}
Properties:id
integer:int64IdCategory IDExample:0
ReadOnlyname
stringCategory nameExample:"string"
Minimum string length:1
sub
objectTest Sub CategoryExample:{"prop1":"string"}
Pet
- objectExample:
{"id":null,"category":{"id":0,"name":"string"},"name":"Guru"}
Properties:id
anycategory
objectCategoryCategories this pet belongs toExample:{"id":0,"name":"string"}
name
stringRequiredThe name given to a petExample:"Guru"
Tag
- objectExample:
{"id":0,"name":"string"}
Properties:id
integer:int64IdTag IDExample:0
ReadOnlyname
stringTag nameExample:"string"
Minimum string length:1
Examples
Order
{ "quantity": "1,", "shipDate": "2018-10-19T16:46:45Z,", "status": "placed,", "complete": false }
Request Bodies
Pet
Required
Pet object that needs to be added to the store
Content Type:
application/json
- Schema
- objectPetMy PetExample:
{"id":0,"category":{"id":0,"name":"string"},"name":"doggie","photoUrls":["string"],"tags":[{"id":0,"name":"string"}],"status":"available"}
Properties:id
integer:int64RequiredExample:0
category
objectCategoryExample:{"id":0,"name":"string"}
name
stringRequiredExample:"doggie"
photoUrls
array<string>RequiredExample:["string"]
Items:- stringExample:
"string"
tags
arrayExample:[{"id":0,"name":"string"}]
Items:- objectTagExample:
{"id":0,"name":"string"}
status
stringpet status in the storeExample:"available"
Enum:available
pending
sold
UserArray
Required
List of user object
Content Type:
application/json
- Schema
- arrayExample:
[{"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}]
Items:- objectUserExample:
{"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}