AutoRestTest-TrackA / tools /resttestgen /src /test /resources /operations /deletePetId_unordered.json
minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
635 Bytes
{
"operationId": "deletePet",
"parameters":[
{
"name":"petId",
"in":"path",
"description":"Pet id to delete",
"required":true,
"schema":{
"type":"integer",
"format":"int64"
}
},
{
"name":"api_key",
"in":"header",
"schema":{
"type":"string"
}
}
],
"responses":{
"200":{
"description":"Successful operation",
"content":{
}
},
"404":{
"description":"Pet not found",
"content":{
}
},
"405":{
"description":"Invalid ID supplied",
"content":{
}
}
}
}