portfolio/common/docs/openApi.json

43 lines
664 B
JSON
Raw Permalink Normal View History

2024-05-16 18:00:32 +02:00
{
"components": {},
"info": {
2024-05-16 18:12:02 +02:00
"title": "portfolio",
2024-05-16 18:00:32 +02:00
"version": "0.0.0"
},
"openapi": "3.0.0",
2024-05-16 18:12:02 +02:00
"paths": {
"/nfc/{uid}": {
"get": {
"description": "Get nfc data by uid.",
"parameters": [
{
"description": "id of the user",
"in": "path",
"name": "uid",
"required": true,
"schema": {
"pattern": "\\d+",
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": ""
},
"default": {
"description": ""
}
}
}
}
}
2024-05-16 18:00:32 +02:00
}