Files
varsity/test/circular-refs-api.json
2025-10-01 20:01:42 +00:00

31 lines
586 B
JSON

{
"openapi": "3.0.0",
"info": {
"title": "Circular References API",
"version": "1.0.0",
"description": "API with intentional circular references for testing"
},
"paths": {
"/users": {
"get": {
"summary": "Get users",
"responses": {
"200": {
"$ref": "./responses/users-response.json"
}
}
}
}
},
"components": {
"schemas": {
"User": {
"$ref": "./schemas/user-schema.json"
},
"Category": {
"$ref": "./schemas/category-schema.json"
}
}
}
}