-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers-api.openapi.json
1 lines (1 loc) · 1.64 KB
/
users-api.openapi.json
1
{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost:8080","description":"Generated server url"}],"paths":{"/users/{email}/roles":{"get":{"tags":["Users"],"operationId":"getRoles","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string","format":"email"}}],"responses":{"422":{"description":"Unprocessable Entity","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}},"404":{"description":"Not Found"},"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}}}},"put":{"tags":["Users"],"operationId":"updateRoles","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}},"required":true},"responses":{"422":{"description":"Unprocessable Entity","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}},"404":{"description":"Not Found"},"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object"}}}}}}},"/users/me":{"get":{"tags":["Users"],"operationId":"getInfo","responses":{"422":{"description":"Unprocessable Entity","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"}}}}},"404":{"description":"Not Found"},"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserInfoDto"}}}}}}}},"components":{"schemas":{"UserInfoDto":{"required":["email","name","roles"],"type":"object","properties":{"name":{"type":"string"},"email":{"type":"string"},"roles":{"type":"array","items":{"type":"string"}}}}}}}