/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libraries-data-2/src/main/resources/sample.json
55 строк
1 KB
Avin Buricha
BAEL-6258 | Article code (#13782)
21 апр 2023, 04:19
21 апр 2023, 04:19
e606682
Код
Авторство
О чём код?
{ "openapi": "3.0.0", "info": { "title": "User APIs", "version": "1.0" }, "servers": [ { "url": "https://jsonplaceholder.typicode.com", "description": "Json Place Holder Service" } ], "paths": { "/users/{id}": { "parameters": [ { "schema": { "type": "integer" }, "name": "id", "in": "path", "required": true } ], "get": { "summary": "Fetch user by ID", "tags": [ "User" ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" } } } } } } }, "operationId": "get-users-user_id", "description": "Retrieve a specific user by ID" } } } }