Files
varsity/test/sample-openapi.json
2025-10-01 20:01:42 +00:00

44 lines
955 B
JSON

{
"openapi": "3.0.3",
"info": {
"title": "Sample API",
"version": "1.0.0",
"description": "A sample OpenAPI specification for testing"
},
"servers": [
{
"url": "https://api.example.com/v1"
}
],
"paths": {
"/users": {
"get": {
"summary": "Get all users",
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}
}