From 215c0dc4d27715b27388b1e621ac3251f54fff6b Mon Sep 17 00:00:00 2001 From: Matthew Richards Date: Thu, 11 Jun 2020 09:01:03 +0000 Subject: [PATCH] #126: Add rebuilt openapi.yaml for Swagger docs --- src/swagger/openapi.yaml | 4958 +++++++++++++++++++------------------- 1 file changed, 2443 insertions(+), 2515 deletions(-) diff --git a/src/swagger/openapi.yaml b/src/swagger/openapi.yaml index 763d913d..10163982 100644 --- a/src/swagger/openapi.yaml +++ b/src/swagger/openapi.yaml @@ -1760,24 +1760,31 @@ info: openapi: 3.0.3 paths: /applications: - get: - description: Retrieves a list of APPLICATION objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates APPLICATION object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/APPLICATION' + - items: + $ref: '#/components/schemas/APPLICATION' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/APPLICATION' - type: array - description: Success - returns APPLICATION that satisfy the filters + oneOf: + - $ref: '#/components/schemas/APPLICATION' + - items: + $ref: '#/components/schemas/APPLICATION' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -1787,7 +1794,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Applications + summary: Update Applications tags: - Applications post: @@ -1827,31 +1834,24 @@ paths: summary: Create new Applications tags: - Applications - patch: - description: Updates APPLICATION object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/APPLICATION' - - items: - $ref: '#/components/schemas/APPLICATION' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of APPLICATION objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/APPLICATION' - - items: - $ref: '#/components/schemas/APPLICATION' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/APPLICATION' + type: array + description: Success - returns APPLICATION that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -1861,26 +1861,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Applications + summary: Get Applications tags: - Applications /applications/{id}: - get: - description: Retrieves a list of APPLICATION objects + patch: + description: Updates APPLICATION with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/APPLICATION' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/APPLICATION' - description: Success - the matching APPLICATION + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -1890,22 +1898,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the APPLICATION matching the given ID + summary: Update Applications by id tags: - Applications - delete: - description: Updates APPLICATION with the specified ID with details provided - in the request body + get: + description: Retrieves a list of APPLICATION objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/APPLICATION' + description: Success - the matching APPLICATION '400': description: Bad request - Something was wrong with the request '401': @@ -1915,33 +1926,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Applications by id + summary: Find the APPLICATION matching the given ID tags: - Applications - patch: + delete: description: Updates APPLICATION with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/APPLICATION' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/APPLICATION' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -1951,7 +1951,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Applications by id + summary: Delete Applications by id tags: - Applications /applications/count: @@ -2010,24 +2010,31 @@ paths: tags: - Applications /datacollectiondatafiles: - get: - description: Retrieves a list of DATACOLLECTIONDATAFILE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATACOLLECTIONDATAFILE object(s) with details provided + in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + - items: + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - type: array - description: Success - returns DATACOLLECTIONDATAFILE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + - items: + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2037,7 +2044,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DataCollectionDatafiles + summary: Update DataCollectionDatafiles tags: - DataCollectionDatafiles post: @@ -2077,31 +2084,24 @@ paths: summary: Create new DataCollectionDatafiles tags: - DataCollectionDatafiles - patch: - description: Updates DATACOLLECTIONDATAFILE object(s) with details provided - in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - - items: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATACOLLECTIONDATAFILE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - - items: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + type: array + description: Success - returns DATACOLLECTIONDATAFILE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -2111,26 +2111,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionDatafiles + summary: Get DataCollectionDatafiles tags: - DataCollectionDatafiles /datacollectiondatafiles/{id}: - get: - description: Retrieves a list of DATACOLLECTIONDATAFILE objects + patch: + description: Updates DATACOLLECTIONDATAFILE with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - description: Success - the matching DATACOLLECTIONDATAFILE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -2140,22 +2148,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATACOLLECTIONDATAFILE matching the given ID + summary: Update DataCollectionDatafiles by id tags: - DataCollectionDatafiles - delete: - description: Updates DATACOLLECTIONDATAFILE with the specified ID with details - provided in the request body + get: + description: Retrieves a list of DATACOLLECTIONDATAFILE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + description: Success - the matching DATACOLLECTIONDATAFILE '400': description: Bad request - Something was wrong with the request '401': @@ -2165,33 +2176,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DataCollectionDatafiles by id + summary: Find the DATACOLLECTIONDATAFILE matching the given ID tags: - DataCollectionDatafiles - patch: + delete: description: Updates DATACOLLECTIONDATAFILE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -2201,7 +2201,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionDatafiles by id + summary: Delete DataCollectionDatafiles by id tags: - DataCollectionDatafiles /datacollectiondatafiles/count: @@ -2262,24 +2262,31 @@ paths: tags: - DataCollectionDatafiles /datacollectiondatasets: - get: - description: Retrieves a list of DATACOLLECTIONDATASET objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATACOLLECTIONDATASET object(s) with details provided in + the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONDATASET' + - items: + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - type: array - description: Success - returns DATACOLLECTIONDATASET that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONDATASET' + - items: + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2289,7 +2296,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DataCollectionDatasets + summary: Update DataCollectionDatasets tags: - DataCollectionDatasets post: @@ -2329,31 +2336,24 @@ paths: summary: Create new DataCollectionDatasets tags: - DataCollectionDatasets - patch: - description: Updates DATACOLLECTIONDATASET object(s) with details provided in - the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - - items: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATACOLLECTIONDATASET objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - - items: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + type: array + description: Success - returns DATACOLLECTIONDATASET that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -2363,26 +2363,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionDatasets + summary: Get DataCollectionDatasets tags: - DataCollectionDatasets /datacollectiondatasets/{id}: - get: - description: Retrieves a list of DATACOLLECTIONDATASET objects + patch: + description: Updates DATACOLLECTIONDATASET with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATACOLLECTIONDATASET' - description: Success - the matching DATACOLLECTIONDATASET + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -2392,22 +2400,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATACOLLECTIONDATASET matching the given ID + summary: Update DataCollectionDatasets by id tags: - DataCollectionDatasets - delete: - description: Updates DATACOLLECTIONDATASET with the specified ID with details - provided in the request body + get: + description: Retrieves a list of DATACOLLECTIONDATASET objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + description: Success - the matching DATACOLLECTIONDATASET '400': description: Bad request - Something was wrong with the request '401': @@ -2417,33 +2428,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DataCollectionDatasets by id + summary: Find the DATACOLLECTIONDATASET matching the given ID tags: - DataCollectionDatasets - patch: + delete: description: Updates DATACOLLECTIONDATASET with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -2453,7 +2453,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionDatasets by id + summary: Delete DataCollectionDatasets by id tags: - DataCollectionDatasets /datacollectiondatasets/count: @@ -2514,25 +2514,31 @@ paths: tags: - DataCollectionDatasets /datacollectionparameters: - get: - description: Retrieves a list of DATACOLLECTIONPARAMETER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATACOLLECTIONPARAMETER object(s) with details provided + in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + - items: + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - type: array - description: Success - returns DATACOLLECTIONPARAMETER that satisfy the - filters + oneOf: + - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + - items: + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2542,7 +2548,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DataCollectionParameters + summary: Update DataCollectionParameters tags: - DataCollectionParameters post: @@ -2582,31 +2588,25 @@ paths: summary: Create new DataCollectionParameters tags: - DataCollectionParameters - patch: - description: Updates DATACOLLECTIONPARAMETER object(s) with details provided - in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - - items: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATACOLLECTIONPARAMETER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - - items: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + type: array + description: Success - returns DATACOLLECTIONPARAMETER that satisfy the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -2616,26 +2616,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionParameters + summary: Get DataCollectionParameters tags: - DataCollectionParameters /datacollectionparameters/{id}: - get: - description: Retrieves a list of DATACOLLECTIONPARAMETER objects + patch: + description: Updates DATACOLLECTIONPARAMETER with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - description: Success - the matching DATACOLLECTIONPARAMETER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -2645,22 +2653,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATACOLLECTIONPARAMETER matching the given ID + summary: Update DataCollectionParameters by id tags: - DataCollectionParameters - delete: - description: Updates DATACOLLECTIONPARAMETER with the specified ID with details - provided in the request body + get: + description: Retrieves a list of DATACOLLECTIONPARAMETER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + description: Success - the matching DATACOLLECTIONPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -2670,33 +2681,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DataCollectionParameters by id + summary: Find the DATACOLLECTIONPARAMETER matching the given ID tags: - DataCollectionParameters - patch: + delete: description: Updates DATACOLLECTIONPARAMETER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -2706,7 +2706,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollectionParameters by id + summary: Delete DataCollectionParameters by id tags: - DataCollectionParameters /datacollectionparameters/count: @@ -2767,24 +2767,31 @@ paths: tags: - DataCollectionParameters /datacollections: - get: - description: Retrieves a list of DATACOLLECTION objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATACOLLECTION object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATACOLLECTION' + - items: + $ref: '#/components/schemas/DATACOLLECTION' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTION' - type: array - description: Success - returns DATACOLLECTION that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATACOLLECTION' + - items: + $ref: '#/components/schemas/DATACOLLECTION' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2794,7 +2801,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DataCollections + summary: Update DataCollections tags: - DataCollections post: @@ -2834,31 +2841,24 @@ paths: summary: Create new DataCollections tags: - DataCollections - patch: - description: Updates DATACOLLECTION object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTION' - - items: - $ref: '#/components/schemas/DATACOLLECTION' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATACOLLECTION objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATACOLLECTION' - - items: - $ref: '#/components/schemas/DATACOLLECTION' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATACOLLECTION' + type: array + description: Success - returns DATACOLLECTION that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -2868,26 +2868,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollections + summary: Get DataCollections tags: - DataCollections /datacollections/{id}: - get: - description: Retrieves a list of DATACOLLECTION objects + patch: + description: Updates DATACOLLECTION with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTION' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATACOLLECTION' - description: Success - the matching DATACOLLECTION + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -2897,22 +2905,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATACOLLECTION matching the given ID + summary: Update DataCollections by id tags: - DataCollections - delete: - description: Updates DATACOLLECTION with the specified ID with details provided - in the request body + get: + description: Retrieves a list of DATACOLLECTION objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATACOLLECTION' + description: Success - the matching DATACOLLECTION '400': description: Bad request - Something was wrong with the request '401': @@ -2922,33 +2933,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DataCollections by id + summary: Find the DATACOLLECTION matching the given ID tags: - DataCollections - patch: + delete: description: Updates DATACOLLECTION with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTION' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATACOLLECTION' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -2958,7 +2958,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DataCollections by id + summary: Delete DataCollections by id tags: - DataCollections /datacollections/count: @@ -3017,24 +3017,31 @@ paths: tags: - DataCollections /datafileformats: - get: - description: Retrieves a list of DATAFILEFORMAT objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATAFILEFORMAT object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATAFILEFORMAT' + - items: + $ref: '#/components/schemas/DATAFILEFORMAT' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILEFORMAT' - type: array - description: Success - returns DATAFILEFORMAT that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATAFILEFORMAT' + - items: + $ref: '#/components/schemas/DATAFILEFORMAT' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3044,7 +3051,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DatafileFormats + summary: Update DatafileFormats tags: - DatafileFormats post: @@ -3084,31 +3091,24 @@ paths: summary: Create new DatafileFormats tags: - DatafileFormats - patch: - description: Updates DATAFILEFORMAT object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATAFILEFORMAT' - - items: - $ref: '#/components/schemas/DATAFILEFORMAT' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATAFILEFORMAT objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATAFILEFORMAT' - - items: - $ref: '#/components/schemas/DATAFILEFORMAT' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATAFILEFORMAT' + type: array + description: Success - returns DATAFILEFORMAT that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3118,26 +3118,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatafileFormats + summary: Get DatafileFormats tags: - DatafileFormats /datafileformats/{id}: - get: - description: Retrieves a list of DATAFILEFORMAT objects + patch: + description: Updates DATAFILEFORMAT with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILEFORMAT' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATAFILEFORMAT' - description: Success - the matching DATAFILEFORMAT + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -3147,22 +3155,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATAFILEFORMAT matching the given ID + summary: Update DatafileFormats by id tags: - DatafileFormats - delete: - description: Updates DATAFILEFORMAT with the specified ID with details provided - in the request body + get: + description: Retrieves a list of DATAFILEFORMAT objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILEFORMAT' + description: Success - the matching DATAFILEFORMAT '400': description: Bad request - Something was wrong with the request '401': @@ -3172,33 +3183,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DatafileFormats by id + summary: Find the DATAFILEFORMAT matching the given ID tags: - DatafileFormats - patch: + delete: description: Updates DATAFILEFORMAT with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILEFORMAT' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILEFORMAT' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -3208,7 +3208,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatafileFormats by id + summary: Delete DatafileFormats by id tags: - DatafileFormats /datafileformats/count: @@ -3267,24 +3267,31 @@ paths: tags: - DatafileFormats /datafileparameters: - get: - description: Retrieves a list of DATAFILEPARAMETER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: + patch: + description: Updates DATAFILEPARAMETER object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATAFILEPARAMETER' + - items: + $ref: '#/components/schemas/DATAFILEPARAMETER' + type: array + description: The values to use to update the object(s) with + required: true + responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILEPARAMETER' - type: array - description: Success - returns DATAFILEPARAMETER that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATAFILEPARAMETER' + - items: + $ref: '#/components/schemas/DATAFILEPARAMETER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3294,7 +3301,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DatafileParameters + summary: Update DatafileParameters tags: - DatafileParameters post: @@ -3334,31 +3341,24 @@ paths: summary: Create new DatafileParameters tags: - DatafileParameters - patch: - description: Updates DATAFILEPARAMETER object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATAFILEPARAMETER' - - items: - $ref: '#/components/schemas/DATAFILEPARAMETER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATAFILEPARAMETER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATAFILEPARAMETER' - - items: - $ref: '#/components/schemas/DATAFILEPARAMETER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATAFILEPARAMETER' + type: array + description: Success - returns DATAFILEPARAMETER that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3368,26 +3368,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatafileParameters + summary: Get DatafileParameters tags: - DatafileParameters /datafileparameters/{id}: - get: - description: Retrieves a list of DATAFILEPARAMETER objects + patch: + description: Updates DATAFILEPARAMETER with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILEPARAMETER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATAFILEPARAMETER' - description: Success - the matching DATAFILEPARAMETER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -3397,22 +3405,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATAFILEPARAMETER matching the given ID + summary: Update DatafileParameters by id tags: - DatafileParameters - delete: - description: Updates DATAFILEPARAMETER with the specified ID with details provided - in the request body + get: + description: Retrieves a list of DATAFILEPARAMETER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILEPARAMETER' + description: Success - the matching DATAFILEPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -3422,33 +3433,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DatafileParameters by id + summary: Find the DATAFILEPARAMETER matching the given ID tags: - DatafileParameters - patch: + delete: description: Updates DATAFILEPARAMETER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILEPARAMETER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILEPARAMETER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -3458,7 +3458,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatafileParameters by id + summary: Delete DatafileParameters by id tags: - DatafileParameters /datafileparameters/count: @@ -3518,24 +3518,31 @@ paths: tags: - DatafileParameters /datafiles: - get: - description: Retrieves a list of DATAFILE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATAFILE object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATAFILE' + - items: + $ref: '#/components/schemas/DATAFILE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILE' - type: array - description: Success - returns DATAFILE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATAFILE' + - items: + $ref: '#/components/schemas/DATAFILE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3545,7 +3552,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Datafiles + summary: Update Datafiles tags: - Datafiles post: @@ -3585,31 +3592,24 @@ paths: summary: Create new Datafiles tags: - Datafiles - patch: - description: Updates DATAFILE object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATAFILE' - - items: - $ref: '#/components/schemas/DATAFILE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATAFILE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATAFILE' - - items: - $ref: '#/components/schemas/DATAFILE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATAFILE' + type: array + description: Success - returns DATAFILE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3619,26 +3619,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Datafiles + summary: Get Datafiles tags: - Datafiles /datafiles/{id}: - get: - description: Retrieves a list of DATAFILE objects + patch: + description: Updates DATAFILE with the specified ID with details provided in + the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATAFILE' - description: Success - the matching DATAFILE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -3648,22 +3656,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATAFILE matching the given ID + summary: Update Datafiles by id tags: - Datafiles - delete: - description: Updates DATAFILE with the specified ID with details provided in - the request body + get: + description: Retrieves a list of DATAFILE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATAFILE' + description: Success - the matching DATAFILE '400': description: Bad request - Something was wrong with the request '401': @@ -3673,33 +3684,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Datafiles by id + summary: Find the DATAFILE matching the given ID tags: - Datafiles - patch: + delete: description: Updates DATAFILE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATAFILE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -3709,7 +3709,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Datafiles by id + summary: Delete Datafiles by id tags: - Datafiles /datafiles/count: @@ -3768,24 +3768,31 @@ paths: tags: - Datafiles /datasetparameters: - get: - description: Retrieves a list of DATASETPARAMETER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates DATASETPARAMETER object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATASETPARAMETER' + - items: $ref: '#/components/schemas/DATASETPARAMETER' type: array - description: Success - returns DATASETPARAMETER that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATASETPARAMETER' + - items: + $ref: '#/components/schemas/DATASETPARAMETER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3795,7 +3802,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DatasetParameters + summary: Update DatasetParameters tags: - DatasetParameters post: @@ -3835,31 +3842,24 @@ paths: summary: Create new DatasetParameters tags: - DatasetParameters - patch: - description: Updates DATASETPARAMETER object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATASETPARAMETER' - - items: - $ref: '#/components/schemas/DATASETPARAMETER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATASETPARAMETER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATASETPARAMETER' - - items: - $ref: '#/components/schemas/DATASETPARAMETER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATASETPARAMETER' + type: array + description: Success - returns DATASETPARAMETER that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3869,26 +3869,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatasetParameters + summary: Get DatasetParameters tags: - DatasetParameters /datasetparameters/{id}: - get: - description: Retrieves a list of DATASETPARAMETER objects + patch: + description: Updates DATASETPARAMETER with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATASETPARAMETER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATASETPARAMETER' - description: Success - the matching DATASETPARAMETER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -3898,22 +3906,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATASETPARAMETER matching the given ID + summary: Update DatasetParameters by id tags: - DatasetParameters - delete: - description: Updates DATASETPARAMETER with the specified ID with details provided - in the request body + get: + description: Retrieves a list of DATASETPARAMETER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATASETPARAMETER' + description: Success - the matching DATASETPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -3923,33 +3934,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DatasetParameters by id + summary: Find the DATASETPARAMETER matching the given ID tags: - DatasetParameters - patch: + delete: description: Updates DATASETPARAMETER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATASETPARAMETER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATASETPARAMETER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -3959,7 +3959,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatasetParameters by id + summary: Delete DatasetParameters by id tags: - DatasetParameters /datasetparameters/count: @@ -4019,24 +4019,31 @@ paths: tags: - DatasetParameters /datasettypes: - get: - description: Retrieves a list of DATASETTYPE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates DATASETTYPE object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATASETTYPE' + - items: + $ref: '#/components/schemas/DATASETTYPE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATASETTYPE' - type: array - description: Success - returns DATASETTYPE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATASETTYPE' + - items: + $ref: '#/components/schemas/DATASETTYPE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4046,7 +4053,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get DatasetTypes + summary: Update DatasetTypes tags: - DatasetTypes post: @@ -4086,31 +4093,24 @@ paths: summary: Create new DatasetTypes tags: - DatasetTypes - patch: - description: Updates DATASETTYPE object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATASETTYPE' - - items: - $ref: '#/components/schemas/DATASETTYPE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATASETTYPE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATASETTYPE' - - items: - $ref: '#/components/schemas/DATASETTYPE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATASETTYPE' + type: array + description: Success - returns DATASETTYPE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4120,26 +4120,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatasetTypes + summary: Get DatasetTypes tags: - DatasetTypes /datasettypes/{id}: - get: - description: Retrieves a list of DATASETTYPE objects + patch: + description: Updates DATASETTYPE with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATASETTYPE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATASETTYPE' - description: Success - the matching DATASETTYPE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -4149,22 +4157,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATASETTYPE matching the given ID + summary: Update DatasetTypes by id tags: - DatasetTypes - delete: - description: Updates DATASETTYPE with the specified ID with details provided - in the request body + get: + description: Retrieves a list of DATASETTYPE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATASETTYPE' + description: Success - the matching DATASETTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -4174,33 +4185,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete DatasetTypes by id + summary: Find the DATASETTYPE matching the given ID tags: - DatasetTypes - patch: + delete: description: Updates DATASETTYPE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATASETTYPE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATASETTYPE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -4210,7 +4210,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update DatasetTypes by id + summary: Delete DatasetTypes by id tags: - DatasetTypes /datasettypes/count: @@ -4269,24 +4269,31 @@ paths: tags: - DatasetTypes /datasets: - get: - description: Retrieves a list of DATASET objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: + patch: + description: Updates DATASET object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/DATASET' + - items: + $ref: '#/components/schemas/DATASET' + type: array + description: The values to use to update the object(s) with + required: true + responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/DATASET' - type: array - description: Success - returns DATASET that satisfy the filters + oneOf: + - $ref: '#/components/schemas/DATASET' + - items: + $ref: '#/components/schemas/DATASET' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4296,7 +4303,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Datasets + summary: Update Datasets tags: - Datasets post: @@ -4336,31 +4343,24 @@ paths: summary: Create new Datasets tags: - Datasets - patch: - description: Updates DATASET object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/DATASET' - - items: - $ref: '#/components/schemas/DATASET' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of DATASET objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/DATASET' - - items: - $ref: '#/components/schemas/DATASET' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/DATASET' + type: array + description: Success - returns DATASET that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4370,26 +4370,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Datasets + summary: Get Datasets tags: - Datasets /datasets/{id}: - get: - description: Retrieves a list of DATASET objects + patch: + description: Updates DATASET with the specified ID with details provided in + the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/DATASET' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/DATASET' - description: Success - the matching DATASET + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -4399,22 +4407,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the DATASET matching the given ID + summary: Update Datasets by id tags: - Datasets - delete: - description: Updates DATASET with the specified ID with details provided in - the request body + get: + description: Retrieves a list of DATASET objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/DATASET' + description: Success - the matching DATASET '400': description: Bad request - Something was wrong with the request '401': @@ -4424,33 +4435,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Datasets by id + summary: Find the DATASET matching the given ID tags: - Datasets - patch: + delete: description: Updates DATASET with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/DATASET' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/DATASET' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -4460,7 +4460,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Datasets by id + summary: Delete Datasets by id tags: - Datasets /datasets/count: @@ -4519,24 +4519,31 @@ paths: tags: - Datasets /facilities: - get: - description: Retrieves a list of FACILITY objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates FACILITY object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/FACILITY' + - items: + $ref: '#/components/schemas/FACILITY' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/FACILITY' - type: array - description: Success - returns FACILITY that satisfy the filters + oneOf: + - $ref: '#/components/schemas/FACILITY' + - items: + $ref: '#/components/schemas/FACILITY' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4546,7 +4553,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Facilities + summary: Update Facilities tags: - Facilities post: @@ -4586,31 +4593,24 @@ paths: summary: Create new Facilities tags: - Facilities - patch: - description: Updates FACILITY object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/FACILITY' - - items: - $ref: '#/components/schemas/FACILITY' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of FACILITY objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/FACILITY' - - items: - $ref: '#/components/schemas/FACILITY' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/FACILITY' + type: array + description: Success - returns FACILITY that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4620,26 +4620,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Facilities + summary: Get Facilities tags: - Facilities /facilities/{id}: - get: - description: Retrieves a list of FACILITY objects + patch: + description: Updates FACILITY with the specified ID with details provided in + the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/FACILITY' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/FACILITY' - description: Success - the matching FACILITY + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -4649,22 +4657,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the FACILITY matching the given ID + summary: Update Facilities by id tags: - Facilities - delete: - description: Updates FACILITY with the specified ID with details provided in - the request body + get: + description: Retrieves a list of FACILITY objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/FACILITY' + description: Success - the matching FACILITY '400': description: Bad request - Something was wrong with the request '401': @@ -4674,33 +4685,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Facilities by id + summary: Find the FACILITY matching the given ID tags: - Facilities - patch: + delete: description: Updates FACILITY with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FACILITY' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/FACILITY' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -4710,7 +4710,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Facilities by id + summary: Delete Facilities by id tags: - Facilities /facilities/count: @@ -4769,24 +4769,31 @@ paths: tags: - Facilities /facilitycycles: - get: - description: Retrieves a list of FACILITYCYCLE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates FACILITYCYCLE object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/FACILITYCYCLE' + - items: $ref: '#/components/schemas/FACILITYCYCLE' type: array - description: Success - returns FACILITYCYCLE that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/FACILITYCYCLE' + - items: + $ref: '#/components/schemas/FACILITYCYCLE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4796,7 +4803,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get FacilityCycles + summary: Update FacilityCycles tags: - FacilityCycles post: @@ -4836,31 +4843,24 @@ paths: summary: Create new FacilityCycles tags: - FacilityCycles - patch: - description: Updates FACILITYCYCLE object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/FACILITYCYCLE' - - items: - $ref: '#/components/schemas/FACILITYCYCLE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of FACILITYCYCLE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/FACILITYCYCLE' - - items: - $ref: '#/components/schemas/FACILITYCYCLE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/FACILITYCYCLE' + type: array + description: Success - returns FACILITYCYCLE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4870,26 +4870,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update FacilityCycles + summary: Get FacilityCycles tags: - FacilityCycles /facilitycycles/{id}: - get: - description: Retrieves a list of FACILITYCYCLE objects + patch: + description: Updates FACILITYCYCLE with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/FACILITYCYCLE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/FACILITYCYCLE' - description: Success - the matching FACILITYCYCLE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -4899,22 +4907,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the FACILITYCYCLE matching the given ID + summary: Update FacilityCycles by id tags: - FacilityCycles - delete: - description: Updates FACILITYCYCLE with the specified ID with details provided - in the request body + get: + description: Retrieves a list of FACILITYCYCLE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/FACILITYCYCLE' + description: Success - the matching FACILITYCYCLE '400': description: Bad request - Something was wrong with the request '401': @@ -4924,33 +4935,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete FacilityCycles by id + summary: Find the FACILITYCYCLE matching the given ID tags: - FacilityCycles - patch: + delete: description: Updates FACILITYCYCLE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/FACILITYCYCLE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/FACILITYCYCLE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -4960,7 +4960,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update FacilityCycles by id + summary: Delete FacilityCycles by id tags: - FacilityCycles /facilitycycles/count: @@ -5019,24 +5019,31 @@ paths: tags: - FacilityCycles /groupings: - get: - description: Retrieves a list of GROUPING objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates GROUPING object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/GROUPING' + - items: + $ref: '#/components/schemas/GROUPING' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/GROUPING' - type: array - description: Success - returns GROUPING that satisfy the filters + oneOf: + - $ref: '#/components/schemas/GROUPING' + - items: + $ref: '#/components/schemas/GROUPING' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5046,7 +5053,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Groupings + summary: Update Groupings tags: - Groupings post: @@ -5086,31 +5093,24 @@ paths: summary: Create new Groupings tags: - Groupings - patch: - description: Updates GROUPING object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/GROUPING' - - items: - $ref: '#/components/schemas/GROUPING' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of GROUPING objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/GROUPING' - - items: - $ref: '#/components/schemas/GROUPING' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/GROUPING' + type: array + description: Success - returns GROUPING that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5120,26 +5120,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Groupings + summary: Get Groupings tags: - Groupings /groupings/{id}: - get: - description: Retrieves a list of GROUPING objects + patch: + description: Updates GROUPING with the specified ID with details provided in + the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/GROUPING' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/GROUPING' - description: Success - the matching GROUPING + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -5149,22 +5157,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the GROUPING matching the given ID + summary: Update Groupings by id tags: - Groupings - delete: - description: Updates GROUPING with the specified ID with details provided in - the request body + get: + description: Retrieves a list of GROUPING objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/GROUPING' + description: Success - the matching GROUPING '400': description: Bad request - Something was wrong with the request '401': @@ -5174,33 +5185,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Groupings by id + summary: Find the GROUPING matching the given ID tags: - Groupings - patch: + delete: description: Updates GROUPING with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/GROUPING' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/GROUPING' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -5210,7 +5210,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Groupings by id + summary: Delete Groupings by id tags: - Groupings /groupings/count: @@ -5269,24 +5269,31 @@ paths: tags: - Groupings /instrumentscientists: - get: - description: Retrieves a list of INSTRUMENTSCIENTIST objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: + patch: + description: Updates INSTRUMENTSCIENTIST object(s) with details provided in + the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + - items: + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + type: array + description: The values to use to update the object(s) with + required: true + responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - type: array - description: Success - returns INSTRUMENTSCIENTIST that satisfy the filters + oneOf: + - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + - items: + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5296,7 +5303,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InstrumentScientists + summary: Update InstrumentScientists tags: - InstrumentScientists post: @@ -5336,31 +5343,24 @@ paths: summary: Create new InstrumentScientists tags: - InstrumentScientists - patch: - description: Updates INSTRUMENTSCIENTIST object(s) with details provided in - the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - - items: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INSTRUMENTSCIENTIST objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - - items: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + type: array + description: Success - returns INSTRUMENTSCIENTIST that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5370,26 +5370,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InstrumentScientists + summary: Get InstrumentScientists tags: - InstrumentScientists /instrumentscientists/{id}: - get: - description: Retrieves a list of INSTRUMENTSCIENTIST objects + patch: + description: Updates INSTRUMENTSCIENTIST with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - description: Success - the matching INSTRUMENTSCIENTIST + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -5399,22 +5407,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INSTRUMENTSCIENTIST matching the given ID + summary: Update InstrumentScientists by id tags: - InstrumentScientists - delete: - description: Updates INSTRUMENTSCIENTIST with the specified ID with details - provided in the request body + get: + description: Retrieves a list of INSTRUMENTSCIENTIST objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + description: Success - the matching INSTRUMENTSCIENTIST '400': description: Bad request - Something was wrong with the request '401': @@ -5424,33 +5435,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InstrumentScientists by id + summary: Find the INSTRUMENTSCIENTIST matching the given ID tags: - InstrumentScientists - patch: + delete: description: Updates INSTRUMENTSCIENTIST with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -5460,7 +5460,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InstrumentScientists by id + summary: Delete InstrumentScientists by id tags: - InstrumentScientists /instrumentscientists/count: @@ -5520,24 +5520,31 @@ paths: tags: - InstrumentScientists /instruments: - get: - description: Retrieves a list of INSTRUMENT objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates INSTRUMENT object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INSTRUMENT' + - items: + $ref: '#/components/schemas/INSTRUMENT' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INSTRUMENT' - type: array - description: Success - returns INSTRUMENT that satisfy the filters + oneOf: + - $ref: '#/components/schemas/INSTRUMENT' + - items: + $ref: '#/components/schemas/INSTRUMENT' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5547,7 +5554,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Instruments + summary: Update Instruments tags: - Instruments post: @@ -5587,31 +5594,24 @@ paths: summary: Create new Instruments tags: - Instruments - patch: - description: Updates INSTRUMENT object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INSTRUMENT' - - items: - $ref: '#/components/schemas/INSTRUMENT' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INSTRUMENT objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INSTRUMENT' - - items: - $ref: '#/components/schemas/INSTRUMENT' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INSTRUMENT' + type: array + description: Success - returns INSTRUMENT that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5621,26 +5621,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Instruments + summary: Get Instruments tags: - Instruments /instruments/{id}: - get: - description: Retrieves a list of INSTRUMENT objects + patch: + description: Updates INSTRUMENT with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INSTRUMENT' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INSTRUMENT' - description: Success - the matching INSTRUMENT + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -5650,22 +5658,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INSTRUMENT matching the given ID + summary: Update Instruments by id tags: - Instruments - delete: - description: Updates INSTRUMENT with the specified ID with details provided - in the request body + get: + description: Retrieves a list of INSTRUMENT objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INSTRUMENT' + description: Success - the matching INSTRUMENT '400': description: Bad request - Something was wrong with the request '401': @@ -5675,33 +5686,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Instruments by id + summary: Find the INSTRUMENT matching the given ID tags: - Instruments - patch: + delete: description: Updates INSTRUMENT with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INSTRUMENT' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INSTRUMENT' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -5711,7 +5711,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Instruments by id + summary: Delete Instruments by id tags: - Instruments /instruments/count: @@ -5770,24 +5770,31 @@ paths: tags: - Instruments /investigationgroups: - get: - description: Retrieves a list of INVESTIGATIONGROUP objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates INVESTIGATIONGROUP object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONGROUP' + - items: $ref: '#/components/schemas/INVESTIGATIONGROUP' type: array - description: Success - returns INVESTIGATIONGROUP that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONGROUP' + - items: + $ref: '#/components/schemas/INVESTIGATIONGROUP' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5797,7 +5804,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InvestigationGroups + summary: Update InvestigationGroups tags: - InvestigationGroups post: @@ -5837,31 +5844,24 @@ paths: summary: Create new InvestigationGroups tags: - InvestigationGroups - patch: - description: Updates INVESTIGATIONGROUP object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONGROUP' - - items: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATIONGROUP objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONGROUP' - - items: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATIONGROUP' + type: array + description: Success - returns INVESTIGATIONGROUP that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5871,26 +5871,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationGroups + summary: Get InvestigationGroups tags: - InvestigationGroups /investigationgroups/{id}: - get: - description: Retrieves a list of INVESTIGATIONGROUP objects + patch: + description: Updates INVESTIGATIONGROUP with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONGROUP' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATIONGROUP' - description: Success - the matching INVESTIGATIONGROUP + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -5900,22 +5908,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATIONGROUP matching the given ID + summary: Update InvestigationGroups by id tags: - InvestigationGroups - delete: - description: Updates INVESTIGATIONGROUP with the specified ID with details provided - in the request body + get: + description: Retrieves a list of INVESTIGATIONGROUP objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONGROUP' + description: Success - the matching INVESTIGATIONGROUP '400': description: Bad request - Something was wrong with the request '401': @@ -5925,33 +5936,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InvestigationGroups by id + summary: Find the INVESTIGATIONGROUP matching the given ID tags: - InvestigationGroups - patch: + delete: description: Updates INVESTIGATIONGROUP with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -5961,7 +5961,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationGroups by id + summary: Delete InvestigationGroups by id tags: - InvestigationGroups /investigationgroups/count: @@ -6021,25 +6021,31 @@ paths: tags: - InvestigationGroups /investigationinstruments: - get: - description: Retrieves a list of INVESTIGATIONINSTRUMENT objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates INVESTIGATIONINSTRUMENT object(s) with details provided + in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + - items: + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - type: array - description: Success - returns INVESTIGATIONINSTRUMENT that satisfy the - filters + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + - items: + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6049,7 +6055,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InvestigationInstruments + summary: Update InvestigationInstruments tags: - InvestigationInstruments post: @@ -6089,31 +6095,25 @@ paths: summary: Create new InvestigationInstruments tags: - InvestigationInstruments - patch: - description: Updates INVESTIGATIONINSTRUMENT object(s) with details provided - in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - - items: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATIONINSTRUMENT objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - - items: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + type: array + description: Success - returns INVESTIGATIONINSTRUMENT that satisfy the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -6123,26 +6123,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationInstruments + summary: Get InvestigationInstruments tags: - InvestigationInstruments /investigationinstruments/{id}: - get: - description: Retrieves a list of INVESTIGATIONINSTRUMENT objects + patch: + description: Updates INVESTIGATIONINSTRUMENT with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - description: Success - the matching INVESTIGATIONINSTRUMENT + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -6152,22 +6160,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATIONINSTRUMENT matching the given ID + summary: Update InvestigationInstruments by id tags: - InvestigationInstruments - delete: - description: Updates INVESTIGATIONINSTRUMENT with the specified ID with details - provided in the request body + get: + description: Retrieves a list of INVESTIGATIONINSTRUMENT objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + description: Success - the matching INVESTIGATIONINSTRUMENT '400': description: Bad request - Something was wrong with the request '401': @@ -6177,33 +6188,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InvestigationInstruments by id + summary: Find the INVESTIGATIONINSTRUMENT matching the given ID tags: - InvestigationInstruments - patch: + delete: description: Updates INVESTIGATIONINSTRUMENT with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -6213,7 +6213,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationInstruments by id + summary: Delete InvestigationInstruments by id tags: - InvestigationInstruments /investigationinstruments/count: @@ -6274,24 +6274,31 @@ paths: tags: - InvestigationInstruments /investigationparameters: - get: - description: Retrieves a list of INVESTIGATIONPARAMETER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates INVESTIGATIONPARAMETER object(s) with details provided + in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + - items: + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - type: array - description: Success - returns INVESTIGATIONPARAMETER that satisfy the filters + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + - items: + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6301,7 +6308,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InvestigationParameters + summary: Update InvestigationParameters tags: - InvestigationParameters post: @@ -6341,31 +6348,24 @@ paths: summary: Create new InvestigationParameters tags: - InvestigationParameters - patch: - description: Updates INVESTIGATIONPARAMETER object(s) with details provided - in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - - items: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATIONPARAMETER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - - items: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + type: array + description: Success - returns INVESTIGATIONPARAMETER that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -6375,26 +6375,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationParameters + summary: Get InvestigationParameters tags: - InvestigationParameters /investigationparameters/{id}: - get: - description: Retrieves a list of INVESTIGATIONPARAMETER objects + patch: + description: Updates INVESTIGATIONPARAMETER with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - description: Success - the matching INVESTIGATIONPARAMETER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -6404,22 +6412,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATIONPARAMETER matching the given ID + summary: Update InvestigationParameters by id tags: - InvestigationParameters - delete: - description: Updates INVESTIGATIONPARAMETER with the specified ID with details - provided in the request body + get: + description: Retrieves a list of INVESTIGATIONPARAMETER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + description: Success - the matching INVESTIGATIONPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -6429,33 +6440,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InvestigationParameters by id + summary: Find the INVESTIGATIONPARAMETER matching the given ID tags: - InvestigationParameters - patch: + delete: description: Updates INVESTIGATIONPARAMETER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -6465,7 +6465,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationParameters by id + summary: Delete InvestigationParameters by id tags: - InvestigationParameters /investigationparameters/count: @@ -6526,24 +6526,31 @@ paths: tags: - InvestigationParameters /investigationtypes: - get: - description: Retrieves a list of INVESTIGATIONTYPE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates INVESTIGATIONTYPE object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONTYPE' + - items: + $ref: '#/components/schemas/INVESTIGATIONTYPE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - type: array - description: Success - returns INVESTIGATIONTYPE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONTYPE' + - items: + $ref: '#/components/schemas/INVESTIGATIONTYPE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6553,7 +6560,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InvestigationTypes + summary: Update InvestigationTypes tags: - InvestigationTypes post: @@ -6593,31 +6600,24 @@ paths: summary: Create new InvestigationTypes tags: - InvestigationTypes - patch: - description: Updates INVESTIGATIONTYPE object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONTYPE' - - items: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATIONTYPE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONTYPE' - - items: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATIONTYPE' + type: array + description: Success - returns INVESTIGATIONTYPE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -6627,26 +6627,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationTypes + summary: Get InvestigationTypes tags: - InvestigationTypes /investigationtypes/{id}: - get: - description: Retrieves a list of INVESTIGATIONTYPE objects + patch: + description: Updates INVESTIGATIONTYPE with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONTYPE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATIONTYPE' - description: Success - the matching INVESTIGATIONTYPE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -6656,22 +6664,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATIONTYPE matching the given ID + summary: Update InvestigationTypes by id tags: - InvestigationTypes - delete: - description: Updates INVESTIGATIONTYPE with the specified ID with details provided - in the request body + get: + description: Retrieves a list of INVESTIGATIONTYPE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONTYPE' + description: Success - the matching INVESTIGATIONTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -6681,33 +6692,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InvestigationTypes by id + summary: Find the INVESTIGATIONTYPE matching the given ID tags: - InvestigationTypes - patch: + delete: description: Updates INVESTIGATIONTYPE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -6717,7 +6717,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationTypes by id + summary: Delete InvestigationTypes by id tags: - InvestigationTypes /investigationtypes/count: @@ -6777,24 +6777,31 @@ paths: tags: - InvestigationTypes /investigationusers: - get: - description: Retrieves a list of INVESTIGATIONUSER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates INVESTIGATIONUSER object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONUSER' + - items: $ref: '#/components/schemas/INVESTIGATIONUSER' type: array - description: Success - returns INVESTIGATIONUSER that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATIONUSER' + - items: + $ref: '#/components/schemas/INVESTIGATIONUSER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6804,7 +6811,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get InvestigationUsers + summary: Update InvestigationUsers tags: - InvestigationUsers post: @@ -6844,31 +6851,24 @@ paths: summary: Create new InvestigationUsers tags: - InvestigationUsers - patch: - description: Updates INVESTIGATIONUSER object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONUSER' - - items: - $ref: '#/components/schemas/INVESTIGATIONUSER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATIONUSER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATIONUSER' - - items: - $ref: '#/components/schemas/INVESTIGATIONUSER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATIONUSER' + type: array + description: Success - returns INVESTIGATIONUSER that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -6878,26 +6878,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationUsers + summary: Get InvestigationUsers tags: - InvestigationUsers /investigationusers/{id}: - get: - description: Retrieves a list of INVESTIGATIONUSER objects + patch: + description: Updates INVESTIGATIONUSER with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONUSER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATIONUSER' - description: Success - the matching INVESTIGATIONUSER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -6907,22 +6915,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATIONUSER matching the given ID + summary: Update InvestigationUsers by id tags: - InvestigationUsers - delete: - description: Updates INVESTIGATIONUSER with the specified ID with details provided - in the request body + get: + description: Retrieves a list of INVESTIGATIONUSER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATIONUSER' + description: Success - the matching INVESTIGATIONUSER '400': description: Bad request - Something was wrong with the request '401': @@ -6932,33 +6943,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete InvestigationUsers by id + summary: Find the INVESTIGATIONUSER matching the given ID tags: - InvestigationUsers - patch: + delete: description: Updates INVESTIGATIONUSER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONUSER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATIONUSER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -6968,7 +6968,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update InvestigationUsers by id + summary: Delete InvestigationUsers by id tags: - InvestigationUsers /investigationusers/count: @@ -7028,24 +7028,31 @@ paths: tags: - InvestigationUsers /investigations: - get: - description: Retrieves a list of INVESTIGATION objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates INVESTIGATION object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/INVESTIGATION' + - items: + $ref: '#/components/schemas/INVESTIGATION' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATION' - type: array - description: Success - returns INVESTIGATION that satisfy the filters + oneOf: + - $ref: '#/components/schemas/INVESTIGATION' + - items: + $ref: '#/components/schemas/INVESTIGATION' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7055,7 +7062,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Investigations + summary: Update Investigations tags: - Investigations post: @@ -7095,31 +7102,24 @@ paths: summary: Create new Investigations tags: - Investigations - patch: - description: Updates INVESTIGATION object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATION' - - items: - $ref: '#/components/schemas/INVESTIGATION' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of INVESTIGATION objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/INVESTIGATION' - - items: - $ref: '#/components/schemas/INVESTIGATION' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/INVESTIGATION' + type: array + description: Success - returns INVESTIGATION that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7129,26 +7129,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Investigations + summary: Get Investigations tags: - Investigations /investigations/{id}: - get: - description: Retrieves a list of INVESTIGATION objects + patch: + description: Updates INVESTIGATION with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATION' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/INVESTIGATION' - description: Success - the matching INVESTIGATION + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -7158,22 +7166,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the INVESTIGATION matching the given ID + summary: Update Investigations by id tags: - Investigations - delete: - description: Updates INVESTIGATION with the specified ID with details provided - in the request body + get: + description: Retrieves a list of INVESTIGATION objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/INVESTIGATION' + description: Success - the matching INVESTIGATION '400': description: Bad request - Something was wrong with the request '401': @@ -7183,33 +7194,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Investigations by id + summary: Find the INVESTIGATION matching the given ID tags: - Investigations - patch: + delete: description: Updates INVESTIGATION with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATION' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/INVESTIGATION' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -7219,7 +7219,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Investigations by id + summary: Delete Investigations by id tags: - Investigations /investigations/count: @@ -7278,24 +7278,30 @@ paths: tags: - Investigations /jobs: - get: - description: Retrieves a list of JOB objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: + patch: + description: Updates JOB object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/JOB' + - items: + $ref: '#/components/schemas/JOB' + type: array + description: The values to use to update the object(s) with + required: true + responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/JOB' - type: array - description: Success - returns JOB that satisfy the filters + oneOf: + - $ref: '#/components/schemas/JOB' + - items: + $ref: '#/components/schemas/JOB' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7305,7 +7311,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Jobs + summary: Update Jobs tags: - Jobs post: @@ -7345,30 +7351,24 @@ paths: summary: Create new Jobs tags: - Jobs - patch: - description: Updates JOB object(s) with details provided in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/JOB' - - items: - $ref: '#/components/schemas/JOB' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of JOB objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/JOB' - - items: - $ref: '#/components/schemas/JOB' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/JOB' + type: array + description: Success - returns JOB that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7378,26 +7378,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Jobs + summary: Get Jobs tags: - Jobs /jobs/{id}: - get: - description: Retrieves a list of JOB objects + patch: + description: Updates JOB with the specified ID with details provided in the + request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/JOB' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/JOB' - description: Success - the matching JOB + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -7407,22 +7415,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the JOB matching the given ID + summary: Update Jobs by id tags: - Jobs - delete: - description: Updates JOB with the specified ID with details provided in the - request body + get: + description: Retrieves a list of JOB objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/JOB' + description: Success - the matching JOB '400': description: Bad request - Something was wrong with the request '401': @@ -7432,33 +7443,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Jobs by id + summary: Find the JOB matching the given ID tags: - Jobs - patch: + delete: description: Updates JOB with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/JOB' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/JOB' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -7468,7 +7468,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Jobs by id + summary: Delete Jobs by id tags: - Jobs /jobs/count: @@ -7527,24 +7527,31 @@ paths: tags: - Jobs /keywords: - get: - description: Retrieves a list of KEYWORD objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates KEYWORD object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/KEYWORD' + - items: + $ref: '#/components/schemas/KEYWORD' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/KEYWORD' - type: array - description: Success - returns KEYWORD that satisfy the filters + oneOf: + - $ref: '#/components/schemas/KEYWORD' + - items: + $ref: '#/components/schemas/KEYWORD' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7554,7 +7561,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Keywords + summary: Update Keywords tags: - Keywords post: @@ -7594,31 +7601,24 @@ paths: summary: Create new Keywords tags: - Keywords - patch: - description: Updates KEYWORD object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/KEYWORD' - - items: - $ref: '#/components/schemas/KEYWORD' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of KEYWORD objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/KEYWORD' - - items: - $ref: '#/components/schemas/KEYWORD' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/KEYWORD' + type: array + description: Success - returns KEYWORD that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7628,26 +7628,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Keywords + summary: Get Keywords tags: - Keywords /keywords/{id}: - get: - description: Retrieves a list of KEYWORD objects + patch: + description: Updates KEYWORD with the specified ID with details provided in + the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/KEYWORD' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/KEYWORD' - description: Success - the matching KEYWORD + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -7657,22 +7665,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the KEYWORD matching the given ID + summary: Update Keywords by id tags: - Keywords - delete: - description: Updates KEYWORD with the specified ID with details provided in - the request body + get: + description: Retrieves a list of KEYWORD objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/KEYWORD' + description: Success - the matching KEYWORD '400': description: Bad request - Something was wrong with the request '401': @@ -7682,33 +7693,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Keywords by id + summary: Find the KEYWORD matching the given ID tags: - Keywords - patch: + delete: description: Updates KEYWORD with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/KEYWORD' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/KEYWORD' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -7718,7 +7718,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Keywords by id + summary: Delete Keywords by id tags: - Keywords /keywords/count: @@ -7777,24 +7777,31 @@ paths: tags: - Keywords /parametertypes: - get: - description: Retrieves a list of PARAMETERTYPE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates PARAMETERTYPE object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PARAMETERTYPE' + - items: $ref: '#/components/schemas/PARAMETERTYPE' type: array - description: Success - returns PARAMETERTYPE that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PARAMETERTYPE' + - items: + $ref: '#/components/schemas/PARAMETERTYPE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7804,7 +7811,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get ParameterTypes + summary: Update ParameterTypes tags: - ParameterTypes post: @@ -7844,31 +7851,24 @@ paths: summary: Create new ParameterTypes tags: - ParameterTypes - patch: - description: Updates PARAMETERTYPE object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/PARAMETERTYPE' - - items: - $ref: '#/components/schemas/PARAMETERTYPE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of PARAMETERTYPE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/PARAMETERTYPE' - - items: - $ref: '#/components/schemas/PARAMETERTYPE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/PARAMETERTYPE' + type: array + description: Success - returns PARAMETERTYPE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7878,26 +7878,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update ParameterTypes + summary: Get ParameterTypes tags: - ParameterTypes /parametertypes/{id}: - get: - description: Retrieves a list of PARAMETERTYPE objects + patch: + description: Updates PARAMETERTYPE with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PARAMETERTYPE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/PARAMETERTYPE' - description: Success - the matching PARAMETERTYPE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -7907,22 +7915,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the PARAMETERTYPE matching the given ID + summary: Update ParameterTypes by id tags: - ParameterTypes - delete: - description: Updates PARAMETERTYPE with the specified ID with details provided - in the request body + get: + description: Retrieves a list of PARAMETERTYPE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PARAMETERTYPE' + description: Success - the matching PARAMETERTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -7932,33 +7943,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete ParameterTypes by id + summary: Find the PARAMETERTYPE matching the given ID tags: - ParameterTypes - patch: + delete: description: Updates PARAMETERTYPE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/PARAMETERTYPE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/PARAMETERTYPE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -7968,7 +7968,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update ParameterTypes by id + summary: Delete ParameterTypes by id tags: - ParameterTypes /parametertypes/count: @@ -8027,24 +8027,31 @@ paths: tags: - ParameterTypes /permissiblestringvalues: - get: - description: Retrieves a list of PERMISSIBLESTRINGVALUE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates PERMISSIBLESTRINGVALUE object(s) with details provided + in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + - items: + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - type: array - description: Success - returns PERMISSIBLESTRINGVALUE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + - items: + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8054,7 +8061,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get PermissibleStringValues + summary: Update PermissibleStringValues tags: - PermissibleStringValues post: @@ -8094,31 +8101,24 @@ paths: summary: Create new PermissibleStringValues tags: - PermissibleStringValues - patch: - description: Updates PERMISSIBLESTRINGVALUE object(s) with details provided - in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - - items: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of PERMISSIBLESTRINGVALUE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - - items: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + type: array + description: Success - returns PERMISSIBLESTRINGVALUE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -8128,26 +8128,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update PermissibleStringValues + summary: Get PermissibleStringValues tags: - PermissibleStringValues /permissiblestringvalues/{id}: - get: - description: Retrieves a list of PERMISSIBLESTRINGVALUE objects + patch: + description: Updates PERMISSIBLESTRINGVALUE with the specified ID with details + provided in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - description: Success - the matching PERMISSIBLESTRINGVALUE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -8157,22 +8165,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the PERMISSIBLESTRINGVALUE matching the given ID + summary: Update PermissibleStringValues by id tags: - PermissibleStringValues - delete: - description: Updates PERMISSIBLESTRINGVALUE with the specified ID with details - provided in the request body + get: + description: Retrieves a list of PERMISSIBLESTRINGVALUE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + description: Success - the matching PERMISSIBLESTRINGVALUE '400': description: Bad request - Something was wrong with the request '401': @@ -8182,33 +8193,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete PermissibleStringValues by id + summary: Find the PERMISSIBLESTRINGVALUE matching the given ID tags: - PermissibleStringValues - patch: + delete: description: Updates PERMISSIBLESTRINGVALUE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -8218,7 +8218,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update PermissibleStringValues by id + summary: Delete PermissibleStringValues by id tags: - PermissibleStringValues /permissiblestringvalues/count: @@ -8279,24 +8279,31 @@ paths: tags: - PermissibleStringValues /publicsteps: - get: - description: Retrieves a list of PUBLICSTEP objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' - responses: - '200': - content: - application/json: - schema: - items: + patch: + description: Updates PUBLICSTEP object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PUBLICSTEP' + - items: $ref: '#/components/schemas/PUBLICSTEP' type: array - description: Success - returns PUBLICSTEP that satisfy the filters + description: The values to use to update the object(s) with + required: true + responses: + '200': + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PUBLICSTEP' + - items: + $ref: '#/components/schemas/PUBLICSTEP' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8306,7 +8313,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get PublicSteps + summary: Update PublicSteps tags: - PublicSteps post: @@ -8346,31 +8353,24 @@ paths: summary: Create new PublicSteps tags: - PublicSteps - patch: - description: Updates PUBLICSTEP object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/PUBLICSTEP' - - items: - $ref: '#/components/schemas/PUBLICSTEP' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of PUBLICSTEP objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/PUBLICSTEP' - - items: - $ref: '#/components/schemas/PUBLICSTEP' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/PUBLICSTEP' + type: array + description: Success - returns PUBLICSTEP that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -8380,26 +8380,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update PublicSteps + summary: Get PublicSteps tags: - PublicSteps /publicsteps/{id}: - get: - description: Retrieves a list of PUBLICSTEP objects + patch: + description: Updates PUBLICSTEP with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PUBLICSTEP' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/PUBLICSTEP' - description: Success - the matching PUBLICSTEP + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -8409,22 +8417,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the PUBLICSTEP matching the given ID + summary: Update PublicSteps by id tags: - PublicSteps - delete: - description: Updates PUBLICSTEP with the specified ID with details provided - in the request body + get: + description: Retrieves a list of PUBLICSTEP objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PUBLICSTEP' + description: Success - the matching PUBLICSTEP '400': description: Bad request - Something was wrong with the request '401': @@ -8434,33 +8445,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete PublicSteps by id + summary: Find the PUBLICSTEP matching the given ID tags: - PublicSteps - patch: + delete: description: Updates PUBLICSTEP with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/PUBLICSTEP' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/PUBLICSTEP' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -8470,7 +8470,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update PublicSteps by id + summary: Delete PublicSteps by id tags: - PublicSteps /publicsteps/count: @@ -8529,24 +8529,31 @@ paths: tags: - PublicSteps /publications: - get: - description: Retrieves a list of PUBLICATION objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates PUBLICATION object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/PUBLICATION' + - items: + $ref: '#/components/schemas/PUBLICATION' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/PUBLICATION' - type: array - description: Success - returns PUBLICATION that satisfy the filters + oneOf: + - $ref: '#/components/schemas/PUBLICATION' + - items: + $ref: '#/components/schemas/PUBLICATION' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8556,7 +8563,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Publications + summary: Update Publications tags: - Publications post: @@ -8596,31 +8603,24 @@ paths: summary: Create new Publications tags: - Publications - patch: - description: Updates PUBLICATION object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/PUBLICATION' - - items: - $ref: '#/components/schemas/PUBLICATION' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of PUBLICATION objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/PUBLICATION' - - items: - $ref: '#/components/schemas/PUBLICATION' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/PUBLICATION' + type: array + description: Success - returns PUBLICATION that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -8630,26 +8630,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Publications + summary: Get Publications tags: - Publications /publications/{id}: - get: - description: Retrieves a list of PUBLICATION objects + patch: + description: Updates PUBLICATION with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PUBLICATION' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/PUBLICATION' - description: Success - the matching PUBLICATION + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -8659,22 +8667,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the PUBLICATION matching the given ID + summary: Update Publications by id tags: - Publications - delete: - description: Updates PUBLICATION with the specified ID with details provided - in the request body + get: + description: Retrieves a list of PUBLICATION objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PUBLICATION' + description: Success - the matching PUBLICATION '400': description: Bad request - Something was wrong with the request '401': @@ -8684,33 +8695,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Publications by id + summary: Find the PUBLICATION matching the given ID tags: - Publications - patch: + delete: description: Updates PUBLICATION with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/PUBLICATION' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/PUBLICATION' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -8720,7 +8720,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Publications by id + summary: Delete Publications by id tags: - Publications /publications/count: @@ -8779,24 +8779,31 @@ paths: tags: - Publications /relateddatafiles: - get: - description: Retrieves a list of RELATEDDATAFILE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates RELATEDDATAFILE object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/RELATEDDATAFILE' + - items: + $ref: '#/components/schemas/RELATEDDATAFILE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/RELATEDDATAFILE' - type: array - description: Success - returns RELATEDDATAFILE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/RELATEDDATAFILE' + - items: + $ref: '#/components/schemas/RELATEDDATAFILE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8806,7 +8813,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get RelatedDatafiles + summary: Update RelatedDatafiles tags: - RelatedDatafiles post: @@ -8846,31 +8853,61 @@ paths: summary: Create new RelatedDatafiles tags: - RelatedDatafiles + get: + description: Retrieves a list of RELATEDDATAFILE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' + responses: + '200': + content: + application/json: + schema: + items: + $ref: '#/components/schemas/RELATEDDATAFILE' + type: array + description: Success - returns RELATEDDATAFILE that satisfy the filters + '400': + description: Bad request - Something was wrong with the request + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header + '403': + description: Forbidden - The session ID provided is invalid + '404': + description: No such record - Unable to find a record in the database + summary: Get RelatedDatafiles + tags: + - RelatedDatafiles + /relateddatafiles/{id}: patch: - description: Updates RELATEDDATAFILE object(s) with details provided in the - request body + description: Updates RELATEDDATAFILE with the specified ID with details provided + in the request body + parameters: + - description: The id of the entity to update + in: path + name: ID + required: true + schema: + type: integer requestBody: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/RELATEDDATAFILE' - - items: - $ref: '#/components/schemas/RELATEDDATAFILE' - type: array + $ref: '#/components/schemas/RELATEDDATAFILE' description: The values to use to update the object(s) with required: true responses: '200': content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/RELATEDDATAFILE' - - items: - $ref: '#/components/schemas/RELATEDDATAFILE' - type: array - description: Success - returns the updated object(s) + application/json: + schema: + $ref: '#/components/schemas/RELATEDDATAFILE' + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -8880,10 +8917,9 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update RelatedDatafiles + summary: Update RelatedDatafiles by id tags: - RelatedDatafiles - /relateddatafiles/{id}: get: description: Retrieves a list of RELATEDDATAFILE objects parameters: @@ -8937,42 +8973,6 @@ paths: summary: Delete RelatedDatafiles by id tags: - RelatedDatafiles - patch: - description: Updates RELATEDDATAFILE with the specified ID with details provided - in the request body - parameters: - - description: The id of the entity to update - in: path - name: ID - required: true - schema: - type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RELATEDDATAFILE' - description: The values to use to update the object(s) with - required: true - responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/RELATEDDATAFILE' - description: Success - returns the updated object - '400': - description: Bad request - Something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Update RelatedDatafiles by id - tags: - - RelatedDatafiles /relateddatafiles/count: get: description: Return the count of the RELATEDDATAFILE objects that would be retrieved @@ -9030,24 +9030,30 @@ paths: tags: - RelatedDatafiles /rules: - get: - description: Retrieves a list of RULE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates RULE object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/RULE' + - items: + $ref: '#/components/schemas/RULE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/RULE' - type: array - description: Success - returns RULE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/RULE' + - items: + $ref: '#/components/schemas/RULE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9057,7 +9063,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Rules + summary: Update Rules tags: - Rules post: @@ -9097,30 +9103,24 @@ paths: summary: Create new Rules tags: - Rules - patch: - description: Updates RULE object(s) with details provided in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/RULE' - - items: - $ref: '#/components/schemas/RULE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of RULE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/RULE' - - items: - $ref: '#/components/schemas/RULE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/RULE' + type: array + description: Success - returns RULE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9130,26 +9130,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Rules + summary: Get Rules tags: - Rules /rules/{id}: - get: - description: Retrieves a list of RULE objects + patch: + description: Updates RULE with the specified ID with details provided in the + request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/RULE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RULE' - description: Success - the matching RULE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -9159,22 +9167,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the RULE matching the given ID + summary: Update Rules by id tags: - Rules - delete: - description: Updates RULE with the specified ID with details provided in the - request body + get: + description: Retrieves a list of RULE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/RULE' + description: Success - the matching RULE '400': description: Bad request - Something was wrong with the request '401': @@ -9184,33 +9195,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Rules by id + summary: Find the RULE matching the given ID tags: - Rules - patch: + delete: description: Updates RULE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/RULE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/RULE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -9220,7 +9220,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Rules by id + summary: Delete Rules by id tags: - Rules /rules/count: @@ -9279,24 +9279,31 @@ paths: tags: - Rules /sampleparameters: - get: - description: Retrieves a list of SAMPLEPARAMETER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates SAMPLEPARAMETER object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/SAMPLEPARAMETER' + - items: + $ref: '#/components/schemas/SAMPLEPARAMETER' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLEPARAMETER' - type: array - description: Success - returns SAMPLEPARAMETER that satisfy the filters + oneOf: + - $ref: '#/components/schemas/SAMPLEPARAMETER' + - items: + $ref: '#/components/schemas/SAMPLEPARAMETER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9306,7 +9313,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get SampleParameters + summary: Update SampleParameters tags: - SampleParameters post: @@ -9346,18 +9353,52 @@ paths: summary: Create new SampleParameters tags: - SampleParameters + get: + description: Retrieves a list of SAMPLEPARAMETER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' + responses: + '200': + content: + application/json: + schema: + items: + $ref: '#/components/schemas/SAMPLEPARAMETER' + type: array + description: Success - returns SAMPLEPARAMETER that satisfy the filters + '400': + description: Bad request - Something was wrong with the request + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header + '403': + description: Forbidden - The session ID provided is invalid + '404': + description: No such record - Unable to find a record in the database + summary: Get SampleParameters + tags: + - SampleParameters + /sampleparameters/{id}: patch: - description: Updates SAMPLEPARAMETER object(s) with details provided in the - request body + description: Updates SAMPLEPARAMETER with the specified ID with details provided + in the request body + parameters: + - description: The id of the entity to update + in: path + name: ID + required: true + schema: + type: integer requestBody: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/SAMPLEPARAMETER' - - items: - $ref: '#/components/schemas/SAMPLEPARAMETER' - type: array + $ref: '#/components/schemas/SAMPLEPARAMETER' description: The values to use to update the object(s) with required: true responses: @@ -9365,12 +9406,8 @@ paths: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/SAMPLEPARAMETER' - - items: - $ref: '#/components/schemas/SAMPLEPARAMETER' - type: array - description: Success - returns the updated object(s) + $ref: '#/components/schemas/SAMPLEPARAMETER' + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -9380,10 +9417,9 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update SampleParameters + summary: Update SampleParameters by id tags: - SampleParameters - /sampleparameters/{id}: get: description: Retrieves a list of SAMPLEPARAMETER objects parameters: @@ -9437,42 +9473,6 @@ paths: summary: Delete SampleParameters by id tags: - SampleParameters - patch: - description: Updates SAMPLEPARAMETER with the specified ID with details provided - in the request body - parameters: - - description: The id of the entity to update - in: path - name: ID - required: true - schema: - type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLEPARAMETER' - description: The values to use to update the object(s) with - required: true - responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLEPARAMETER' - description: Success - returns the updated object - '400': - description: Bad request - Something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Update SampleParameters by id - tags: - - SampleParameters /sampleparameters/count: get: description: Return the count of the SAMPLEPARAMETER objects that would be retrieved @@ -9530,24 +9530,31 @@ paths: tags: - SampleParameters /sampletypes: - get: - description: Retrieves a list of SAMPLETYPE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates SAMPLETYPE object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/SAMPLETYPE' + - items: + $ref: '#/components/schemas/SAMPLETYPE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLETYPE' - type: array - description: Success - returns SAMPLETYPE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/SAMPLETYPE' + - items: + $ref: '#/components/schemas/SAMPLETYPE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9557,7 +9564,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get SampleTypes + summary: Update SampleTypes tags: - SampleTypes post: @@ -9597,31 +9604,24 @@ paths: summary: Create new SampleTypes tags: - SampleTypes - patch: - description: Updates SAMPLETYPE object(s) with details provided in the request - body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/SAMPLETYPE' - - items: - $ref: '#/components/schemas/SAMPLETYPE' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of SAMPLETYPE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/SAMPLETYPE' - - items: - $ref: '#/components/schemas/SAMPLETYPE' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/SAMPLETYPE' + type: array + description: Success - returns SAMPLETYPE that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9631,26 +9631,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update SampleTypes + summary: Get SampleTypes tags: - SampleTypes /sampletypes/{id}: - get: - description: Retrieves a list of SAMPLETYPE objects + patch: + description: Updates SAMPLETYPE with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/SAMPLETYPE' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SAMPLETYPE' - description: Success - the matching SAMPLETYPE + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -9660,22 +9668,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the SAMPLETYPE matching the given ID + summary: Update SampleTypes by id tags: - SampleTypes - delete: - description: Updates SAMPLETYPE with the specified ID with details provided - in the request body + get: + description: Retrieves a list of SAMPLETYPE objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/SAMPLETYPE' + description: Success - the matching SAMPLETYPE '400': description: Bad request - Something was wrong with the request '401': @@ -9685,33 +9696,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete SampleTypes by id + summary: Find the SAMPLETYPE matching the given ID tags: - SampleTypes - patch: + delete: description: Updates SAMPLETYPE with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLETYPE' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLETYPE' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -9721,7 +9721,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update SampleTypes by id + summary: Delete SampleTypes by id tags: - SampleTypes /sampletypes/count: @@ -9780,24 +9780,30 @@ paths: tags: - SampleTypes /samples: - get: - description: Retrieves a list of SAMPLE objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates SAMPLE object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/SAMPLE' + - items: + $ref: '#/components/schemas/SAMPLE' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLE' - type: array - description: Success - returns SAMPLE that satisfy the filters + oneOf: + - $ref: '#/components/schemas/SAMPLE' + - items: + $ref: '#/components/schemas/SAMPLE' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9807,7 +9813,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Samples + summary: Update Samples tags: - Samples post: @@ -9847,30 +9853,61 @@ paths: summary: Create new Samples tags: - Samples + get: + description: Retrieves a list of SAMPLE objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' + responses: + '200': + content: + application/json: + schema: + items: + $ref: '#/components/schemas/SAMPLE' + type: array + description: Success - returns SAMPLE that satisfy the filters + '400': + description: Bad request - Something was wrong with the request + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header + '403': + description: Forbidden - The session ID provided is invalid + '404': + description: No such record - Unable to find a record in the database + summary: Get Samples + tags: + - Samples + /samples/{id}: patch: - description: Updates SAMPLE object(s) with details provided in the request body + description: Updates SAMPLE with the specified ID with details provided in the + request body + parameters: + - description: The id of the entity to update + in: path + name: ID + required: true + schema: + type: integer requestBody: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/SAMPLE' - - items: - $ref: '#/components/schemas/SAMPLE' - type: array + $ref: '#/components/schemas/SAMPLE' description: The values to use to update the object(s) with required: true responses: '200': content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/SAMPLE' - - items: - $ref: '#/components/schemas/SAMPLE' - type: array - description: Success - returns the updated object(s) + application/json: + schema: + $ref: '#/components/schemas/SAMPLE' + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -9880,10 +9917,9 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Samples + summary: Update Samples by id tags: - Samples - /samples/{id}: get: description: Retrieves a list of SAMPLE objects parameters: @@ -9937,42 +9973,6 @@ paths: summary: Delete Samples by id tags: - Samples - patch: - description: Updates SAMPLE with the specified ID with details provided in the - request body - parameters: - - description: The id of the entity to update - in: path - name: ID - required: true - schema: - type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLE' - description: The values to use to update the object(s) with - required: true - responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/SAMPLE' - description: Success - returns the updated object - '400': - description: Bad request - Something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Update Samples by id - tags: - - Samples /samples/count: get: description: Return the count of the SAMPLE objects that would be retrieved @@ -10029,24 +10029,30 @@ paths: tags: - Samples /shifts: - get: - description: Retrieves a list of SHIFT objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates SHIFT object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/SHIFT' + - items: + $ref: '#/components/schemas/SHIFT' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/SHIFT' - type: array - description: Success - returns SHIFT that satisfy the filters + oneOf: + - $ref: '#/components/schemas/SHIFT' + - items: + $ref: '#/components/schemas/SHIFT' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10056,7 +10062,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Shifts + summary: Update Shifts tags: - Shifts post: @@ -10096,30 +10102,24 @@ paths: summary: Create new Shifts tags: - Shifts - patch: - description: Updates SHIFT object(s) with details provided in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/SHIFT' - - items: - $ref: '#/components/schemas/SHIFT' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of SHIFT objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/SHIFT' - - items: - $ref: '#/components/schemas/SHIFT' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/SHIFT' + type: array + description: Success - returns SHIFT that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10129,26 +10129,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Shifts + summary: Get Shifts tags: - Shifts /shifts/{id}: - get: - description: Retrieves a list of SHIFT objects + patch: + description: Updates SHIFT with the specified ID with details provided in the + request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/SHIFT' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SHIFT' - description: Success - the matching SHIFT + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -10158,22 +10166,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the SHIFT matching the given ID + summary: Update Shifts by id tags: - Shifts - delete: - description: Updates SHIFT with the specified ID with details provided in the - request body + get: + description: Retrieves a list of SHIFT objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/SHIFT' + description: Success - the matching SHIFT '400': description: Bad request - Something was wrong with the request '401': @@ -10183,33 +10194,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Shifts by id + summary: Find the SHIFT matching the given ID tags: - Shifts - patch: + delete: description: Updates SHIFT with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/SHIFT' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/SHIFT' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -10219,7 +10219,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Shifts by id + summary: Delete Shifts by id tags: - Shifts /shifts/count: @@ -10278,24 +10278,30 @@ paths: tags: - Shifts /studies: - get: - description: Retrieves a list of STUDY objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates STUDY object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/STUDY' + - items: + $ref: '#/components/schemas/STUDY' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/STUDY' - type: array - description: Success - returns STUDY that satisfy the filters + oneOf: + - $ref: '#/components/schemas/STUDY' + - items: + $ref: '#/components/schemas/STUDY' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10305,7 +10311,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Studies + summary: Update Studies tags: - Studies post: @@ -10345,17 +10351,52 @@ paths: summary: Create new Studies tags: - Studies + get: + description: Retrieves a list of STUDY objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' + responses: + '200': + content: + application/json: + schema: + items: + $ref: '#/components/schemas/STUDY' + type: array + description: Success - returns STUDY that satisfy the filters + '400': + description: Bad request - Something was wrong with the request + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header + '403': + description: Forbidden - The session ID provided is invalid + '404': + description: No such record - Unable to find a record in the database + summary: Get Studies + tags: + - Studies + /studies/{id}: patch: - description: Updates STUDY object(s) with details provided in the request body + description: Updates STUDY with the specified ID with details provided in the + request body + parameters: + - description: The id of the entity to update + in: path + name: ID + required: true + schema: + type: integer requestBody: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/STUDY' - - items: - $ref: '#/components/schemas/STUDY' - type: array + $ref: '#/components/schemas/STUDY' description: The values to use to update the object(s) with required: true responses: @@ -10363,12 +10404,8 @@ paths: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/STUDY' - - items: - $ref: '#/components/schemas/STUDY' - type: array - description: Success - returns the updated object(s) + $ref: '#/components/schemas/STUDY' + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -10378,10 +10415,9 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Studies + summary: Update Studies by id tags: - Studies - /studies/{id}: get: description: Retrieves a list of STUDY objects parameters: @@ -10435,42 +10471,6 @@ paths: summary: Delete Studies by id tags: - Studies - patch: - description: Updates STUDY with the specified ID with details provided in the - request body - parameters: - - description: The id of the entity to update - in: path - name: ID - required: true - schema: - type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/STUDY' - description: The values to use to update the object(s) with - required: true - responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/STUDY' - description: Success - returns the updated object - '400': - description: Bad request - Something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Update Studies by id - tags: - - Studies /studies/count: get: description: Return the count of the STUDY objects that would be retrieved given @@ -10527,24 +10527,31 @@ paths: tags: - Studies /studyinvestigations: - get: - description: Retrieves a list of STUDYINVESTIGATION objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates STUDYINVESTIGATION object(s) with details provided in the + request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/STUDYINVESTIGATION' + - items: + $ref: '#/components/schemas/STUDYINVESTIGATION' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/STUDYINVESTIGATION' - type: array - description: Success - returns STUDYINVESTIGATION that satisfy the filters + oneOf: + - $ref: '#/components/schemas/STUDYINVESTIGATION' + - items: + $ref: '#/components/schemas/STUDYINVESTIGATION' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10554,7 +10561,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get StudyInvestigations + summary: Update StudyInvestigations tags: - StudyInvestigations post: @@ -10594,31 +10601,24 @@ paths: summary: Create new StudyInvestigations tags: - StudyInvestigations - patch: - description: Updates STUDYINVESTIGATION object(s) with details provided in the - request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/STUDYINVESTIGATION' - - items: - $ref: '#/components/schemas/STUDYINVESTIGATION' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of STUDYINVESTIGATION objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/STUDYINVESTIGATION' - - items: - $ref: '#/components/schemas/STUDYINVESTIGATION' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/STUDYINVESTIGATION' + type: array + description: Success - returns STUDYINVESTIGATION that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10628,26 +10628,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update StudyInvestigations + summary: Get StudyInvestigations tags: - StudyInvestigations /studyinvestigations/{id}: - get: - description: Retrieves a list of STUDYINVESTIGATION objects + patch: + description: Updates STUDYINVESTIGATION with the specified ID with details provided + in the request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/STUDYINVESTIGATION' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/STUDYINVESTIGATION' - description: Success - the matching STUDYINVESTIGATION + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -10657,22 +10665,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the STUDYINVESTIGATION matching the given ID + summary: Update StudyInvestigations by id tags: - StudyInvestigations - delete: - description: Updates STUDYINVESTIGATION with the specified ID with details provided - in the request body + get: + description: Retrieves a list of STUDYINVESTIGATION objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/STUDYINVESTIGATION' + description: Success - the matching STUDYINVESTIGATION '400': description: Bad request - Something was wrong with the request '401': @@ -10682,33 +10693,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete StudyInvestigations by id + summary: Find the STUDYINVESTIGATION matching the given ID tags: - StudyInvestigations - patch: + delete: description: Updates STUDYINVESTIGATION with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/STUDYINVESTIGATION' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/STUDYINVESTIGATION' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -10718,7 +10718,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update StudyInvestigations by id + summary: Delete StudyInvestigations by id tags: - StudyInvestigations /studyinvestigations/count: @@ -10778,24 +10778,31 @@ paths: tags: - StudyInvestigations /usergroups: - get: - description: Retrieves a list of USERGROUP objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates USERGROUP object(s) with details provided in the request + body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/USERGROUP' + - items: + $ref: '#/components/schemas/USERGROUP' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/USERGROUP' - type: array - description: Success - returns USERGROUP that satisfy the filters + oneOf: + - $ref: '#/components/schemas/USERGROUP' + - items: + $ref: '#/components/schemas/USERGROUP' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10805,7 +10812,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get UserGroups + summary: Update UserGroups tags: - UserGroups post: @@ -10845,31 +10852,61 @@ paths: summary: Create new UserGroups tags: - UserGroups + get: + description: Retrieves a list of USERGROUP objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' + responses: + '200': + content: + application/json: + schema: + items: + $ref: '#/components/schemas/USERGROUP' + type: array + description: Success - returns USERGROUP that satisfy the filters + '400': + description: Bad request - Something was wrong with the request + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header + '403': + description: Forbidden - The session ID provided is invalid + '404': + description: No such record - Unable to find a record in the database + summary: Get UserGroups + tags: + - UserGroups + /usergroups/{id}: patch: - description: Updates USERGROUP object(s) with details provided in the request - body + description: Updates USERGROUP with the specified ID with details provided in + the request body + parameters: + - description: The id of the entity to update + in: path + name: ID + required: true + schema: + type: integer requestBody: content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/USERGROUP' - - items: - $ref: '#/components/schemas/USERGROUP' - type: array + $ref: '#/components/schemas/USERGROUP' description: The values to use to update the object(s) with required: true responses: '200': content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/USERGROUP' - - items: - $ref: '#/components/schemas/USERGROUP' - type: array - description: Success - returns the updated object(s) + application/json: + schema: + $ref: '#/components/schemas/USERGROUP' + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -10879,10 +10916,9 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update UserGroups + summary: Update UserGroups by id tags: - UserGroups - /usergroups/{id}: get: description: Retrieves a list of USERGROUP objects parameters: @@ -10936,42 +10972,6 @@ paths: summary: Delete UserGroups by id tags: - UserGroups - patch: - description: Updates USERGROUP with the specified ID with details provided in - the request body - parameters: - - description: The id of the entity to update - in: path - name: ID - required: true - schema: - type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/USERGROUP' - description: The values to use to update the object(s) with - required: true - responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/USERGROUP' - description: Success - returns the updated object - '400': - description: Bad request - Something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Update UserGroups by id - tags: - - UserGroups /usergroups/count: get: description: Return the count of the USERGROUP objects that would be retrieved @@ -11028,24 +11028,30 @@ paths: tags: - UserGroups /users: - get: - description: Retrieves a list of USER objects - parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + patch: + description: Updates USER object(s) with details provided in the request body + requestBody: + content: + application/json: + schema: + oneOf: + - $ref: '#/components/schemas/USER' + - items: + $ref: '#/components/schemas/USER' + type: array + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/USER' - type: array - description: Success - returns USER that satisfy the filters + oneOf: + - $ref: '#/components/schemas/USER' + - items: + $ref: '#/components/schemas/USER' + type: array + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -11055,7 +11061,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get Users + summary: Update Users tags: - Users post: @@ -11095,30 +11101,24 @@ paths: summary: Create new Users tags: - Users - patch: - description: Updates USER object(s) with details provided in the request body - requestBody: - content: - application/json: - schema: - oneOf: - - $ref: '#/components/schemas/USER' - - items: - $ref: '#/components/schemas/USER' - type: array - description: The values to use to update the object(s) with - required: true + get: + description: Retrieves a list of USER objects + parameters: + - $ref: '#/components/parameters/WHERE_FILTER' + - $ref: '#/components/parameters/ORDER_FILTER' + - $ref: '#/components/parameters/LIMIT_FILTER' + - $ref: '#/components/parameters/SKIP_FILTER' + - $ref: '#/components/parameters/DISTINCT_FILTER' + - $ref: '#/components/parameters/INCLUDE_FILTER' responses: '200': content: application/json: schema: - oneOf: - - $ref: '#/components/schemas/USER' - - items: - $ref: '#/components/schemas/USER' - type: array - description: Success - returns the updated object(s) + items: + $ref: '#/components/schemas/USER' + type: array + description: Success - returns USER that satisfy the filters '400': description: Bad request - Something was wrong with the request '401': @@ -11128,26 +11128,34 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Users + summary: Get Users tags: - Users /users/{id}: - get: - description: Retrieves a list of USER objects + patch: + description: Updates USER with the specified ID with details provided in the + request body parameters: - - description: The id of the entity to retrieve + - description: The id of the entity to update in: path name: ID required: true schema: type: integer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/USER' + description: The values to use to update the object(s) with + required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/USER' - description: Success - the matching USER + description: Success - returns the updated object '400': description: Bad request - Something was wrong with the request '401': @@ -11157,22 +11165,25 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Find the USER matching the given ID + summary: Update Users by id tags: - Users - delete: - description: Updates USER with the specified ID with details provided in the - request body + get: + description: Retrieves a list of USER objects parameters: - - description: The id of the entity to delete + - description: The id of the entity to retrieve in: path name: ID required: true schema: type: integer responses: - '204': - description: No Content - Object was successfully deleted + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/USER' + description: Success - the matching USER '400': description: Bad request - Something was wrong with the request '401': @@ -11182,33 +11193,22 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Delete Users by id + summary: Find the USER matching the given ID tags: - Users - patch: + delete: description: Updates USER with the specified ID with details provided in the request body parameters: - - description: The id of the entity to update + - description: The id of the entity to delete in: path name: ID required: true schema: type: integer - requestBody: - content: - application/json: - schema: - $ref: '#/components/schemas/USER' - description: The values to use to update the object(s) with - required: true responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/USER' - description: Success - returns the updated object + '204': + description: No Content - Object was successfully deleted '400': description: Bad request - Something was wrong with the request '401': @@ -11218,7 +11218,7 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Update Users by id + summary: Delete Users by id tags: - Users /users/count: @@ -11307,42 +11307,6 @@ paths: summary: Get session details tags: - Sessions - delete: - description: Deletes a users sessionID when they logout - responses: - '200': - description: Success - User's session was successfully deleted - '400': - description: Bad request - something was wrong with the request - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - '404': - description: Not Found - Unable to find session ID - summary: Delete session - tags: - - Sessions - put: - description: Refreshes a users session - responses: - '200': - content: - application/json: - schema: - description: Session ID - example: xxxxxx-yyyyyyy-zzzzzz - type: string - description: Success - the user's session ID that has been refreshed - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header - '403': - description: Forbidden - The session ID provided is invalid - summary: Refresh session - tags: - - Sessions post: description: Generates a sessionID if the user has correct credentials requestBody: @@ -11378,78 +11342,42 @@ paths: summary: Login tags: - Sessions - /users/{id}/investigations: - get: - description: Retrieve the investigations that a user of a given ID is an InvestigationUser - on, subject to filters. - parameters: - - description: The id of the user to retrieve the investigations of - in: path - name: ID - required: true - schema: - type: integer - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/ORDER_FILTER' - - $ref: '#/components/parameters/LIMIT_FILTER' - - $ref: '#/components/parameters/SKIP_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + put: + description: Refreshes a users session responses: '200': content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATION' - type: array - description: Success - returns a list of the user's investigations that - satisfy the filters - '400': - description: Bad request - Something was wrong with the request + description: Session ID + example: xxxxxx-yyyyyyy-zzzzzz + type: string + description: Success - the user's session ID that has been refreshed '401': description: Unauthorized - No session ID was found in the HTTP Authorization header '403': description: Forbidden - The session ID provided is invalid - '404': - description: No such record - Unable to find a record in the database - summary: Get a user's Investigations + summary: Refresh session tags: - - Investigations - /users/{id}/investigations/count: - get: - description: Return the count of the Investigations that belong to a given user - that would be retrieved given the filters provided - parameters: - - description: The id of the user to count the investigations of - in: path - name: ID - required: true - schema: - type: integer - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' + - Sessions + delete: + description: Deletes a users sessionID when they logout responses: '200': - content: - application/json: - schema: - type: integer - description: Success - The count of the user's investigations that satisfy - the filters + description: Success - User's session was successfully deleted '400': - description: Bad request - Something was wrong with the request + description: Bad request - something was wrong with the request '401': description: Unauthorized - No session ID was found in the HTTP Authorization header '403': description: Forbidden - The session ID provided is invalid '404': - description: No such record - Unable to find a record in the database - summary: Count a user's Investigations + description: Not Found - Unable to find session ID + summary: Delete session tags: - - Investigations + - Sessions /instruments/{id}/facilitycycles: get: description: Given an Instrument id get facility cycles where the instrument