portfolio/common/docs/openApi.json
2024-05-16 18:12:02 +02:00

43 lines
664 B
JSON

{
"components": {},
"info": {
"title": "portfolio",
"version": "0.0.0"
},
"openapi": "3.0.0",
"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": ""
}
}
}
}
}
}