forked from loafle/openapi-generator-original
43 lines
651 B
JSON
43 lines
651 B
JSON
{
|
|
"userList":[
|
|
{
|
|
"username":"testuser1",
|
|
"password":"password1",
|
|
"email":"test1@dummy.com"
|
|
},
|
|
{
|
|
"username":"testuser2",
|
|
"password":"password2",
|
|
"email":"test2@dummy.com"
|
|
}
|
|
],
|
|
"petList":[
|
|
{
|
|
"id":101,
|
|
"name":"pet1",
|
|
"photoUrls":["url1","url2"],
|
|
"tags":[
|
|
{
|
|
"id":1,
|
|
"name":"tag1"
|
|
},
|
|
{
|
|
"id":2,
|
|
"name":"tag2"
|
|
}
|
|
],
|
|
"status":"available",
|
|
"category":{"id":1,"name":"cat1"}
|
|
}
|
|
],
|
|
"orderList":[
|
|
{
|
|
"id":101,
|
|
"petId":1,
|
|
"quantity":1,
|
|
"status":"placed",
|
|
"shipDate":13456789
|
|
}
|
|
]
|
|
}
|