From 933ac666a8b61382693103dcc3eb3bb283582bbc Mon Sep 17 00:00:00 2001 From: Rajbir Singh Date: Wed, 23 Oct 2024 13:16:39 +0200 Subject: [PATCH] PMT-26: Define Endpoint --- api/pmt.yml | 72 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 67 insertions(+), 5 deletions(-) diff --git a/api/pmt.yml b/api/pmt.yml index 0e803c0..e29a938 100644 --- a/api/pmt.yml +++ b/api/pmt.yml @@ -77,6 +77,45 @@ components: qualificationId: type: integer format: int64 + Employee: + type: object + properties: + id: + type: integer + format: int64 + lastName: + type: string + firstName: + type: string + street: + type: string + postcode: + maxLength: 5 + minLength: 5 + type: string + city: + type: string + phone: + type: string + skillSet: + type: array + items: + $ref: '#/components/schemas/Qualification' + Qualification: + type: object + properties: + skill: + type: string + id: + type: integer + format: int64 + ProjectEmployeesDTO: + type: object + properties: + employees: + type: array + items: + $ref: "#/components/schemas/Employee" responses: Unauthorized: description: "Unauthorized" @@ -167,10 +206,10 @@ paths: format: int64 required: true requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/AddEmployeeDTO" + content: + application/json: + schema: + $ref: "#/components/schemas/AddEmployeeDTO" responses: 204: description: "Employee successfully added to the specific Project" @@ -179,7 +218,7 @@ paths: 404: $ref: "#/components/responses/NotFound" 409: - $ref: "#/components/responses/Conflict" + $ref: "#/components/responses/Conflict" 422: $ref: "#/components/responses/UnprocessableContent" 500: @@ -241,3 +280,26 @@ paths: $ref: "#/components/responses/InternalError" 503: $ref: "#/components/responses/ServiceUnavailable" + + /project/{id}/employees: + get: + description: "getAllEmployees" + operationId: "Get a List of all Employees from a specific Project" + parameters: + - in: path + name: id + schema: + type: integer + format: int64 + required: true + responses: + 200: + content: + application/json: + schema: + $ref: "#/components/schemas/ProjectEmployeesDTO" + description: 'Get a List of all Employees from a specific Project ' + 404: + $ref: '#/components/responses/NotFound' + 500: + $ref: "#/components/responses/InternalError"