mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
44 lines
955 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|