Files
varsity/test/edge-cases/very-deep/api/main-api.json
2025-10-01 20:01:42 +00:00

28 lines
539 B
JSON

{
"openapi": "3.0.0",
"info": {
"title": "Edge Cases API",
"version": "1.0.0",
"description": "API testing various edge cases for $ref resolution"
},
"paths": {
"/test": {
"get": {
"summary": "Test endpoint",
"responses": {
"200": {
"$ref": "../../../../shared/responses/test-response.json"
}
}
}
}
},
"components": {
"schemas": {
"TestSchema": {
"$ref": "../../../../shared/schemas/test-schema.json"
}
}
}
}