Schemas
Order
- objectExample:
{"id":0,"petId":0,"quantity":0,"shipDate":"2019-08-24T14:15:22Z","status":"placed","complete":false}
Properties:id
integer:int64Example:0
petId
integer:int64Example:0
quantity
integer:int32Example:0
shipDate
string:date-timeExample:"2019-08-24T14:15:22Z"
status
stringOrder StatusExample:"placed"
Enum:placed
approved
delivered
complete
booleanExample:false
User
- objectExample:
{"id":0,"username":"string","firstName":"string","lastName":"string","email":"string","password":"string","phone":"string","userStatus":0}
Properties:id
integer:int64Example:0
username
stringExample:"string"
firstName
stringExample:"string"
lastName
stringExample:"string"
email
stringExample:"string"
password
stringExample:"string"
phone
stringExample:"string"
userStatus
integer:int32User StatusExample:0
Category
- objectExample:
{"id":0,"name":"string"}
Properties:id
integer:int64Example:0
name
stringExample:"string"
Tag
- objectExample:
{"id":0,"name":"string"}
Properties:id
integer:int64Example:0
name
stringExample:"string"
Pet
- objectExample:
{"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
ApiResponse
- objectExample:
{"code":0,"type":"string","message":"string"}
Properties:code
integer:int32Example:0
type
stringExample:"string"
message
stringExample:"string"
Request Bodies
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}
Pet
Required
Pet object that needs to be added to the store
Content Type:
application/json
- Schema
- objectPetExample:
{"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