minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
2.38 kB
{
"operationId": "getPets",
"responses":{
"200":{
"description":"Successful operation",
"content":{
"application/json":{
"schema":{
"type":"array",
"items":{
"type":"object",
"properties":{
"id":{
"type":"integer",
"format":"int64"
},
"category":{
"type":"object",
"properties":{
"id":{
"type":"integer",
"format":"int64"
},
"name":{
"type":"string",
"required": true
}
},
"xml":{
"name":"Category"
}
},
"name":{
"type":"string",
"example":"doggie"
},
"photoUrls":{
"type":"array",
"xml":{
"name":"photoUrl",
"wrapped":true
},
"items":{
"type":"string"
},
"required": true
},
"tags":{
"type":"array",
"xml":{
"name":"tag",
"wrapped":true
},
"items":{
"type":"object",
"properties":{
"id":{
"type":"integer",
"format":"int64"
},
"name":{
"type":"string"
}
},
"xml":{
"name":"Tag"
}
}
},
"status":{
"type":"string",
"description":"pet status in the store",
"enum":[
"available",
"pending",
"sold"
]
}
},
"xml":{
"name":"Pet"
}
}
}
}
}
}
}
}