{
"openapi": "3.1.0",
"info": {
"title": "Pets",
"version": "1.0.0"
},
"paths": {
"/pets": {
"get": {
"parameters": [
{
"name": "limit",
"in": "query",
"required": true,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "ok",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
}
}
}
}