From 851166c0ee0e9cf8201af64f25ce858836de7949 Mon Sep 17 00:00:00 2001 From: Matthew Richards Date: Mon, 29 Jun 2020 11:06:01 +0000 Subject: [PATCH] #135: Add mechanism parameter to login endpoint for Swagger docs --- .../non_entities/sessions_endpoints.py | 2 + src/swagger/openapi.yaml | 3674 +++++++++-------- 2 files changed, 1840 insertions(+), 1836 deletions(-) diff --git a/src/resources/non_entities/sessions_endpoints.py b/src/resources/non_entities/sessions_endpoints.py index 90d33e0c..a97329bf 100644 --- a/src/resources/non_entities/sessions_endpoints.py +++ b/src/resources/non_entities/sessions_endpoints.py @@ -37,6 +37,8 @@ def post(self): type: string password: type: string + mechanism: + type: string responses: 201: description: Success - returns a session ID diff --git a/src/swagger/openapi.yaml b/src/swagger/openapi.yaml index c24d1a44..ac03d952 100644 --- a/src/swagger/openapi.yaml +++ b/src/swagger/openapi.yaml @@ -1760,39 +1760,9 @@ 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' - responses: - '200': - content: - application/json: - schema: - 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': - 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 Applications - tags: - - Applications - patch: - description: Updates APPLICATION object(s) with details provided in the request - body + post: + description: Creates new APPLICATION object(s) with details provided in the + request body requestBody: content: application/json: @@ -1802,7 +1772,7 @@ paths: - items: $ref: '#/components/schemas/APPLICATION' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -1814,7 +1784,7 @@ paths: - items: $ref: '#/components/schemas/APPLICATION' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -1824,12 +1794,12 @@ 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: Create new Applications tags: - Applications - post: - description: Creates new APPLICATION object(s) with details provided in the - request body + patch: + description: Updates APPLICATION object(s) with details provided in the request + body requestBody: content: application/json: @@ -1839,7 +1809,7 @@ paths: - items: $ref: '#/components/schemas/APPLICATION' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -1851,7 +1821,7 @@ paths: - items: $ref: '#/components/schemas/APPLICATION' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -1861,26 +1831,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Applications + summary: Update Applications tags: - Applications - /applications/{id}: get: description: Retrieves a list of APPLICATION objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/APPLICATION' - description: Success - the matching APPLICATION + 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': @@ -1890,9 +1861,10 @@ 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: Get Applications tags: - Applications + /applications/{id}: patch: description: Updates APPLICATION with the specified ID with details provided in the request body @@ -1954,21 +1926,22 @@ paths: summary: Delete Applications by id tags: - Applications - /applications/count: get: - description: Return the count of the APPLICATION objects that would be retrieved - given the filters provided + description: Retrieves a list of APPLICATION objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the APPLICATION objects + $ref: '#/components/schemas/APPLICATION' + description: Success - the matching APPLICATION '400': description: Bad request - Something was wrong with the request '401': @@ -1978,17 +1951,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Applications + summary: Find the APPLICATION matching the given ID tags: - Applications - /applications/findone: + /applications/count: get: - description: Retrieves the first APPLICATION objects that satisfies the filters. + description: Return the count of the APPLICATION objects that would be retrieved + given the filters provided 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: @@ -1996,8 +1967,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/APPLICATION' - description: Success - a APPLICATION object that satisfies the filters + type: integer + description: Success - The count of the APPLICATION objects '400': description: Bad request - Something was wrong with the request '401': @@ -2007,12 +1978,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single APPLICATION + summary: Count Applications tags: - Applications - /datacollectiondatafiles: + /applications/findone: get: - description: Retrieves a list of DATACOLLECTIONDATAFILE objects + description: Retrieves the first APPLICATION objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -2025,10 +1996,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - type: array - description: Success - returns DATACOLLECTIONDATAFILE that satisfy the filters + $ref: '#/components/schemas/APPLICATION' + description: Success - a APPLICATION object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -2038,11 +2007,12 @@ 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: Get single APPLICATION tags: - - DataCollectionDatafiles - patch: - description: Updates DATACOLLECTIONDATAFILE object(s) with details provided + - Applications + /datacollectiondatafiles: + post: + description: Creates new DATACOLLECTIONDATAFILE object(s) with details provided in the request body requestBody: content: @@ -2053,7 +2023,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -2065,7 +2035,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -2075,11 +2045,11 @@ 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: Create new DataCollectionDatafiles tags: - DataCollectionDatafiles - post: - description: Creates new DATACOLLECTIONDATAFILE object(s) with details provided + patch: + description: Updates DATACOLLECTIONDATAFILE object(s) with details provided in the request body requestBody: content: @@ -2090,7 +2060,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -2102,7 +2072,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2112,26 +2082,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DataCollectionDatafiles + summary: Update DataCollectionDatafiles tags: - DataCollectionDatafiles - /datacollectiondatafiles/{id}: get: description: Retrieves a list of DATACOLLECTIONDATAFILE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - description: Success - the matching DATACOLLECTIONDATAFILE + 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': @@ -2141,9 +2112,10 @@ 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: Get DataCollectionDatafiles tags: - DataCollectionDatafiles + /datacollectiondatafiles/{id}: patch: description: Updates DATACOLLECTIONDATAFILE with the specified ID with details provided in the request body @@ -2205,21 +2177,22 @@ paths: summary: Delete DataCollectionDatafiles by id tags: - DataCollectionDatafiles - /datacollectiondatafiles/count: get: - description: Return the count of the DATACOLLECTIONDATAFILE objects that would - be retrieved given the filters provided + description: Retrieves a list of DATACOLLECTIONDATAFILE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATACOLLECTIONDATAFILE objects + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + description: Success - the matching DATACOLLECTIONDATAFILE '400': description: Bad request - Something was wrong with the request '401': @@ -2229,18 +2202,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DataCollectionDatafiles + summary: Find the DATACOLLECTIONDATAFILE matching the given ID tags: - DataCollectionDatafiles - /datacollectiondatafiles/findone: + /datacollectiondatafiles/count: get: - description: Retrieves the first DATACOLLECTIONDATAFILE objects that satisfies - the filters. + description: Return the count of the DATACOLLECTIONDATAFILE objects that would + be retrieved given the filters provided 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: @@ -2248,9 +2218,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' - description: Success - a DATACOLLECTIONDATAFILE object that satisfies the - filters + type: integer + description: Success - The count of the DATACOLLECTIONDATAFILE objects '400': description: Bad request - Something was wrong with the request '401': @@ -2260,12 +2229,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATACOLLECTIONDATAFILE + summary: Count DataCollectionDatafiles tags: - DataCollectionDatafiles - /datacollectiondatasets: + /datacollectiondatafiles/findone: get: - description: Retrieves a list of DATACOLLECTIONDATASET objects + description: Retrieves the first DATACOLLECTIONDATAFILE objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -2278,10 +2248,9 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - type: array - description: Success - returns DATACOLLECTIONDATASET that satisfy the filters + $ref: '#/components/schemas/DATACOLLECTIONDATAFILE' + description: Success - a DATACOLLECTIONDATAFILE object that satisfies the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -2291,12 +2260,13 @@ 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: Get single DATACOLLECTIONDATAFILE tags: - - DataCollectionDatasets - patch: - description: Updates DATACOLLECTIONDATASET object(s) with details provided in - the request body + - DataCollectionDatafiles + /datacollectiondatasets: + post: + description: Creates new DATACOLLECTIONDATASET object(s) with details provided + in the request body requestBody: content: application/json: @@ -2306,7 +2276,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATASET' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -2318,7 +2288,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATASET' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -2328,12 +2298,12 @@ 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: Create new DataCollectionDatasets tags: - DataCollectionDatasets - post: - description: Creates new DATACOLLECTIONDATASET object(s) with details provided - in the request body + patch: + description: Updates DATACOLLECTIONDATASET object(s) with details provided in + the request body requestBody: content: application/json: @@ -2343,7 +2313,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATASET' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -2355,7 +2325,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONDATASET' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2365,26 +2335,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DataCollectionDatasets + summary: Update DataCollectionDatasets tags: - DataCollectionDatasets - /datacollectiondatasets/{id}: get: description: Retrieves a list of DATACOLLECTIONDATASET objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - description: Success - the matching DATACOLLECTIONDATASET + 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': @@ -2394,9 +2365,10 @@ 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: Get DataCollectionDatasets tags: - DataCollectionDatasets + /datacollectiondatasets/{id}: patch: description: Updates DATACOLLECTIONDATASET with the specified ID with details provided in the request body @@ -2458,21 +2430,22 @@ paths: summary: Delete DataCollectionDatasets by id tags: - DataCollectionDatasets - /datacollectiondatasets/count: get: - description: Return the count of the DATACOLLECTIONDATASET objects that would - be retrieved given the filters provided + description: Retrieves a list of DATACOLLECTIONDATASET objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATACOLLECTIONDATASET objects + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + description: Success - the matching DATACOLLECTIONDATASET '400': description: Bad request - Something was wrong with the request '401': @@ -2482,18 +2455,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DataCollectionDatasets + summary: Find the DATACOLLECTIONDATASET matching the given ID tags: - DataCollectionDatasets - /datacollectiondatasets/findone: + /datacollectiondatasets/count: get: - description: Retrieves the first DATACOLLECTIONDATASET objects that satisfies - the filters. + description: Return the count of the DATACOLLECTIONDATASET objects that would + be retrieved given the filters provided 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: @@ -2501,9 +2471,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONDATASET' - description: Success - a DATACOLLECTIONDATASET object that satisfies the - filters + type: integer + description: Success - The count of the DATACOLLECTIONDATASET objects '400': description: Bad request - Something was wrong with the request '401': @@ -2513,12 +2482,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATACOLLECTIONDATASET + summary: Count DataCollectionDatasets tags: - DataCollectionDatasets - /datacollectionparameters: + /datacollectiondatasets/findone: get: - description: Retrieves a list of DATACOLLECTIONPARAMETER objects + description: Retrieves the first DATACOLLECTIONDATASET objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -2531,10 +2501,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - type: array - description: Success - returns DATACOLLECTIONPARAMETER that satisfy the + $ref: '#/components/schemas/DATACOLLECTIONDATASET' + description: Success - a DATACOLLECTIONDATASET object that satisfies the filters '400': description: Bad request - Something was wrong with the request @@ -2545,11 +2513,12 @@ 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: Get single DATACOLLECTIONDATASET tags: - - DataCollectionParameters - patch: - description: Updates DATACOLLECTIONPARAMETER object(s) with details provided + - DataCollectionDatasets + /datacollectionparameters: + post: + description: Creates new DATACOLLECTIONPARAMETER object(s) with details provided in the request body requestBody: content: @@ -2560,7 +2529,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -2572,7 +2541,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -2582,11 +2551,11 @@ 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: Create new DataCollectionParameters tags: - DataCollectionParameters - post: - description: Creates new DATACOLLECTIONPARAMETER object(s) with details provided + patch: + description: Updates DATACOLLECTIONPARAMETER object(s) with details provided in the request body requestBody: content: @@ -2597,7 +2566,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -2609,7 +2578,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2619,26 +2588,28 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DataCollectionParameters + summary: Update DataCollectionParameters tags: - DataCollectionParameters - /datacollectionparameters/{id}: get: description: Retrieves a list of DATACOLLECTIONPARAMETER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - description: Success - the matching DATACOLLECTIONPARAMETER + 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': @@ -2648,9 +2619,10 @@ 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: Get DataCollectionParameters tags: - DataCollectionParameters + /datacollectionparameters/{id}: patch: description: Updates DATACOLLECTIONPARAMETER with the specified ID with details provided in the request body @@ -2712,21 +2684,22 @@ paths: summary: Delete DataCollectionParameters by id tags: - DataCollectionParameters - /datacollectionparameters/count: get: - description: Return the count of the DATACOLLECTIONPARAMETER objects that would - be retrieved given the filters provided + description: Retrieves a list of DATACOLLECTIONPARAMETER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATACOLLECTIONPARAMETER objects + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + description: Success - the matching DATACOLLECTIONPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -2736,18 +2709,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DataCollectionParameters + summary: Find the DATACOLLECTIONPARAMETER matching the given ID tags: - DataCollectionParameters - /datacollectionparameters/findone: + /datacollectionparameters/count: get: - description: Retrieves the first DATACOLLECTIONPARAMETER objects that satisfies - the filters. + description: Return the count of the DATACOLLECTIONPARAMETER objects that would + be retrieved given the filters provided 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: @@ -2755,9 +2725,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' - description: Success - a DATACOLLECTIONPARAMETER object that satisfies the - filters + type: integer + description: Success - The count of the DATACOLLECTIONPARAMETER objects '400': description: Bad request - Something was wrong with the request '401': @@ -2767,12 +2736,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATACOLLECTIONPARAMETER + summary: Count DataCollectionParameters tags: - DataCollectionParameters - /datacollections: + /datacollectionparameters/findone: get: - description: Retrieves a list of DATACOLLECTION objects + description: Retrieves the first DATACOLLECTIONPARAMETER objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -2785,10 +2755,9 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATACOLLECTION' - type: array - description: Success - returns DATACOLLECTION that satisfy the filters + $ref: '#/components/schemas/DATACOLLECTIONPARAMETER' + description: Success - a DATACOLLECTIONPARAMETER object that satisfies the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -2798,12 +2767,13 @@ 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: Get single DATACOLLECTIONPARAMETER tags: - - DataCollections - patch: - description: Updates DATACOLLECTION object(s) with details provided in the request - body + - DataCollectionParameters + /datacollections: + post: + description: Creates new DATACOLLECTION object(s) with details provided in the + request body requestBody: content: application/json: @@ -2813,7 +2783,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTION' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -2825,7 +2795,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTION' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -2835,12 +2805,12 @@ 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: Create new DataCollections tags: - DataCollections - post: - description: Creates new DATACOLLECTION object(s) with details provided in the - request body + patch: + description: Updates DATACOLLECTION object(s) with details provided in the request + body requestBody: content: application/json: @@ -2850,7 +2820,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTION' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -2862,7 +2832,7 @@ paths: - items: $ref: '#/components/schemas/DATACOLLECTION' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -2872,26 +2842,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DataCollections + summary: Update DataCollections tags: - DataCollections - /datacollections/{id}: get: description: Retrieves a list of DATACOLLECTION objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTION' - description: Success - the matching DATACOLLECTION + 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': @@ -2901,9 +2872,10 @@ 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: Get DataCollections tags: - DataCollections + /datacollections/{id}: patch: description: Updates DATACOLLECTION with the specified ID with details provided in the request body @@ -2965,21 +2937,22 @@ paths: summary: Delete DataCollections by id tags: - DataCollections - /datacollections/count: get: - description: Return the count of the DATACOLLECTION objects that would be retrieved - given the filters provided + description: Retrieves a list of DATACOLLECTION objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATACOLLECTION objects + $ref: '#/components/schemas/DATACOLLECTION' + description: Success - the matching DATACOLLECTION '400': description: Bad request - Something was wrong with the request '401': @@ -2989,17 +2962,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DataCollections + summary: Find the DATACOLLECTION matching the given ID tags: - DataCollections - /datacollections/findone: + /datacollections/count: get: - description: Retrieves the first DATACOLLECTION objects that satisfies the filters. + description: Return the count of the DATACOLLECTION objects that would be retrieved + given the filters provided 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: @@ -3007,8 +2978,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATACOLLECTION' - description: Success - a DATACOLLECTION object that satisfies the filters + type: integer + description: Success - The count of the DATACOLLECTION objects '400': description: Bad request - Something was wrong with the request '401': @@ -3018,12 +2989,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATACOLLECTION + summary: Count DataCollections tags: - DataCollections - /datafileformats: + /datacollections/findone: get: - description: Retrieves a list of DATAFILEFORMAT objects + description: Retrieves the first DATACOLLECTION objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -3036,10 +3007,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILEFORMAT' - type: array - description: Success - returns DATAFILEFORMAT that satisfy the filters + $ref: '#/components/schemas/DATACOLLECTION' + description: Success - a DATACOLLECTION object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3049,12 +3018,13 @@ 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: Get single DATACOLLECTION tags: - - DatafileFormats - patch: - description: Updates DATAFILEFORMAT object(s) with details provided in the request - body + - DataCollections + /datafileformats: + post: + description: Creates new DATAFILEFORMAT object(s) with details provided in the + request body requestBody: content: application/json: @@ -3064,7 +3034,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEFORMAT' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -3076,7 +3046,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEFORMAT' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -3086,12 +3056,12 @@ 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: Create new DatafileFormats tags: - DatafileFormats - post: - description: Creates new DATAFILEFORMAT object(s) with details provided in the - request body + patch: + description: Updates DATAFILEFORMAT object(s) with details provided in the request + body requestBody: content: application/json: @@ -3101,7 +3071,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEFORMAT' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -3113,7 +3083,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEFORMAT' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3123,26 +3093,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DatafileFormats + summary: Update DatafileFormats tags: - DatafileFormats - /datafileformats/{id}: get: description: Retrieves a list of DATAFILEFORMAT objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATAFILEFORMAT' - description: Success - the matching DATAFILEFORMAT + 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': @@ -3152,9 +3123,10 @@ 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: Get DatafileFormats tags: - DatafileFormats + /datafileformats/{id}: patch: description: Updates DATAFILEFORMAT with the specified ID with details provided in the request body @@ -3216,21 +3188,22 @@ paths: summary: Delete DatafileFormats by id tags: - DatafileFormats - /datafileformats/count: get: - description: Return the count of the DATAFILEFORMAT objects that would be retrieved - given the filters provided + description: Retrieves a list of DATAFILEFORMAT objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATAFILEFORMAT objects + $ref: '#/components/schemas/DATAFILEFORMAT' + description: Success - the matching DATAFILEFORMAT '400': description: Bad request - Something was wrong with the request '401': @@ -3240,17 +3213,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DatafileFormats + summary: Find the DATAFILEFORMAT matching the given ID tags: - DatafileFormats - /datafileformats/findone: + /datafileformats/count: get: - description: Retrieves the first DATAFILEFORMAT objects that satisfies the filters. + description: Return the count of the DATAFILEFORMAT objects that would be retrieved + given the filters provided 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: @@ -3258,8 +3229,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATAFILEFORMAT' - description: Success - a DATAFILEFORMAT object that satisfies the filters + type: integer + description: Success - The count of the DATAFILEFORMAT objects '400': description: Bad request - Something was wrong with the request '401': @@ -3269,12 +3240,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATAFILEFORMAT + summary: Count DatafileFormats tags: - DatafileFormats - /datafileparameters: + /datafileformats/findone: get: - description: Retrieves a list of DATAFILEPARAMETER objects + description: Retrieves the first DATAFILEFORMAT objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -3287,10 +3258,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILEPARAMETER' - type: array - description: Success - returns DATAFILEPARAMETER that satisfy the filters + $ref: '#/components/schemas/DATAFILEFORMAT' + description: Success - a DATAFILEFORMAT object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3300,12 +3269,13 @@ 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: Get single DATAFILEFORMAT tags: - - DatafileParameters - patch: - description: Updates DATAFILEPARAMETER object(s) with details provided in the - request body + - DatafileFormats + /datafileparameters: + post: + description: Creates new DATAFILEPARAMETER object(s) with details provided in + the request body requestBody: content: application/json: @@ -3315,7 +3285,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEPARAMETER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -3327,7 +3297,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEPARAMETER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -3337,12 +3307,12 @@ 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: Create new DatafileParameters tags: - DatafileParameters - post: - description: Creates new DATAFILEPARAMETER object(s) with details provided in - the request body + patch: + description: Updates DATAFILEPARAMETER object(s) with details provided in the + request body requestBody: content: application/json: @@ -3352,7 +3322,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEPARAMETER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -3364,7 +3334,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILEPARAMETER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3374,26 +3344,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DatafileParameters + summary: Update DatafileParameters tags: - DatafileParameters - /datafileparameters/{id}: get: description: Retrieves a list of DATAFILEPARAMETER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATAFILEPARAMETER' - description: Success - the matching DATAFILEPARAMETER + 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': @@ -3403,9 +3374,10 @@ 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: Get DatafileParameters tags: - DatafileParameters + /datafileparameters/{id}: patch: description: Updates DATAFILEPARAMETER with the specified ID with details provided in the request body @@ -3467,21 +3439,22 @@ paths: summary: Delete DatafileParameters by id tags: - DatafileParameters - /datafileparameters/count: get: - description: Return the count of the DATAFILEPARAMETER objects that would be - retrieved given the filters provided + description: Retrieves a list of DATAFILEPARAMETER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATAFILEPARAMETER objects + $ref: '#/components/schemas/DATAFILEPARAMETER' + description: Success - the matching DATAFILEPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -3491,18 +3464,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DatafileParameters + summary: Find the DATAFILEPARAMETER matching the given ID tags: - DatafileParameters - /datafileparameters/findone: + /datafileparameters/count: get: - description: Retrieves the first DATAFILEPARAMETER objects that satisfies the - filters. + description: Return the count of the DATAFILEPARAMETER objects that would be + retrieved given the filters provided 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: @@ -3510,8 +3480,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATAFILEPARAMETER' - description: Success - a DATAFILEPARAMETER object that satisfies the filters + type: integer + description: Success - The count of the DATAFILEPARAMETER objects '400': description: Bad request - Something was wrong with the request '401': @@ -3521,12 +3491,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATAFILEPARAMETER + summary: Count DatafileParameters tags: - DatafileParameters - /datafiles: + /datafileparameters/findone: get: - description: Retrieves a list of DATAFILE objects + description: Retrieves the first DATAFILEPARAMETER objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -3539,10 +3510,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATAFILE' - type: array - description: Success - returns DATAFILE that satisfy the filters + $ref: '#/components/schemas/DATAFILEPARAMETER' + description: Success - a DATAFILEPARAMETER object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -3552,11 +3521,12 @@ 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: Get single DATAFILEPARAMETER tags: - - Datafiles - patch: - description: Updates DATAFILE object(s) with details provided in the request + - DatafileParameters + /datafiles: + post: + description: Creates new DATAFILE object(s) with details provided in the request body requestBody: content: @@ -3567,7 +3537,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -3579,7 +3549,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -3589,11 +3559,11 @@ 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: Create new Datafiles tags: - Datafiles - post: - description: Creates new DATAFILE object(s) with details provided in the request + patch: + description: Updates DATAFILE object(s) with details provided in the request body requestBody: content: @@ -3604,7 +3574,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -3616,7 +3586,7 @@ paths: - items: $ref: '#/components/schemas/DATAFILE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3626,26 +3596,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Datafiles + summary: Update Datafiles tags: - Datafiles - /datafiles/{id}: get: description: Retrieves a list of DATAFILE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATAFILE' - description: Success - the matching DATAFILE + 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': @@ -3655,9 +3626,10 @@ 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: Get Datafiles tags: - Datafiles + /datafiles/{id}: patch: description: Updates DATAFILE with the specified ID with details provided in the request body @@ -3719,6 +3691,34 @@ paths: summary: Delete Datafiles by id tags: - Datafiles + get: + description: Retrieves a list of DATAFILE objects + parameters: + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer + responses: + '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': + 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: Find the DATAFILE matching the given ID + tags: + - Datafiles /datafiles/count: get: description: Return the count of the DATAFILE objects that would be retrieved @@ -3776,39 +3776,9 @@ 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: - $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': - 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 DatasetParameters - tags: - - DatasetParameters - patch: - description: Updates DATASETPARAMETER object(s) with details provided in the - request body + post: + description: Creates new DATASETPARAMETER object(s) with details provided in + the request body requestBody: content: application/json: @@ -3818,7 +3788,7 @@ paths: - items: $ref: '#/components/schemas/DATASETPARAMETER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -3830,7 +3800,7 @@ paths: - items: $ref: '#/components/schemas/DATASETPARAMETER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -3840,12 +3810,12 @@ 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: Create new DatasetParameters tags: - DatasetParameters - post: - description: Creates new DATASETPARAMETER object(s) with details provided in - the request body + patch: + description: Updates DATASETPARAMETER object(s) with details provided in the + request body requestBody: content: application/json: @@ -3855,7 +3825,7 @@ paths: - items: $ref: '#/components/schemas/DATASETPARAMETER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -3867,7 +3837,7 @@ paths: - items: $ref: '#/components/schemas/DATASETPARAMETER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -3877,26 +3847,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DatasetParameters + summary: Update DatasetParameters tags: - DatasetParameters - /datasetparameters/{id}: get: description: Retrieves a list of DATASETPARAMETER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATASETPARAMETER' - description: Success - the matching DATASETPARAMETER + 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': @@ -3906,9 +3877,10 @@ 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: Get DatasetParameters tags: - DatasetParameters + /datasetparameters/{id}: patch: description: Updates DATASETPARAMETER with the specified ID with details provided in the request body @@ -3970,21 +3942,22 @@ paths: summary: Delete DatasetParameters by id tags: - DatasetParameters - /datasetparameters/count: get: - description: Return the count of the DATASETPARAMETER objects that would be - retrieved given the filters provided + description: Retrieves a list of DATASETPARAMETER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATASETPARAMETER objects + $ref: '#/components/schemas/DATASETPARAMETER' + description: Success - the matching DATASETPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -3994,18 +3967,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DatasetParameters + summary: Find the DATASETPARAMETER matching the given ID tags: - DatasetParameters - /datasetparameters/findone: + /datasetparameters/count: get: - description: Retrieves the first DATASETPARAMETER objects that satisfies the - filters. + description: Return the count of the DATASETPARAMETER objects that would be + retrieved given the filters provided 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: @@ -4013,8 +3983,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATASETPARAMETER' - description: Success - a DATASETPARAMETER object that satisfies the filters + type: integer + description: Success - The count of the DATASETPARAMETER objects '400': description: Bad request - Something was wrong with the request '401': @@ -4024,12 +3994,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATASETPARAMETER + summary: Count DatasetParameters tags: - DatasetParameters - /datasettypes: + /datasetparameters/findone: get: - description: Retrieves a list of DATASETTYPE objects + description: Retrieves the first DATASETPARAMETER objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -4042,10 +4013,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATASETTYPE' - type: array - description: Success - returns DATASETTYPE that satisfy the filters + $ref: '#/components/schemas/DATASETPARAMETER' + description: Success - a DATASETPARAMETER object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4055,12 +4024,13 @@ 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: Get single DATASETPARAMETER tags: - - DatasetTypes - patch: - description: Updates DATASETTYPE object(s) with details provided in the request - body + - DatasetParameters + /datasettypes: + post: + description: Creates new DATASETTYPE object(s) with details provided in the + request body requestBody: content: application/json: @@ -4070,7 +4040,7 @@ paths: - items: $ref: '#/components/schemas/DATASETTYPE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -4082,7 +4052,7 @@ paths: - items: $ref: '#/components/schemas/DATASETTYPE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -4092,12 +4062,12 @@ 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: Create new DatasetTypes tags: - DatasetTypes - post: - description: Creates new DATASETTYPE object(s) with details provided in the - request body + patch: + description: Updates DATASETTYPE object(s) with details provided in the request + body requestBody: content: application/json: @@ -4107,7 +4077,7 @@ paths: - items: $ref: '#/components/schemas/DATASETTYPE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -4119,7 +4089,7 @@ paths: - items: $ref: '#/components/schemas/DATASETTYPE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4129,26 +4099,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new DatasetTypes + summary: Update DatasetTypes tags: - DatasetTypes - /datasettypes/{id}: get: description: Retrieves a list of DATASETTYPE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATASETTYPE' - description: Success - the matching DATASETTYPE + 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': @@ -4158,9 +4129,10 @@ 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: Get DatasetTypes tags: - DatasetTypes + /datasettypes/{id}: patch: description: Updates DATASETTYPE with the specified ID with details provided in the request body @@ -4222,21 +4194,22 @@ paths: summary: Delete DatasetTypes by id tags: - DatasetTypes - /datasettypes/count: get: - description: Return the count of the DATASETTYPE objects that would be retrieved - given the filters provided + description: Retrieves a list of DATASETTYPE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATASETTYPE objects + $ref: '#/components/schemas/DATASETTYPE' + description: Success - the matching DATASETTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -4246,17 +4219,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count DatasetTypes + summary: Find the DATASETTYPE matching the given ID tags: - DatasetTypes - /datasettypes/findone: + /datasettypes/count: get: - description: Retrieves the first DATASETTYPE objects that satisfies the filters. + description: Return the count of the DATASETTYPE objects that would be retrieved + given the filters provided 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: @@ -4264,8 +4235,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATASETTYPE' - description: Success - a DATASETTYPE object that satisfies the filters + type: integer + description: Success - The count of the DATASETTYPE objects '400': description: Bad request - Something was wrong with the request '401': @@ -4275,12 +4246,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATASETTYPE + summary: Count DatasetTypes tags: - DatasetTypes - /datasets: + /datasettypes/findone: get: - description: Retrieves a list of DATASET objects + description: Retrieves the first DATASETTYPE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -4293,10 +4264,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/DATASET' - type: array - description: Success - returns DATASET that satisfy the filters + $ref: '#/components/schemas/DATASETTYPE' + description: Success - a DATASETTYPE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4306,11 +4275,12 @@ 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: Get single DATASETTYPE tags: - - Datasets - patch: - description: Updates DATASET object(s) with details provided in the request + - DatasetTypes + /datasets: + post: + description: Creates new DATASET object(s) with details provided in the request body requestBody: content: @@ -4321,7 +4291,7 @@ paths: - items: $ref: '#/components/schemas/DATASET' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -4333,7 +4303,7 @@ paths: - items: $ref: '#/components/schemas/DATASET' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -4343,11 +4313,11 @@ 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: Create new Datasets tags: - Datasets - post: - description: Creates new DATASET object(s) with details provided in the request + patch: + description: Updates DATASET object(s) with details provided in the request body requestBody: content: @@ -4358,7 +4328,7 @@ paths: - items: $ref: '#/components/schemas/DATASET' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -4370,7 +4340,7 @@ paths: - items: $ref: '#/components/schemas/DATASET' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4380,26 +4350,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Datasets + summary: Update Datasets tags: - Datasets - /datasets/{id}: get: description: Retrieves a list of DATASET objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/DATASET' - description: Success - the matching DATASET + 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': @@ -4409,9 +4380,10 @@ 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: Get Datasets tags: - Datasets + /datasets/{id}: patch: description: Updates DATASET with the specified ID with details provided in the request body @@ -4473,21 +4445,22 @@ paths: summary: Delete Datasets by id tags: - Datasets - /datasets/count: get: - description: Return the count of the DATASET objects that would be retrieved - given the filters provided + description: Retrieves a list of DATASET objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the DATASET objects + $ref: '#/components/schemas/DATASET' + description: Success - the matching DATASET '400': description: Bad request - Something was wrong with the request '401': @@ -4497,17 +4470,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Datasets + summary: Find the DATASET matching the given ID tags: - Datasets - /datasets/findone: + /datasets/count: get: - description: Retrieves the first DATASET objects that satisfies the filters. + description: Return the count of the DATASET objects that would be retrieved + given the filters provided 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: @@ -4515,8 +4486,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/DATASET' - description: Success - a DATASET object that satisfies the filters + type: integer + description: Success - The count of the DATASET objects '400': description: Bad request - Something was wrong with the request '401': @@ -4526,12 +4497,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single DATASET + summary: Count Datasets tags: - Datasets - /facilities: + /datasets/findone: get: - description: Retrieves a list of FACILITY objects + description: Retrieves the first DATASET objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -4544,10 +4515,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/FACILITY' - type: array - description: Success - returns FACILITY that satisfy the filters + $ref: '#/components/schemas/DATASET' + description: Success - a DATASET object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4557,11 +4526,12 @@ 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: Get single DATASET tags: - - Facilities - patch: - description: Updates FACILITY object(s) with details provided in the request + - Datasets + /facilities: + post: + description: Creates new FACILITY object(s) with details provided in the request body requestBody: content: @@ -4572,7 +4542,7 @@ paths: - items: $ref: '#/components/schemas/FACILITY' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -4584,7 +4554,7 @@ paths: - items: $ref: '#/components/schemas/FACILITY' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -4594,11 +4564,11 @@ 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: Create new Facilities tags: - Facilities - post: - description: Creates new FACILITY object(s) with details provided in the request + patch: + description: Updates FACILITY object(s) with details provided in the request body requestBody: content: @@ -4609,7 +4579,7 @@ paths: - items: $ref: '#/components/schemas/FACILITY' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -4621,7 +4591,7 @@ paths: - items: $ref: '#/components/schemas/FACILITY' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4631,26 +4601,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Facilities + summary: Update Facilities tags: - Facilities - /facilities/{id}: get: description: Retrieves a list of FACILITY objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/FACILITY' - description: Success - the matching FACILITY + 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': @@ -4660,9 +4631,10 @@ 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: Get Facilities tags: - Facilities + /facilities/{id}: patch: description: Updates FACILITY with the specified ID with details provided in the request body @@ -4724,21 +4696,22 @@ paths: summary: Delete Facilities by id tags: - Facilities - /facilities/count: get: - description: Return the count of the FACILITY objects that would be retrieved - given the filters provided + description: Retrieves a list of FACILITY objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the FACILITY objects + $ref: '#/components/schemas/FACILITY' + description: Success - the matching FACILITY '400': description: Bad request - Something was wrong with the request '401': @@ -4748,17 +4721,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Facilities + summary: Find the FACILITY matching the given ID tags: - Facilities - /facilities/findone: + /facilities/count: get: - description: Retrieves the first FACILITY objects that satisfies the filters. + description: Return the count of the FACILITY objects that would be retrieved + given the filters provided 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: @@ -4766,8 +4737,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FACILITY' - description: Success - a FACILITY object that satisfies the filters + type: integer + description: Success - The count of the FACILITY objects '400': description: Bad request - Something was wrong with the request '401': @@ -4777,12 +4748,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single FACILITY + summary: Count Facilities tags: - Facilities - /facilitycycles: + /facilities/findone: get: - description: Retrieves a list of FACILITYCYCLE objects + description: Retrieves the first FACILITY objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -4795,10 +4766,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/FACILITYCYCLE' - type: array - description: Success - returns FACILITYCYCLE that satisfy the filters + $ref: '#/components/schemas/FACILITY' + description: Success - a FACILITY object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -4808,12 +4777,13 @@ 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: Get single FACILITY tags: - - FacilityCycles - patch: - description: Updates FACILITYCYCLE object(s) with details provided in the request - body + - Facilities + /facilitycycles: + post: + description: Creates new FACILITYCYCLE object(s) with details provided in the + request body requestBody: content: application/json: @@ -4823,7 +4793,7 @@ paths: - items: $ref: '#/components/schemas/FACILITYCYCLE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -4835,7 +4805,7 @@ paths: - items: $ref: '#/components/schemas/FACILITYCYCLE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -4845,12 +4815,12 @@ 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: Create new FacilityCycles tags: - FacilityCycles - post: - description: Creates new FACILITYCYCLE object(s) with details provided in the - request body + patch: + description: Updates FACILITYCYCLE object(s) with details provided in the request + body requestBody: content: application/json: @@ -4860,7 +4830,7 @@ paths: - items: $ref: '#/components/schemas/FACILITYCYCLE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -4872,7 +4842,7 @@ paths: - items: $ref: '#/components/schemas/FACILITYCYCLE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -4882,26 +4852,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new FacilityCycles + summary: Update FacilityCycles tags: - FacilityCycles - /facilitycycles/{id}: get: description: Retrieves a list of FACILITYCYCLE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/FACILITYCYCLE' - description: Success - the matching FACILITYCYCLE + 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': @@ -4911,9 +4882,10 @@ 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: Get FacilityCycles tags: - FacilityCycles + /facilitycycles/{id}: patch: description: Updates FACILITYCYCLE with the specified ID with details provided in the request body @@ -4975,21 +4947,22 @@ paths: summary: Delete FacilityCycles by id tags: - FacilityCycles - /facilitycycles/count: get: - description: Return the count of the FACILITYCYCLE objects that would be retrieved - given the filters provided + description: Retrieves a list of FACILITYCYCLE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the FACILITYCYCLE objects + $ref: '#/components/schemas/FACILITYCYCLE' + description: Success - the matching FACILITYCYCLE '400': description: Bad request - Something was wrong with the request '401': @@ -4999,17 +4972,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count FacilityCycles + summary: Find the FACILITYCYCLE matching the given ID tags: - FacilityCycles - /facilitycycles/findone: + /facilitycycles/count: get: - description: Retrieves the first FACILITYCYCLE objects that satisfies the filters. + description: Return the count of the FACILITYCYCLE objects that would be retrieved + given the filters provided 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: @@ -5017,8 +4988,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/FACILITYCYCLE' - description: Success - a FACILITYCYCLE object that satisfies the filters + type: integer + description: Success - The count of the FACILITYCYCLE objects '400': description: Bad request - Something was wrong with the request '401': @@ -5028,12 +4999,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single FACILITYCYCLE + summary: Count FacilityCycles tags: - FacilityCycles - /groupings: + /facilitycycles/findone: get: - description: Retrieves a list of GROUPING objects + description: Retrieves the first FACILITYCYCLE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -5046,10 +5017,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/GROUPING' - type: array - description: Success - returns GROUPING that satisfy the filters + $ref: '#/components/schemas/FACILITYCYCLE' + description: Success - a FACILITYCYCLE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5059,11 +5028,12 @@ 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: Get single FACILITYCYCLE tags: - - Groupings - patch: - description: Updates GROUPING object(s) with details provided in the request + - FacilityCycles + /groupings: + post: + description: Creates new GROUPING object(s) with details provided in the request body requestBody: content: @@ -5074,7 +5044,7 @@ paths: - items: $ref: '#/components/schemas/GROUPING' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -5086,7 +5056,7 @@ paths: - items: $ref: '#/components/schemas/GROUPING' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -5096,11 +5066,11 @@ 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: Create new Groupings tags: - Groupings - post: - description: Creates new GROUPING object(s) with details provided in the request + patch: + description: Updates GROUPING object(s) with details provided in the request body requestBody: content: @@ -5111,7 +5081,7 @@ paths: - items: $ref: '#/components/schemas/GROUPING' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -5123,7 +5093,7 @@ paths: - items: $ref: '#/components/schemas/GROUPING' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5133,26 +5103,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Groupings + summary: Update Groupings tags: - Groupings - /groupings/{id}: get: description: Retrieves a list of GROUPING objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/GROUPING' - description: Success - the matching GROUPING + 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': @@ -5162,9 +5133,10 @@ 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: Get Groupings tags: - Groupings + /groupings/{id}: patch: description: Updates GROUPING with the specified ID with details provided in the request body @@ -5226,21 +5198,22 @@ paths: summary: Delete Groupings by id tags: - Groupings - /groupings/count: get: - description: Return the count of the GROUPING objects that would be retrieved - given the filters provided + description: Retrieves a list of GROUPING objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the GROUPING objects + $ref: '#/components/schemas/GROUPING' + description: Success - the matching GROUPING '400': description: Bad request - Something was wrong with the request '401': @@ -5250,17 +5223,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Groupings + summary: Find the GROUPING matching the given ID tags: - Groupings - /groupings/findone: + /groupings/count: get: - description: Retrieves the first GROUPING objects that satisfies the filters. + description: Return the count of the GROUPING objects that would be retrieved + given the filters provided 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: @@ -5268,8 +5239,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/GROUPING' - description: Success - a GROUPING object that satisfies the filters + type: integer + description: Success - The count of the GROUPING objects '400': description: Bad request - Something was wrong with the request '401': @@ -5279,12 +5250,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single GROUPING + summary: Count Groupings tags: - Groupings - /instrumentscientists: + /groupings/findone: get: - description: Retrieves a list of INSTRUMENTSCIENTIST objects + description: Retrieves the first GROUPING objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -5297,10 +5268,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - type: array - description: Success - returns INSTRUMENTSCIENTIST that satisfy the filters + $ref: '#/components/schemas/GROUPING' + description: Success - a GROUPING object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5310,12 +5279,13 @@ 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: Get single GROUPING tags: - - InstrumentScientists - patch: - description: Updates INSTRUMENTSCIENTIST object(s) with details provided in - the request body + - Groupings + /instrumentscientists: + post: + description: Creates new INSTRUMENTSCIENTIST object(s) with details provided + in the request body requestBody: content: application/json: @@ -5325,7 +5295,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENTSCIENTIST' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -5337,7 +5307,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENTSCIENTIST' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -5347,12 +5317,12 @@ 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: Create new InstrumentScientists tags: - InstrumentScientists - post: - description: Creates new INSTRUMENTSCIENTIST object(s) with details provided - in the request body + patch: + description: Updates INSTRUMENTSCIENTIST object(s) with details provided in + the request body requestBody: content: application/json: @@ -5362,7 +5332,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENTSCIENTIST' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -5374,7 +5344,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENTSCIENTIST' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5384,26 +5354,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InstrumentScientists + summary: Update InstrumentScientists tags: - InstrumentScientists - /instrumentscientists/{id}: get: description: Retrieves a list of INSTRUMENTSCIENTIST objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - description: Success - the matching INSTRUMENTSCIENTIST + 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': @@ -5413,9 +5384,10 @@ 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: Get InstrumentScientists tags: - InstrumentScientists + /instrumentscientists/{id}: patch: description: Updates INSTRUMENTSCIENTIST with the specified ID with details provided in the request body @@ -5477,21 +5449,22 @@ paths: summary: Delete InstrumentScientists by id tags: - InstrumentScientists - /instrumentscientists/count: get: - description: Return the count of the INSTRUMENTSCIENTIST objects that would - be retrieved given the filters provided + description: Retrieves a list of INSTRUMENTSCIENTIST objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INSTRUMENTSCIENTIST objects + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + description: Success - the matching INSTRUMENTSCIENTIST '400': description: Bad request - Something was wrong with the request '401': @@ -5501,18 +5474,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InstrumentScientists + summary: Find the INSTRUMENTSCIENTIST matching the given ID tags: - InstrumentScientists - /instrumentscientists/findone: + /instrumentscientists/count: get: - description: Retrieves the first INSTRUMENTSCIENTIST objects that satisfies - the filters. + description: Return the count of the INSTRUMENTSCIENTIST objects that would + be retrieved given the filters provided 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: @@ -5520,8 +5490,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INSTRUMENTSCIENTIST' - description: Success - a INSTRUMENTSCIENTIST object that satisfies the filters + type: integer + description: Success - The count of the INSTRUMENTSCIENTIST objects '400': description: Bad request - Something was wrong with the request '401': @@ -5531,12 +5501,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INSTRUMENTSCIENTIST + summary: Count InstrumentScientists tags: - InstrumentScientists - /instruments: + /instrumentscientists/findone: get: - description: Retrieves a list of INSTRUMENT objects + description: Retrieves the first INSTRUMENTSCIENTIST objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -5549,10 +5520,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INSTRUMENT' - type: array - description: Success - returns INSTRUMENT that satisfy the filters + $ref: '#/components/schemas/INSTRUMENTSCIENTIST' + description: Success - a INSTRUMENTSCIENTIST object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5562,11 +5531,12 @@ 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: Get single INSTRUMENTSCIENTIST tags: - - Instruments - patch: - description: Updates INSTRUMENT object(s) with details provided in the request + - InstrumentScientists + /instruments: + post: + description: Creates new INSTRUMENT object(s) with details provided in the request body requestBody: content: @@ -5577,7 +5547,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENT' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -5589,7 +5559,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENT' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -5599,11 +5569,11 @@ 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: Create new Instruments tags: - Instruments - post: - description: Creates new INSTRUMENT object(s) with details provided in the request + patch: + description: Updates INSTRUMENT object(s) with details provided in the request body requestBody: content: @@ -5614,7 +5584,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENT' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -5626,7 +5596,7 @@ paths: - items: $ref: '#/components/schemas/INSTRUMENT' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5636,26 +5606,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Instruments + summary: Update Instruments tags: - Instruments - /instruments/{id}: get: description: Retrieves a list of INSTRUMENT objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INSTRUMENT' - description: Success - the matching INSTRUMENT + 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': @@ -5665,9 +5636,10 @@ 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: Get Instruments tags: - Instruments + /instruments/{id}: patch: description: Updates INSTRUMENT with the specified ID with details provided in the request body @@ -5729,21 +5701,22 @@ paths: summary: Delete Instruments by id tags: - Instruments - /instruments/count: get: - description: Return the count of the INSTRUMENT objects that would be retrieved - given the filters provided + description: Retrieves a list of INSTRUMENT objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INSTRUMENT objects + $ref: '#/components/schemas/INSTRUMENT' + description: Success - the matching INSTRUMENT '400': description: Bad request - Something was wrong with the request '401': @@ -5753,17 +5726,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Instruments + summary: Find the INSTRUMENT matching the given ID tags: - Instruments - /instruments/findone: + /instruments/count: get: - description: Retrieves the first INSTRUMENT objects that satisfies the filters. + description: Return the count of the INSTRUMENT objects that would be retrieved + given the filters provided 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: @@ -5771,8 +5742,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INSTRUMENT' - description: Success - a INSTRUMENT object that satisfies the filters + type: integer + description: Success - The count of the INSTRUMENT objects '400': description: Bad request - Something was wrong with the request '401': @@ -5782,12 +5753,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INSTRUMENT + summary: Count Instruments tags: - Instruments - /investigationgroups: + /instruments/findone: get: - description: Retrieves a list of INVESTIGATIONGROUP objects + description: Retrieves the first INSTRUMENT objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -5800,10 +5771,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - type: array - description: Success - returns INVESTIGATIONGROUP that satisfy the filters + $ref: '#/components/schemas/INSTRUMENT' + description: Success - a INSTRUMENT object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -5813,13 +5782,14 @@ 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: Get single INSTRUMENT tags: - - InvestigationGroups - patch: - description: Updates INVESTIGATIONGROUP object(s) with details provided in the - request body - requestBody: + - Instruments + /investigationgroups: + post: + description: Creates new INVESTIGATIONGROUP object(s) with details provided + in the request body + requestBody: content: application/json: schema: @@ -5828,7 +5798,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONGROUP' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -5840,7 +5810,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONGROUP' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -5850,12 +5820,12 @@ 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: Create new InvestigationGroups tags: - InvestigationGroups - post: - description: Creates new INVESTIGATIONGROUP object(s) with details provided - in the request body + patch: + description: Updates INVESTIGATIONGROUP object(s) with details provided in the + request body requestBody: content: application/json: @@ -5865,7 +5835,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONGROUP' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -5877,7 +5847,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONGROUP' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -5887,26 +5857,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InvestigationGroups + summary: Update InvestigationGroups tags: - InvestigationGroups - /investigationgroups/{id}: get: description: Retrieves a list of INVESTIGATIONGROUP objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - description: Success - the matching INVESTIGATIONGROUP + 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': @@ -5916,9 +5887,10 @@ 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: Get InvestigationGroups tags: - InvestigationGroups + /investigationgroups/{id}: patch: description: Updates INVESTIGATIONGROUP with the specified ID with details provided in the request body @@ -5980,21 +5952,22 @@ paths: summary: Delete InvestigationGroups by id tags: - InvestigationGroups - /investigationgroups/count: get: - description: Return the count of the INVESTIGATIONGROUP objects that would be - retrieved given the filters provided + description: Retrieves a list of INVESTIGATIONGROUP objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATIONGROUP objects + $ref: '#/components/schemas/INVESTIGATIONGROUP' + description: Success - the matching INVESTIGATIONGROUP '400': description: Bad request - Something was wrong with the request '401': @@ -6004,18 +5977,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InvestigationGroups + summary: Find the INVESTIGATIONGROUP matching the given ID tags: - InvestigationGroups - /investigationgroups/findone: + /investigationgroups/count: get: - description: Retrieves the first INVESTIGATIONGROUP objects that satisfies the - filters. + description: Return the count of the INVESTIGATIONGROUP objects that would be + retrieved given the filters provided 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: @@ -6023,8 +5993,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONGROUP' - description: Success - a INVESTIGATIONGROUP object that satisfies the filters + type: integer + description: Success - The count of the INVESTIGATIONGROUP objects '400': description: Bad request - Something was wrong with the request '401': @@ -6034,12 +6004,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATIONGROUP + summary: Count InvestigationGroups tags: - InvestigationGroups - /investigationinstruments: + /investigationgroups/findone: get: - description: Retrieves a list of INVESTIGATIONINSTRUMENT objects + description: Retrieves the first INVESTIGATIONGROUP objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -6052,11 +6023,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - type: array - description: Success - returns INVESTIGATIONINSTRUMENT that satisfy the - filters + $ref: '#/components/schemas/INVESTIGATIONGROUP' + description: Success - a INVESTIGATIONGROUP object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -6066,11 +6034,12 @@ 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: Get single INVESTIGATIONGROUP tags: - - InvestigationInstruments - patch: - description: Updates INVESTIGATIONINSTRUMENT object(s) with details provided + - InvestigationGroups + /investigationinstruments: + post: + description: Creates new INVESTIGATIONINSTRUMENT object(s) with details provided in the request body requestBody: content: @@ -6081,7 +6050,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -6093,7 +6062,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -6103,11 +6072,11 @@ 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: Create new InvestigationInstruments tags: - InvestigationInstruments - post: - description: Creates new INVESTIGATIONINSTRUMENT object(s) with details provided + patch: + description: Updates INVESTIGATIONINSTRUMENT object(s) with details provided in the request body requestBody: content: @@ -6118,7 +6087,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -6130,7 +6099,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6140,26 +6109,28 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InvestigationInstruments + summary: Update InvestigationInstruments tags: - InvestigationInstruments - /investigationinstruments/{id}: get: description: Retrieves a list of INVESTIGATIONINSTRUMENT objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - description: Success - the matching INVESTIGATIONINSTRUMENT + 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': @@ -6169,9 +6140,10 @@ 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: Get InvestigationInstruments tags: - InvestigationInstruments + /investigationinstruments/{id}: patch: description: Updates INVESTIGATIONINSTRUMENT with the specified ID with details provided in the request body @@ -6233,21 +6205,22 @@ paths: summary: Delete InvestigationInstruments by id tags: - InvestigationInstruments - /investigationinstruments/count: get: - description: Return the count of the INVESTIGATIONINSTRUMENT objects that would - be retrieved given the filters provided + description: Retrieves a list of INVESTIGATIONINSTRUMENT objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATIONINSTRUMENT objects + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + description: Success - the matching INVESTIGATIONINSTRUMENT '400': description: Bad request - Something was wrong with the request '401': @@ -6257,18 +6230,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InvestigationInstruments + summary: Find the INVESTIGATIONINSTRUMENT matching the given ID tags: - InvestigationInstruments - /investigationinstruments/findone: + /investigationinstruments/count: get: - description: Retrieves the first INVESTIGATIONINSTRUMENT objects that satisfies - the filters. + description: Return the count of the INVESTIGATIONINSTRUMENT objects that would + be retrieved given the filters provided 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: @@ -6276,9 +6246,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' - description: Success - a INVESTIGATIONINSTRUMENT object that satisfies the - filters + type: integer + description: Success - The count of the INVESTIGATIONINSTRUMENT objects '400': description: Bad request - Something was wrong with the request '401': @@ -6288,12 +6257,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATIONINSTRUMENT + summary: Count InvestigationInstruments tags: - InvestigationInstruments - /investigationparameters: + /investigationinstruments/findone: get: - description: Retrieves a list of INVESTIGATIONPARAMETER objects + description: Retrieves the first INVESTIGATIONINSTRUMENT objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -6306,10 +6276,9 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - type: array - description: Success - returns INVESTIGATIONPARAMETER that satisfy the filters + $ref: '#/components/schemas/INVESTIGATIONINSTRUMENT' + description: Success - a INVESTIGATIONINSTRUMENT object that satisfies the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -6319,11 +6288,12 @@ 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: Get single INVESTIGATIONINSTRUMENT tags: - - InvestigationParameters - patch: - description: Updates INVESTIGATIONPARAMETER object(s) with details provided + - InvestigationInstruments + /investigationparameters: + post: + description: Creates new INVESTIGATIONPARAMETER object(s) with details provided in the request body requestBody: content: @@ -6334,7 +6304,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONPARAMETER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -6346,7 +6316,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONPARAMETER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -6356,11 +6326,11 @@ 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: Create new InvestigationParameters tags: - InvestigationParameters - post: - description: Creates new INVESTIGATIONPARAMETER object(s) with details provided + patch: + description: Updates INVESTIGATIONPARAMETER object(s) with details provided in the request body requestBody: content: @@ -6371,7 +6341,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONPARAMETER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -6383,7 +6353,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONPARAMETER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6393,26 +6363,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InvestigationParameters + summary: Update InvestigationParameters tags: - InvestigationParameters - /investigationparameters/{id}: get: description: Retrieves a list of INVESTIGATIONPARAMETER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - description: Success - the matching INVESTIGATIONPARAMETER + 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': @@ -6422,9 +6393,10 @@ 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: Get InvestigationParameters tags: - InvestigationParameters + /investigationparameters/{id}: patch: description: Updates INVESTIGATIONPARAMETER with the specified ID with details provided in the request body @@ -6486,21 +6458,22 @@ paths: summary: Delete InvestigationParameters by id tags: - InvestigationParameters - /investigationparameters/count: get: - description: Return the count of the INVESTIGATIONPARAMETER objects that would - be retrieved given the filters provided + description: Retrieves a list of INVESTIGATIONPARAMETER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATIONPARAMETER objects + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + description: Success - the matching INVESTIGATIONPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -6510,18 +6483,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InvestigationParameters + summary: Find the INVESTIGATIONPARAMETER matching the given ID tags: - InvestigationParameters - /investigationparameters/findone: + /investigationparameters/count: get: - description: Retrieves the first INVESTIGATIONPARAMETER objects that satisfies - the filters. + description: Return the count of the INVESTIGATIONPARAMETER objects that would + be retrieved given the filters provided 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: @@ -6529,9 +6499,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONPARAMETER' - description: Success - a INVESTIGATIONPARAMETER object that satisfies the - filters + type: integer + description: Success - The count of the INVESTIGATIONPARAMETER objects '400': description: Bad request - Something was wrong with the request '401': @@ -6541,12 +6510,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATIONPARAMETER + summary: Count InvestigationParameters tags: - InvestigationParameters - /investigationtypes: + /investigationparameters/findone: get: - description: Retrieves a list of INVESTIGATIONTYPE objects + description: Retrieves the first INVESTIGATIONPARAMETER objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -6559,10 +6529,9 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - type: array - description: Success - returns INVESTIGATIONTYPE that satisfy the filters + $ref: '#/components/schemas/INVESTIGATIONPARAMETER' + description: Success - a INVESTIGATIONPARAMETER object that satisfies the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -6572,12 +6541,13 @@ 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: Get single INVESTIGATIONPARAMETER tags: - - InvestigationTypes - patch: - description: Updates INVESTIGATIONTYPE object(s) with details provided in the - request body + - InvestigationParameters + /investigationtypes: + post: + description: Creates new INVESTIGATIONTYPE object(s) with details provided in + the request body requestBody: content: application/json: @@ -6587,7 +6557,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONTYPE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -6599,7 +6569,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONTYPE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -6609,12 +6579,12 @@ 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: Create new InvestigationTypes tags: - InvestigationTypes - post: - description: Creates new INVESTIGATIONTYPE object(s) with details provided in - the request body + patch: + description: Updates INVESTIGATIONTYPE object(s) with details provided in the + request body requestBody: content: application/json: @@ -6624,7 +6594,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONTYPE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -6636,7 +6606,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONTYPE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6646,26 +6616,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InvestigationTypes + summary: Update InvestigationTypes tags: - InvestigationTypes - /investigationtypes/{id}: get: description: Retrieves a list of INVESTIGATIONTYPE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - description: Success - the matching INVESTIGATIONTYPE + 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': @@ -6675,9 +6646,10 @@ 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: Get InvestigationTypes tags: - InvestigationTypes + /investigationtypes/{id}: patch: description: Updates INVESTIGATIONTYPE with the specified ID with details provided in the request body @@ -6739,21 +6711,22 @@ paths: summary: Delete InvestigationTypes by id tags: - InvestigationTypes - /investigationtypes/count: get: - description: Return the count of the INVESTIGATIONTYPE objects that would be - retrieved given the filters provided + description: Retrieves a list of INVESTIGATIONTYPE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATIONTYPE objects + $ref: '#/components/schemas/INVESTIGATIONTYPE' + description: Success - the matching INVESTIGATIONTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -6763,18 +6736,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InvestigationTypes + summary: Find the INVESTIGATIONTYPE matching the given ID tags: - InvestigationTypes - /investigationtypes/findone: + /investigationtypes/count: get: - description: Retrieves the first INVESTIGATIONTYPE objects that satisfies the - filters. + description: Return the count of the INVESTIGATIONTYPE objects that would be + retrieved given the filters provided 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: @@ -6782,8 +6752,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONTYPE' - description: Success - a INVESTIGATIONTYPE object that satisfies the filters + type: integer + description: Success - The count of the INVESTIGATIONTYPE objects '400': description: Bad request - Something was wrong with the request '401': @@ -6793,12 +6763,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATIONTYPE + summary: Count InvestigationTypes tags: - InvestigationTypes - /investigationusers: + /investigationtypes/findone: get: - description: Retrieves a list of INVESTIGATIONUSER objects + description: Retrieves the first INVESTIGATIONTYPE objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -6811,10 +6782,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATIONUSER' - type: array - description: Success - returns INVESTIGATIONUSER that satisfy the filters + $ref: '#/components/schemas/INVESTIGATIONTYPE' + description: Success - a INVESTIGATIONTYPE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -6824,12 +6793,13 @@ 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: Get single INVESTIGATIONTYPE tags: - - InvestigationUsers - patch: - description: Updates INVESTIGATIONUSER object(s) with details provided in the - request body + - InvestigationTypes + /investigationusers: + post: + description: Creates new INVESTIGATIONUSER object(s) with details provided in + the request body requestBody: content: application/json: @@ -6839,7 +6809,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONUSER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -6851,7 +6821,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONUSER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -6861,12 +6831,12 @@ 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: Create new InvestigationUsers tags: - InvestigationUsers - post: - description: Creates new INVESTIGATIONUSER object(s) with details provided in - the request body + patch: + description: Updates INVESTIGATIONUSER object(s) with details provided in the + request body requestBody: content: application/json: @@ -6876,7 +6846,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONUSER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -6888,7 +6858,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATIONUSER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -6898,26 +6868,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new InvestigationUsers + summary: Update InvestigationUsers tags: - InvestigationUsers - /investigationusers/{id}: get: description: Retrieves a list of INVESTIGATIONUSER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONUSER' - description: Success - the matching INVESTIGATIONUSER + 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': @@ -6927,9 +6898,10 @@ 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: Get InvestigationUsers tags: - InvestigationUsers + /investigationusers/{id}: patch: description: Updates INVESTIGATIONUSER with the specified ID with details provided in the request body @@ -6991,21 +6963,22 @@ paths: summary: Delete InvestigationUsers by id tags: - InvestigationUsers - /investigationusers/count: get: - description: Return the count of the INVESTIGATIONUSER objects that would be - retrieved given the filters provided + description: Retrieves a list of INVESTIGATIONUSER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATIONUSER objects + $ref: '#/components/schemas/INVESTIGATIONUSER' + description: Success - the matching INVESTIGATIONUSER '400': description: Bad request - Something was wrong with the request '401': @@ -7015,18 +6988,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count InvestigationUsers + summary: Find the INVESTIGATIONUSER matching the given ID tags: - InvestigationUsers - /investigationusers/findone: + /investigationusers/count: get: - description: Retrieves the first INVESTIGATIONUSER objects that satisfies the - filters. + description: Return the count of the INVESTIGATIONUSER objects that would be + retrieved given the filters provided 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: @@ -7034,8 +7004,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATIONUSER' - description: Success - a INVESTIGATIONUSER object that satisfies the filters + type: integer + description: Success - The count of the INVESTIGATIONUSER objects '400': description: Bad request - Something was wrong with the request '401': @@ -7045,12 +7015,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATIONUSER + summary: Count InvestigationUsers tags: - InvestigationUsers - /investigations: + /investigationusers/findone: get: - description: Retrieves a list of INVESTIGATION objects + description: Retrieves the first INVESTIGATIONUSER objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -7063,10 +7034,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/INVESTIGATION' - type: array - description: Success - returns INVESTIGATION that satisfy the filters + $ref: '#/components/schemas/INVESTIGATIONUSER' + description: Success - a INVESTIGATIONUSER object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7076,12 +7045,13 @@ 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: Get single INVESTIGATIONUSER tags: - - Investigations - patch: - description: Updates INVESTIGATION object(s) with details provided in the request - body + - InvestigationUsers + /investigations: + post: + description: Creates new INVESTIGATION object(s) with details provided in the + request body requestBody: content: application/json: @@ -7091,7 +7061,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATION' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -7103,7 +7073,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATION' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -7113,12 +7083,12 @@ 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: Create new Investigations tags: - Investigations - post: - description: Creates new INVESTIGATION object(s) with details provided in the - request body + patch: + description: Updates INVESTIGATION object(s) with details provided in the request + body requestBody: content: application/json: @@ -7128,7 +7098,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATION' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -7140,7 +7110,7 @@ paths: - items: $ref: '#/components/schemas/INVESTIGATION' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7150,26 +7120,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Investigations + summary: Update Investigations tags: - Investigations - /investigations/{id}: get: description: Retrieves a list of INVESTIGATION objects parameters: - - description: The id of the entity to retrieve - in: path - name: id - required: true - schema: - type: integer - responses: - '200': - content: + - $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: - $ref: '#/components/schemas/INVESTIGATION' - description: Success - the matching INVESTIGATION + 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': @@ -7179,9 +7150,10 @@ 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: Get Investigations tags: - Investigations + /investigations/{id}: patch: description: Updates INVESTIGATION with the specified ID with details provided in the request body @@ -7243,21 +7215,22 @@ paths: summary: Delete Investigations by id tags: - Investigations - /investigations/count: get: - description: Return the count of the INVESTIGATION objects that would be retrieved - given the filters provided + description: Retrieves a list of INVESTIGATION objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the INVESTIGATION objects + $ref: '#/components/schemas/INVESTIGATION' + description: Success - the matching INVESTIGATION '400': description: Bad request - Something was wrong with the request '401': @@ -7267,17 +7240,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Investigations + summary: Find the INVESTIGATION matching the given ID tags: - Investigations - /investigations/findone: + /investigations/count: get: - description: Retrieves the first INVESTIGATION objects that satisfies the filters. + description: Return the count of the INVESTIGATION objects that would be retrieved + given the filters provided 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: @@ -7285,8 +7256,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/INVESTIGATION' - description: Success - a INVESTIGATION object that satisfies the filters + type: integer + description: Success - The count of the INVESTIGATION objects '400': description: Bad request - Something was wrong with the request '401': @@ -7296,12 +7267,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single INVESTIGATION + summary: Count Investigations tags: - Investigations - /jobs: + /investigations/findone: get: - description: Retrieves a list of JOB objects + description: Retrieves the first INVESTIGATION objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -7314,10 +7285,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/JOB' - type: array - description: Success - returns JOB that satisfy the filters + $ref: '#/components/schemas/INVESTIGATION' + description: Success - a INVESTIGATION object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7327,11 +7296,13 @@ 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: Get single INVESTIGATION tags: - - Jobs - patch: - description: Updates JOB object(s) with details provided in the request body + - Investigations + /jobs: + post: + description: Creates new JOB object(s) with details provided in the request + body requestBody: content: application/json: @@ -7341,7 +7312,7 @@ paths: - items: $ref: '#/components/schemas/JOB' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -7353,7 +7324,7 @@ paths: - items: $ref: '#/components/schemas/JOB' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -7363,12 +7334,11 @@ 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: Create new Jobs tags: - Jobs - post: - description: Creates new JOB object(s) with details provided in the request - body + patch: + description: Updates JOB object(s) with details provided in the request body requestBody: content: application/json: @@ -7378,7 +7348,7 @@ paths: - items: $ref: '#/components/schemas/JOB' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -7390,7 +7360,7 @@ paths: - items: $ref: '#/components/schemas/JOB' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7400,26 +7370,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Jobs + summary: Update Jobs tags: - Jobs - /jobs/{id}: get: description: Retrieves a list of JOB objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/JOB' - description: Success - the matching JOB + 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': @@ -7429,9 +7400,10 @@ 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: Get Jobs tags: - Jobs + /jobs/{id}: patch: description: Updates JOB with the specified ID with details provided in the request body @@ -7493,21 +7465,22 @@ paths: summary: Delete Jobs by id tags: - Jobs - /jobs/count: get: - description: Return the count of the JOB objects that would be retrieved given - the filters provided + description: Retrieves a list of JOB objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the JOB objects + $ref: '#/components/schemas/JOB' + description: Success - the matching JOB '400': description: Bad request - Something was wrong with the request '401': @@ -7517,17 +7490,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Jobs + summary: Find the JOB matching the given ID tags: - Jobs - /jobs/findone: + /jobs/count: get: - description: Retrieves the first JOB objects that satisfies the filters. + description: Return the count of the JOB objects that would be retrieved given + the filters provided 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: @@ -7535,8 +7506,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/JOB' - description: Success - a JOB object that satisfies the filters + type: integer + description: Success - The count of the JOB objects '400': description: Bad request - Something was wrong with the request '401': @@ -7546,12 +7517,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single JOB + summary: Count Jobs tags: - Jobs - /keywords: + /jobs/findone: get: - description: Retrieves a list of KEYWORD objects + description: Retrieves the first JOB objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -7564,10 +7535,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/KEYWORD' - type: array - description: Success - returns KEYWORD that satisfy the filters + $ref: '#/components/schemas/JOB' + description: Success - a JOB object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7577,11 +7546,12 @@ 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: Get single JOB tags: - - Keywords - patch: - description: Updates KEYWORD object(s) with details provided in the request + - Jobs + /keywords: + post: + description: Creates new KEYWORD object(s) with details provided in the request body requestBody: content: @@ -7592,7 +7562,7 @@ paths: - items: $ref: '#/components/schemas/KEYWORD' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -7604,7 +7574,7 @@ paths: - items: $ref: '#/components/schemas/KEYWORD' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -7614,11 +7584,11 @@ 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: Create new Keywords tags: - Keywords - post: - description: Creates new KEYWORD object(s) with details provided in the request + patch: + description: Updates KEYWORD object(s) with details provided in the request body requestBody: content: @@ -7629,7 +7599,7 @@ paths: - items: $ref: '#/components/schemas/KEYWORD' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -7641,7 +7611,7 @@ paths: - items: $ref: '#/components/schemas/KEYWORD' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7651,26 +7621,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Keywords + summary: Update Keywords tags: - Keywords - /keywords/{id}: get: description: Retrieves a list of KEYWORD objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/KEYWORD' - description: Success - the matching KEYWORD + 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': @@ -7680,9 +7651,10 @@ 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: Get Keywords tags: - Keywords + /keywords/{id}: patch: description: Updates KEYWORD with the specified ID with details provided in the request body @@ -7744,21 +7716,22 @@ paths: summary: Delete Keywords by id tags: - Keywords - /keywords/count: get: - description: Return the count of the KEYWORD objects that would be retrieved - given the filters provided + description: Retrieves a list of KEYWORD objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the KEYWORD objects + $ref: '#/components/schemas/KEYWORD' + description: Success - the matching KEYWORD '400': description: Bad request - Something was wrong with the request '401': @@ -7768,17 +7741,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Keywords + summary: Find the KEYWORD matching the given ID tags: - Keywords - /keywords/findone: + /keywords/count: get: - description: Retrieves the first KEYWORD objects that satisfies the filters. + description: Return the count of the KEYWORD objects that would be retrieved + given the filters provided 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: @@ -7786,8 +7757,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/KEYWORD' - description: Success - a KEYWORD object that satisfies the filters + type: integer + description: Success - The count of the KEYWORD objects '400': description: Bad request - Something was wrong with the request '401': @@ -7797,12 +7768,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single KEYWORD + summary: Count Keywords tags: - Keywords - /parametertypes: + /keywords/findone: get: - description: Retrieves a list of PARAMETERTYPE objects + description: Retrieves the first KEYWORD objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -7815,10 +7786,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/PARAMETERTYPE' - type: array - description: Success - returns PARAMETERTYPE that satisfy the filters + $ref: '#/components/schemas/KEYWORD' + description: Success - a KEYWORD object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -7828,12 +7797,13 @@ 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: Get single KEYWORD tags: - - ParameterTypes - patch: - description: Updates PARAMETERTYPE object(s) with details provided in the request - body + - Keywords + /parametertypes: + post: + description: Creates new PARAMETERTYPE object(s) with details provided in the + request body requestBody: content: application/json: @@ -7843,7 +7813,7 @@ paths: - items: $ref: '#/components/schemas/PARAMETERTYPE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -7855,7 +7825,7 @@ paths: - items: $ref: '#/components/schemas/PARAMETERTYPE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -7865,12 +7835,12 @@ 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: Create new ParameterTypes tags: - ParameterTypes - post: - description: Creates new PARAMETERTYPE object(s) with details provided in the - request body + patch: + description: Updates PARAMETERTYPE object(s) with details provided in the request + body requestBody: content: application/json: @@ -7880,7 +7850,7 @@ paths: - items: $ref: '#/components/schemas/PARAMETERTYPE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -7892,7 +7862,7 @@ paths: - items: $ref: '#/components/schemas/PARAMETERTYPE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -7902,26 +7872,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new ParameterTypes + summary: Update ParameterTypes tags: - ParameterTypes - /parametertypes/{id}: get: description: Retrieves a list of PARAMETERTYPE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/PARAMETERTYPE' - description: Success - the matching PARAMETERTYPE + 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': @@ -7931,9 +7902,10 @@ 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: Get ParameterTypes tags: - ParameterTypes + /parametertypes/{id}: patch: description: Updates PARAMETERTYPE with the specified ID with details provided in the request body @@ -7995,21 +7967,22 @@ paths: summary: Delete ParameterTypes by id tags: - ParameterTypes - /parametertypes/count: get: - description: Return the count of the PARAMETERTYPE objects that would be retrieved - given the filters provided + description: Retrieves a list of PARAMETERTYPE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the PARAMETERTYPE objects + $ref: '#/components/schemas/PARAMETERTYPE' + description: Success - the matching PARAMETERTYPE '400': description: Bad request - Something was wrong with the request '401': @@ -8019,17 +7992,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count ParameterTypes + summary: Find the PARAMETERTYPE matching the given ID tags: - ParameterTypes - /parametertypes/findone: + /parametertypes/count: get: - description: Retrieves the first PARAMETERTYPE objects that satisfies the filters. + description: Return the count of the PARAMETERTYPE objects that would be retrieved + given the filters provided 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: @@ -8037,8 +8008,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/PARAMETERTYPE' - description: Success - a PARAMETERTYPE object that satisfies the filters + type: integer + description: Success - The count of the PARAMETERTYPE objects '400': description: Bad request - Something was wrong with the request '401': @@ -8048,12 +8019,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single PARAMETERTYPE + summary: Count ParameterTypes tags: - ParameterTypes - /permissiblestringvalues: + /parametertypes/findone: get: - description: Retrieves a list of PERMISSIBLESTRINGVALUE objects + description: Retrieves the first PARAMETERTYPE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -8066,10 +8037,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - type: array - description: Success - returns PERMISSIBLESTRINGVALUE that satisfy the filters + $ref: '#/components/schemas/PARAMETERTYPE' + description: Success - a PARAMETERTYPE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -8079,11 +8048,12 @@ 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: Get single PARAMETERTYPE tags: - - PermissibleStringValues - patch: - description: Updates PERMISSIBLESTRINGVALUE object(s) with details provided + - ParameterTypes + /permissiblestringvalues: + post: + description: Creates new PERMISSIBLESTRINGVALUE object(s) with details provided in the request body requestBody: content: @@ -8094,7 +8064,7 @@ paths: - items: $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -8106,7 +8076,7 @@ paths: - items: $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -8116,11 +8086,11 @@ 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: Create new PermissibleStringValues tags: - PermissibleStringValues - post: - description: Creates new PERMISSIBLESTRINGVALUE object(s) with details provided + patch: + description: Updates PERMISSIBLESTRINGVALUE object(s) with details provided in the request body requestBody: content: @@ -8131,7 +8101,7 @@ paths: - items: $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -8143,7 +8113,7 @@ paths: - items: $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8153,26 +8123,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new PermissibleStringValues + summary: Update PermissibleStringValues tags: - PermissibleStringValues - /permissiblestringvalues/{id}: get: description: Retrieves a list of PERMISSIBLESTRINGVALUE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - description: Success - the matching PERMISSIBLESTRINGVALUE + 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': @@ -8182,9 +8153,10 @@ 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: Get PermissibleStringValues tags: - PermissibleStringValues + /permissiblestringvalues/{id}: patch: description: Updates PERMISSIBLESTRINGVALUE with the specified ID with details provided in the request body @@ -8246,21 +8218,22 @@ paths: summary: Delete PermissibleStringValues by id tags: - PermissibleStringValues - /permissiblestringvalues/count: get: - description: Return the count of the PERMISSIBLESTRINGVALUE objects that would - be retrieved given the filters provided + description: Retrieves a list of PERMISSIBLESTRINGVALUE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the PERMISSIBLESTRINGVALUE objects + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + description: Success - the matching PERMISSIBLESTRINGVALUE '400': description: Bad request - Something was wrong with the request '401': @@ -8270,18 +8243,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count PermissibleStringValues + summary: Find the PERMISSIBLESTRINGVALUE matching the given ID tags: - PermissibleStringValues - /permissiblestringvalues/findone: + /permissiblestringvalues/count: get: - description: Retrieves the first PERMISSIBLESTRINGVALUE objects that satisfies - the filters. + description: Return the count of the PERMISSIBLESTRINGVALUE objects that would + be retrieved given the filters provided 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: @@ -8289,9 +8259,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' - description: Success - a PERMISSIBLESTRINGVALUE object that satisfies the - filters + type: integer + description: Success - The count of the PERMISSIBLESTRINGVALUE objects '400': description: Bad request - Something was wrong with the request '401': @@ -8301,12 +8270,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single PERMISSIBLESTRINGVALUE + summary: Count PermissibleStringValues tags: - PermissibleStringValues - /publicsteps: + /permissiblestringvalues/findone: get: - description: Retrieves a list of PUBLICSTEP objects + description: Retrieves the first PERMISSIBLESTRINGVALUE objects that satisfies + the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -8319,10 +8289,9 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/PUBLICSTEP' - type: array - description: Success - returns PUBLICSTEP that satisfy the filters + $ref: '#/components/schemas/PERMISSIBLESTRINGVALUE' + description: Success - a PERMISSIBLESTRINGVALUE object that satisfies the + filters '400': description: Bad request - Something was wrong with the request '401': @@ -8332,11 +8301,12 @@ 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: Get single PERMISSIBLESTRINGVALUE tags: - - PublicSteps - patch: - description: Updates PUBLICSTEP object(s) with details provided in the request + - PermissibleStringValues + /publicsteps: + post: + description: Creates new PUBLICSTEP object(s) with details provided in the request body requestBody: content: @@ -8347,7 +8317,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICSTEP' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -8359,7 +8329,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICSTEP' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -8369,11 +8339,11 @@ 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: Create new PublicSteps tags: - PublicSteps - post: - description: Creates new PUBLICSTEP object(s) with details provided in the request + patch: + description: Updates PUBLICSTEP object(s) with details provided in the request body requestBody: content: @@ -8384,7 +8354,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICSTEP' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -8396,7 +8366,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICSTEP' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8406,26 +8376,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new PublicSteps + summary: Update PublicSteps tags: - PublicSteps - /publicsteps/{id}: get: description: Retrieves a list of PUBLICSTEP objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/PUBLICSTEP' - description: Success - the matching PUBLICSTEP + 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': @@ -8435,9 +8406,10 @@ 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: Get PublicSteps tags: - PublicSteps + /publicsteps/{id}: patch: description: Updates PUBLICSTEP with the specified ID with details provided in the request body @@ -8499,6 +8471,34 @@ paths: summary: Delete PublicSteps by id tags: - PublicSteps + get: + description: Retrieves a list of PUBLICSTEP objects + parameters: + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer + responses: + '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': + 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: Find the PUBLICSTEP matching the given ID + tags: + - PublicSteps /publicsteps/count: get: description: Return the count of the PUBLICSTEP objects that would be retrieved @@ -8556,39 +8556,9 @@ 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' - responses: - '200': - content: - application/json: - schema: - 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': - 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 Publications - tags: - - Publications - patch: - description: Updates PUBLICATION object(s) with details provided in the request - body + post: + description: Creates new PUBLICATION object(s) with details provided in the + request body requestBody: content: application/json: @@ -8598,7 +8568,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICATION' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -8610,7 +8580,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICATION' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -8620,12 +8590,12 @@ 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: Create new Publications tags: - Publications - post: - description: Creates new PUBLICATION object(s) with details provided in the - request body + patch: + description: Updates PUBLICATION object(s) with details provided in the request + body requestBody: content: application/json: @@ -8635,7 +8605,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICATION' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -8647,7 +8617,7 @@ paths: - items: $ref: '#/components/schemas/PUBLICATION' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8657,26 +8627,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Publications + summary: Update Publications tags: - Publications - /publications/{id}: get: description: Retrieves a list of PUBLICATION objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/PUBLICATION' - description: Success - the matching PUBLICATION + 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': @@ -8686,9 +8657,10 @@ 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: Get Publications tags: - Publications + /publications/{id}: patch: description: Updates PUBLICATION with the specified ID with details provided in the request body @@ -8750,21 +8722,22 @@ paths: summary: Delete Publications by id tags: - Publications - /publications/count: get: - description: Return the count of the PUBLICATION objects that would be retrieved - given the filters provided + description: Retrieves a list of PUBLICATION objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the PUBLICATION objects + $ref: '#/components/schemas/PUBLICATION' + description: Success - the matching PUBLICATION '400': description: Bad request - Something was wrong with the request '401': @@ -8774,17 +8747,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Publications + summary: Find the PUBLICATION matching the given ID tags: - Publications - /publications/findone: + /publications/count: get: - description: Retrieves the first PUBLICATION objects that satisfies the filters. + description: Return the count of the PUBLICATION objects that would be retrieved + given the filters provided 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: @@ -8792,8 +8763,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/PUBLICATION' - description: Success - a PUBLICATION object that satisfies the filters + type: integer + description: Success - The count of the PUBLICATION objects '400': description: Bad request - Something was wrong with the request '401': @@ -8803,12 +8774,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single PUBLICATION + summary: Count Publications tags: - Publications - /relateddatafiles: + /publications/findone: get: - description: Retrieves a list of RELATEDDATAFILE objects + description: Retrieves the first PUBLICATION objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -8821,10 +8792,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/RELATEDDATAFILE' - type: array - description: Success - returns RELATEDDATAFILE that satisfy the filters + $ref: '#/components/schemas/PUBLICATION' + description: Success - a PUBLICATION object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -8834,12 +8803,13 @@ 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: Get single PUBLICATION tags: - - RelatedDatafiles - patch: - description: Updates RELATEDDATAFILE object(s) with details provided in the - request body + - Publications + /relateddatafiles: + post: + description: Creates new RELATEDDATAFILE object(s) with details provided in + the request body requestBody: content: application/json: @@ -8849,7 +8819,7 @@ paths: - items: $ref: '#/components/schemas/RELATEDDATAFILE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -8861,7 +8831,7 @@ paths: - items: $ref: '#/components/schemas/RELATEDDATAFILE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -8871,12 +8841,12 @@ 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: Create new RelatedDatafiles tags: - RelatedDatafiles - post: - description: Creates new RELATEDDATAFILE object(s) with details provided in - the request body + patch: + description: Updates RELATEDDATAFILE object(s) with details provided in the + request body requestBody: content: application/json: @@ -8886,7 +8856,7 @@ paths: - items: $ref: '#/components/schemas/RELATEDDATAFILE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -8898,7 +8868,7 @@ paths: - items: $ref: '#/components/schemas/RELATEDDATAFILE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -8908,26 +8878,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new RelatedDatafiles + summary: Update RelatedDatafiles tags: - RelatedDatafiles - /relateddatafiles/{id}: get: description: Retrieves a list of RELATEDDATAFILE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/RELATEDDATAFILE' - description: Success - the matching RELATEDDATAFILE + 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': @@ -8937,9 +8908,10 @@ 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 RELATEDDATAFILE matching the given ID + summary: Get RelatedDatafiles tags: - RelatedDatafiles + /relateddatafiles/{id}: patch: description: Updates RELATEDDATAFILE with the specified ID with details provided in the request body @@ -9001,21 +8973,22 @@ paths: summary: Delete RelatedDatafiles by id tags: - RelatedDatafiles - /relateddatafiles/count: get: - description: Return the count of the RELATEDDATAFILE objects that would be retrieved - given the filters provided + description: Retrieves a list of RELATEDDATAFILE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the RELATEDDATAFILE objects + $ref: '#/components/schemas/RELATEDDATAFILE' + description: Success - the matching RELATEDDATAFILE '400': description: Bad request - Something was wrong with the request '401': @@ -9025,18 +8998,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count RelatedDatafiles + summary: Find the RELATEDDATAFILE matching the given ID tags: - RelatedDatafiles - /relateddatafiles/findone: + /relateddatafiles/count: get: - description: Retrieves the first RELATEDDATAFILE objects that satisfies the - filters. + description: Return the count of the RELATEDDATAFILE objects that would be retrieved + given the filters provided 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: @@ -9044,8 +9014,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/RELATEDDATAFILE' - description: Success - a RELATEDDATAFILE object that satisfies the filters + type: integer + description: Success - The count of the RELATEDDATAFILE objects '400': description: Bad request - Something was wrong with the request '401': @@ -9055,12 +9025,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single RELATEDDATAFILE + summary: Count RelatedDatafiles tags: - RelatedDatafiles - /rules: + /relateddatafiles/findone: get: - description: Retrieves a list of RULE objects + description: Retrieves the first RELATEDDATAFILE objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -9073,10 +9044,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/RULE' - type: array - description: Success - returns RULE that satisfy the filters + $ref: '#/components/schemas/RELATEDDATAFILE' + description: Success - a RELATEDDATAFILE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9086,11 +9055,13 @@ 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: Get single RELATEDDATAFILE tags: - - Rules - patch: - description: Updates RULE object(s) with details provided in the request body + - RelatedDatafiles + /rules: + post: + description: Creates new RULE object(s) with details provided in the request + body requestBody: content: application/json: @@ -9100,7 +9071,7 @@ paths: - items: $ref: '#/components/schemas/RULE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -9112,7 +9083,7 @@ paths: - items: $ref: '#/components/schemas/RULE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -9122,12 +9093,11 @@ 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: Create new Rules tags: - Rules - post: - description: Creates new RULE object(s) with details provided in the request - body + patch: + description: Updates RULE object(s) with details provided in the request body requestBody: content: application/json: @@ -9137,7 +9107,7 @@ paths: - items: $ref: '#/components/schemas/RULE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -9149,7 +9119,7 @@ paths: - items: $ref: '#/components/schemas/RULE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9159,26 +9129,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Rules + summary: Update Rules tags: - Rules - /rules/{id}: get: description: Retrieves a list of RULE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/RULE' - description: Success - the matching RULE + 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': @@ -9188,9 +9159,10 @@ 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: Get Rules tags: - Rules + /rules/{id}: patch: description: Updates RULE with the specified ID with details provided in the request body @@ -9252,21 +9224,22 @@ paths: summary: Delete Rules by id tags: - Rules - /rules/count: get: - description: Return the count of the RULE objects that would be retrieved given - the filters provided + description: Retrieves a list of RULE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the RULE objects + $ref: '#/components/schemas/RULE' + description: Success - the matching RULE '400': description: Bad request - Something was wrong with the request '401': @@ -9276,17 +9249,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Rules + summary: Find the RULE matching the given ID tags: - Rules - /rules/findone: + /rules/count: get: - description: Retrieves the first RULE objects that satisfies the filters. + description: Return the count of the RULE objects that would be retrieved given + the filters provided 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: @@ -9294,8 +9265,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/RULE' - description: Success - a RULE object that satisfies the filters + type: integer + description: Success - The count of the RULE objects '400': description: Bad request - Something was wrong with the request '401': @@ -9305,12 +9276,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single RULE + summary: Count Rules tags: - Rules - /sampleparameters: + /rules/findone: get: - description: Retrieves a list of SAMPLEPARAMETER objects + description: Retrieves the first RULE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -9323,10 +9294,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLEPARAMETER' - type: array - description: Success - returns SAMPLEPARAMETER that satisfy the filters + $ref: '#/components/schemas/RULE' + description: Success - a RULE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9336,12 +9305,13 @@ 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: Get single RULE tags: - - SampleParameters - patch: - description: Updates SAMPLEPARAMETER object(s) with details provided in the - request body + - Rules + /sampleparameters: + post: + description: Creates new SAMPLEPARAMETER object(s) with details provided in + the request body requestBody: content: application/json: @@ -9351,7 +9321,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLEPARAMETER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -9363,7 +9333,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLEPARAMETER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -9373,12 +9343,12 @@ 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: Create new SampleParameters tags: - SampleParameters - post: - description: Creates new SAMPLEPARAMETER object(s) with details provided in - the request body + patch: + description: Updates SAMPLEPARAMETER object(s) with details provided in the + request body requestBody: content: application/json: @@ -9388,7 +9358,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLEPARAMETER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -9400,7 +9370,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLEPARAMETER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9410,26 +9380,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new SampleParameters + summary: Update SampleParameters tags: - SampleParameters - /sampleparameters/{id}: get: description: Retrieves a list of SAMPLEPARAMETER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SAMPLEPARAMETER' - description: Success - the matching SAMPLEPARAMETER + 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': @@ -9439,9 +9410,10 @@ 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 SAMPLEPARAMETER matching the given ID + summary: Get SampleParameters tags: - SampleParameters + /sampleparameters/{id}: patch: description: Updates SAMPLEPARAMETER with the specified ID with details provided in the request body @@ -9503,21 +9475,22 @@ paths: summary: Delete SampleParameters by id tags: - SampleParameters - /sampleparameters/count: get: - description: Return the count of the SAMPLEPARAMETER objects that would be retrieved - given the filters provided + description: Retrieves a list of SAMPLEPARAMETER objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the SAMPLEPARAMETER objects + $ref: '#/components/schemas/SAMPLEPARAMETER' + description: Success - the matching SAMPLEPARAMETER '400': description: Bad request - Something was wrong with the request '401': @@ -9527,18 +9500,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count SampleParameters + summary: Find the SAMPLEPARAMETER matching the given ID tags: - SampleParameters - /sampleparameters/findone: + /sampleparameters/count: get: - description: Retrieves the first SAMPLEPARAMETER objects that satisfies the - filters. + description: Return the count of the SAMPLEPARAMETER objects that would be retrieved + given the filters provided 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: @@ -9546,8 +9516,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SAMPLEPARAMETER' - description: Success - a SAMPLEPARAMETER object that satisfies the filters + type: integer + description: Success - The count of the SAMPLEPARAMETER objects '400': description: Bad request - Something was wrong with the request '401': @@ -9557,12 +9527,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single SAMPLEPARAMETER + summary: Count SampleParameters tags: - SampleParameters - /sampletypes: + /sampleparameters/findone: get: - description: Retrieves a list of SAMPLETYPE objects + description: Retrieves the first SAMPLEPARAMETER objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -9575,10 +9546,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLETYPE' - type: array - description: Success - returns SAMPLETYPE that satisfy the filters + $ref: '#/components/schemas/SAMPLEPARAMETER' + description: Success - a SAMPLEPARAMETER object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9588,11 +9557,12 @@ 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: Get single SAMPLEPARAMETER tags: - - SampleTypes - patch: - description: Updates SAMPLETYPE object(s) with details provided in the request + - SampleParameters + /sampletypes: + post: + description: Creates new SAMPLETYPE object(s) with details provided in the request body requestBody: content: @@ -9603,7 +9573,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLETYPE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -9615,7 +9585,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLETYPE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -9625,11 +9595,11 @@ 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: Create new SampleTypes tags: - SampleTypes - post: - description: Creates new SAMPLETYPE object(s) with details provided in the request + patch: + description: Updates SAMPLETYPE object(s) with details provided in the request body requestBody: content: @@ -9640,7 +9610,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLETYPE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -9652,7 +9622,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLETYPE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9662,26 +9632,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new SampleTypes + summary: Update SampleTypes tags: - SampleTypes - /sampletypes/{id}: get: description: Retrieves a list of SAMPLETYPE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SAMPLETYPE' - description: Success - the matching SAMPLETYPE + 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': @@ -9691,9 +9662,10 @@ 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: Get SampleTypes tags: - SampleTypes + /sampletypes/{id}: patch: description: Updates SAMPLETYPE with the specified ID with details provided in the request body @@ -9755,21 +9727,22 @@ paths: summary: Delete SampleTypes by id tags: - SampleTypes - /sampletypes/count: get: - description: Return the count of the SAMPLETYPE objects that would be retrieved - given the filters provided + description: Retrieves a list of SAMPLETYPE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the SAMPLETYPE objects + $ref: '#/components/schemas/SAMPLETYPE' + description: Success - the matching SAMPLETYPE '400': description: Bad request - Something was wrong with the request '401': @@ -9779,17 +9752,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count SampleTypes + summary: Find the SAMPLETYPE matching the given ID tags: - SampleTypes - /sampletypes/findone: + /sampletypes/count: get: - description: Retrieves the first SAMPLETYPE objects that satisfies the filters. + description: Return the count of the SAMPLETYPE objects that would be retrieved + given the filters provided 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: @@ -9797,8 +9768,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SAMPLETYPE' - description: Success - a SAMPLETYPE object that satisfies the filters + type: integer + description: Success - The count of the SAMPLETYPE objects '400': description: Bad request - Something was wrong with the request '401': @@ -9808,12 +9779,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single SAMPLETYPE + summary: Count SampleTypes tags: - SampleTypes - /samples: + /sampletypes/findone: get: - description: Retrieves a list of SAMPLE objects + description: Retrieves the first SAMPLETYPE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -9826,10 +9797,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/SAMPLE' - type: array - description: Success - returns SAMPLE that satisfy the filters + $ref: '#/components/schemas/SAMPLETYPE' + description: Success - a SAMPLETYPE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -9839,11 +9808,13 @@ 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: Get single SAMPLETYPE tags: - - Samples - patch: - description: Updates SAMPLE object(s) with details provided in the request body + - SampleTypes + /samples: + post: + description: Creates new SAMPLE object(s) with details provided in the request + body requestBody: content: application/json: @@ -9853,7 +9824,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLE' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -9865,7 +9836,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLE' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -9875,12 +9846,11 @@ 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: Create new Samples tags: - Samples - post: - description: Creates new SAMPLE object(s) with details provided in the request - body + patch: + description: Updates SAMPLE object(s) with details provided in the request body requestBody: content: application/json: @@ -9890,7 +9860,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLE' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -9902,7 +9872,7 @@ paths: - items: $ref: '#/components/schemas/SAMPLE' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -9912,26 +9882,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Samples + summary: Update Samples tags: - Samples - /samples/{id}: get: description: Retrieves a list of SAMPLE objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SAMPLE' - description: Success - the matching SAMPLE + 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': @@ -9941,9 +9912,10 @@ 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 SAMPLE matching the given ID + summary: Get Samples tags: - Samples + /samples/{id}: patch: description: Updates SAMPLE with the specified ID with details provided in the request body @@ -10005,21 +9977,22 @@ paths: summary: Delete Samples by id tags: - Samples - /samples/count: get: - description: Return the count of the SAMPLE objects that would be retrieved - given the filters provided + description: Retrieves a list of SAMPLE objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the SAMPLE objects + $ref: '#/components/schemas/SAMPLE' + description: Success - the matching SAMPLE '400': description: Bad request - Something was wrong with the request '401': @@ -10029,17 +10002,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Samples + summary: Find the SAMPLE matching the given ID tags: - Samples - /samples/findone: + /samples/count: get: - description: Retrieves the first SAMPLE objects that satisfies the filters. + description: Return the count of the SAMPLE objects that would be retrieved + given the filters provided 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: @@ -10047,8 +10018,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SAMPLE' - description: Success - a SAMPLE object that satisfies the filters + type: integer + description: Success - The count of the SAMPLE objects '400': description: Bad request - Something was wrong with the request '401': @@ -10058,12 +10029,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single SAMPLE + summary: Count Samples tags: - Samples - /shifts: + /samples/findone: get: - description: Retrieves a list of SHIFT objects + description: Retrieves the first SAMPLE objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -10076,10 +10047,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/SHIFT' - type: array - description: Success - returns SHIFT that satisfy the filters + $ref: '#/components/schemas/SAMPLE' + description: Success - a SAMPLE object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10089,11 +10058,13 @@ 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: Get single SAMPLE tags: - - Shifts - patch: - description: Updates SHIFT object(s) with details provided in the request body + - Samples + /shifts: + post: + description: Creates new SHIFT object(s) with details provided in the request + body requestBody: content: application/json: @@ -10103,7 +10074,7 @@ paths: - items: $ref: '#/components/schemas/SHIFT' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -10115,7 +10086,7 @@ paths: - items: $ref: '#/components/schemas/SHIFT' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -10125,12 +10096,11 @@ 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: Create new Shifts tags: - Shifts - post: - description: Creates new SHIFT object(s) with details provided in the request - body + patch: + description: Updates SHIFT object(s) with details provided in the request body requestBody: content: application/json: @@ -10140,7 +10110,7 @@ paths: - items: $ref: '#/components/schemas/SHIFT' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -10152,7 +10122,7 @@ paths: - items: $ref: '#/components/schemas/SHIFT' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10162,26 +10132,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Shifts + summary: Update Shifts tags: - Shifts - /shifts/{id}: get: description: Retrieves a list of SHIFT objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/SHIFT' - description: Success - the matching SHIFT + 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': @@ -10191,9 +10162,10 @@ 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: Get Shifts tags: - Shifts + /shifts/{id}: patch: description: Updates SHIFT with the specified ID with details provided in the request body @@ -10255,21 +10227,22 @@ paths: summary: Delete Shifts by id tags: - Shifts - /shifts/count: get: - description: Return the count of the SHIFT objects that would be retrieved given - the filters provided + description: Retrieves a list of SHIFT objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the SHIFT objects + $ref: '#/components/schemas/SHIFT' + description: Success - the matching SHIFT '400': description: Bad request - Something was wrong with the request '401': @@ -10279,17 +10252,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Shifts + summary: Find the SHIFT matching the given ID tags: - Shifts - /shifts/findone: + /shifts/count: get: - description: Retrieves the first SHIFT objects that satisfies the filters. + description: Return the count of the SHIFT objects that would be retrieved given + the filters provided 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: @@ -10297,8 +10268,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/SHIFT' - description: Success - a SHIFT object that satisfies the filters + type: integer + description: Success - The count of the SHIFT objects '400': description: Bad request - Something was wrong with the request '401': @@ -10308,12 +10279,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single SHIFT + summary: Count Shifts tags: - Shifts - /studies: + /shifts/findone: get: - description: Retrieves a list of STUDY objects + description: Retrieves the first SHIFT objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -10326,10 +10297,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/STUDY' - type: array - description: Success - returns STUDY that satisfy the filters + $ref: '#/components/schemas/SHIFT' + description: Success - a SHIFT object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10339,11 +10308,13 @@ 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: Get single SHIFT tags: - - Studies - patch: - description: Updates STUDY object(s) with details provided in the request body + - Shifts + /studies: + post: + description: Creates new STUDY object(s) with details provided in the request + body requestBody: content: application/json: @@ -10353,7 +10324,7 @@ paths: - items: $ref: '#/components/schemas/STUDY' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -10365,7 +10336,7 @@ paths: - items: $ref: '#/components/schemas/STUDY' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -10375,12 +10346,11 @@ 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: Create new Studies tags: - Studies - post: - description: Creates new STUDY object(s) with details provided in the request - body + patch: + description: Updates STUDY object(s) with details provided in the request body requestBody: content: application/json: @@ -10390,7 +10360,7 @@ paths: - items: $ref: '#/components/schemas/STUDY' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -10402,7 +10372,7 @@ paths: - items: $ref: '#/components/schemas/STUDY' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10412,26 +10382,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Studies + summary: Update Studies tags: - Studies - /studies/{id}: get: description: Retrieves a list of STUDY objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/STUDY' - description: Success - the matching STUDY + 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': @@ -10441,9 +10412,10 @@ 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 STUDY matching the given ID + summary: Get Studies tags: - Studies + /studies/{id}: patch: description: Updates STUDY with the specified ID with details provided in the request body @@ -10505,21 +10477,22 @@ paths: summary: Delete Studies by id tags: - Studies - /studies/count: get: - description: Return the count of the STUDY objects that would be retrieved given - the filters provided + description: Retrieves a list of STUDY objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the STUDY objects + $ref: '#/components/schemas/STUDY' + description: Success - the matching STUDY '400': description: Bad request - Something was wrong with the request '401': @@ -10529,17 +10502,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count Studies + summary: Find the STUDY matching the given ID tags: - Studies - /studies/findone: + /studies/count: get: - description: Retrieves the first STUDY objects that satisfies the filters. + description: Return the count of the STUDY objects that would be retrieved given + the filters provided 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: @@ -10547,8 +10518,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/STUDY' - description: Success - a STUDY object that satisfies the filters + type: integer + description: Success - The count of the STUDY objects '400': description: Bad request - Something was wrong with the request '401': @@ -10558,12 +10529,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single STUDY + summary: Count Studies tags: - Studies - /studyinvestigations: + /studies/findone: get: - description: Retrieves a list of STUDYINVESTIGATION objects + description: Retrieves the first STUDY objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -10576,10 +10547,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/STUDYINVESTIGATION' - type: array - description: Success - returns STUDYINVESTIGATION that satisfy the filters + $ref: '#/components/schemas/STUDY' + description: Success - a STUDY object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10589,12 +10558,13 @@ 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: Get single STUDY tags: - - StudyInvestigations - patch: - description: Updates STUDYINVESTIGATION object(s) with details provided in the - request body + - Studies + /studyinvestigations: + post: + description: Creates new STUDYINVESTIGATION object(s) with details provided + in the request body requestBody: content: application/json: @@ -10604,7 +10574,7 @@ paths: - items: $ref: '#/components/schemas/STUDYINVESTIGATION' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -10616,7 +10586,7 @@ paths: - items: $ref: '#/components/schemas/STUDYINVESTIGATION' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -10626,12 +10596,12 @@ 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: Create new StudyInvestigations tags: - StudyInvestigations - post: - description: Creates new STUDYINVESTIGATION object(s) with details provided - in the request body + patch: + description: Updates STUDYINVESTIGATION object(s) with details provided in the + request body requestBody: content: application/json: @@ -10641,7 +10611,7 @@ paths: - items: $ref: '#/components/schemas/STUDYINVESTIGATION' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -10653,7 +10623,7 @@ paths: - items: $ref: '#/components/schemas/STUDYINVESTIGATION' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10663,26 +10633,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new StudyInvestigations + summary: Update StudyInvestigations tags: - StudyInvestigations - /studyinvestigations/{id}: get: description: Retrieves a list of STUDYINVESTIGATION objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/STUDYINVESTIGATION' - description: Success - the matching STUDYINVESTIGATION + 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': @@ -10692,9 +10663,10 @@ 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: Get StudyInvestigations tags: - StudyInvestigations + /studyinvestigations/{id}: patch: description: Updates STUDYINVESTIGATION with the specified ID with details provided in the request body @@ -10756,21 +10728,22 @@ paths: summary: Delete StudyInvestigations by id tags: - StudyInvestigations - /studyinvestigations/count: get: - description: Return the count of the STUDYINVESTIGATION objects that would be - retrieved given the filters provided + description: Retrieves a list of STUDYINVESTIGATION objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the STUDYINVESTIGATION objects + $ref: '#/components/schemas/STUDYINVESTIGATION' + description: Success - the matching STUDYINVESTIGATION '400': description: Bad request - Something was wrong with the request '401': @@ -10780,18 +10753,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count StudyInvestigations + summary: Find the STUDYINVESTIGATION matching the given ID tags: - StudyInvestigations - /studyinvestigations/findone: + /studyinvestigations/count: get: - description: Retrieves the first STUDYINVESTIGATION objects that satisfies the - filters. + description: Return the count of the STUDYINVESTIGATION objects that would be + retrieved given the filters provided 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: @@ -10799,8 +10769,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/STUDYINVESTIGATION' - description: Success - a STUDYINVESTIGATION object that satisfies the filters + type: integer + description: Success - The count of the STUDYINVESTIGATION objects '400': description: Bad request - Something was wrong with the request '401': @@ -10810,12 +10780,13 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single STUDYINVESTIGATION + summary: Count StudyInvestigations tags: - StudyInvestigations - /usergroups: + /studyinvestigations/findone: get: - description: Retrieves a list of USERGROUP objects + description: Retrieves the first STUDYINVESTIGATION objects that satisfies the + filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -10828,10 +10799,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/USERGROUP' - type: array - description: Success - returns USERGROUP that satisfy the filters + $ref: '#/components/schemas/STUDYINVESTIGATION' + description: Success - a STUDYINVESTIGATION object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -10841,11 +10810,12 @@ 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: Get single STUDYINVESTIGATION tags: - - UserGroups - patch: - description: Updates USERGROUP object(s) with details provided in the request + - StudyInvestigations + /usergroups: + post: + description: Creates new USERGROUP object(s) with details provided in the request body requestBody: content: @@ -10856,7 +10826,7 @@ paths: - items: $ref: '#/components/schemas/USERGROUP' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -10868,7 +10838,7 @@ paths: - items: $ref: '#/components/schemas/USERGROUP' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -10878,11 +10848,11 @@ 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: Create new UserGroups tags: - UserGroups - post: - description: Creates new USERGROUP object(s) with details provided in the request + patch: + description: Updates USERGROUP object(s) with details provided in the request body requestBody: content: @@ -10893,7 +10863,7 @@ paths: - items: $ref: '#/components/schemas/USERGROUP' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -10905,7 +10875,7 @@ paths: - items: $ref: '#/components/schemas/USERGROUP' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -10915,26 +10885,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new UserGroups + summary: Update UserGroups tags: - UserGroups - /usergroups/{id}: get: description: Retrieves a list of USERGROUP objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/USERGROUP' - description: Success - the matching USERGROUP + 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': @@ -10944,9 +10915,10 @@ 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 USERGROUP matching the given ID + summary: Get UserGroups tags: - UserGroups + /usergroups/{id}: patch: description: Updates USERGROUP with the specified ID with details provided in the request body @@ -11008,21 +10980,22 @@ paths: summary: Delete UserGroups by id tags: - UserGroups - /usergroups/count: get: - description: Return the count of the USERGROUP objects that would be retrieved - given the filters provided + description: Retrieves a list of USERGROUP objects parameters: - - $ref: '#/components/parameters/WHERE_FILTER' - - $ref: '#/components/parameters/DISTINCT_FILTER' - - $ref: '#/components/parameters/INCLUDE_FILTER' + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer responses: '200': content: application/json: schema: - type: integer - description: Success - The count of the USERGROUP objects + $ref: '#/components/schemas/USERGROUP' + description: Success - the matching USERGROUP '400': description: Bad request - Something was wrong with the request '401': @@ -11032,17 +11005,15 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Count UserGroups + summary: Find the USERGROUP matching the given ID tags: - UserGroups - /usergroups/findone: + /usergroups/count: get: - description: Retrieves the first USERGROUP objects that satisfies the filters. + description: Return the count of the USERGROUP objects that would be retrieved + given the filters provided 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: @@ -11050,8 +11021,8 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/USERGROUP' - description: Success - a USERGROUP object that satisfies the filters + type: integer + description: Success - The count of the USERGROUP objects '400': description: Bad request - Something was wrong with the request '401': @@ -11061,12 +11032,12 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Get single USERGROUP + summary: Count UserGroups tags: - UserGroups - /users: + /usergroups/findone: get: - description: Retrieves a list of USER objects + description: Retrieves the first USERGROUP objects that satisfies the filters. parameters: - $ref: '#/components/parameters/WHERE_FILTER' - $ref: '#/components/parameters/ORDER_FILTER' @@ -11079,10 +11050,8 @@ paths: content: application/json: schema: - items: - $ref: '#/components/schemas/USER' - type: array - description: Success - returns USER that satisfy the filters + $ref: '#/components/schemas/USERGROUP' + description: Success - a USERGROUP object that satisfies the filters '400': description: Bad request - Something was wrong with the request '401': @@ -11092,11 +11061,13 @@ 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: Get single USERGROUP tags: - - Users - patch: - description: Updates USER object(s) with details provided in the request body + - UserGroups + /users: + post: + description: Creates new USER object(s) with details provided in the request + body requestBody: content: application/json: @@ -11106,7 +11077,7 @@ paths: - items: $ref: '#/components/schemas/USER' type: array - description: The values to use to update the object(s) with + description: The values to use to create the new object(s) with required: true responses: '200': @@ -11118,7 +11089,7 @@ paths: - items: $ref: '#/components/schemas/USER' type: array - description: Success - returns the updated object(s) + description: Success - returns the created object '400': description: Bad request - Something was wrong with the request '401': @@ -11128,12 +11099,11 @@ 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: Create new Users tags: - Users - post: - description: Creates new USER object(s) with details provided in the request - body + patch: + description: Updates USER object(s) with details provided in the request body requestBody: content: application/json: @@ -11143,7 +11113,7 @@ paths: - items: $ref: '#/components/schemas/USER' type: array - description: The values to use to create the new object(s) with + description: The values to use to update the object(s) with required: true responses: '200': @@ -11155,7 +11125,7 @@ paths: - items: $ref: '#/components/schemas/USER' type: array - description: Success - returns the created object + description: Success - returns the updated object(s) '400': description: Bad request - Something was wrong with the request '401': @@ -11165,26 +11135,27 @@ paths: description: Forbidden - The session ID provided is invalid '404': description: No such record - Unable to find a record in the database - summary: Create new Users + summary: Update Users tags: - Users - /users/{id}: get: description: Retrieves a list of USER objects parameters: - - description: The id of the entity to retrieve - 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' responses: '200': content: application/json: schema: - $ref: '#/components/schemas/USER' - description: Success - the matching USER + 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': @@ -11194,9 +11165,10 @@ 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: Get Users tags: - Users + /users/{id}: patch: description: Updates USER with the specified ID with details provided in the request body @@ -11258,6 +11230,34 @@ paths: summary: Delete Users by id tags: - Users + get: + description: Retrieves a list of USER objects + parameters: + - description: The id of the entity to retrieve + in: path + name: id + required: true + schema: + type: integer + responses: + '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': + 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: Find the USER matching the given ID + tags: + - Users /users/count: get: description: Return the count of the USER objects that would be retrieved given @@ -11315,34 +11315,41 @@ paths: tags: - Users /sessions: - get: - description: Gives details of a user's session + post: + description: Generates a sessionID if the user has correct credentials + requestBody: + content: + application/json: + schema: + properties: + mechanism: + type: string + password: + type: string + username: + type: string + type: object + description: User credentials to login with + required: true responses: - '200': + '201': content: application/json: schema: properties: - EXPIREDATETIME: - description: When this session expires - example: '2017-07-21T17:32:28Z' - format: datetime - type: string - ID: - description: The session ID + sessionID: + description: Session ID example: xxxxxx-yyyyyyy-zzzzzz type: string - USERNAME: - description: Username associated with this session - type: string type: object - description: Success - a user's session details - '401': - description: Unauthorized - No session ID was found in the HTTP Authorization - header + description: Success - returns a session ID + '400': + description: Bad request. User credentials were not provided in request + body. '403': - description: Forbidden - The session ID provided is invalid - summary: Get session details + description: Forbidden. User credentials were invalid + security: [] + summary: Login tags: - Sessions put: @@ -11381,39 +11388,34 @@ paths: summary: Delete session tags: - Sessions - post: - description: Generates a sessionID if the user has correct credentials - requestBody: - content: - application/json: - schema: - properties: - password: - type: string - username: - type: string - type: object - description: User credentials to login with - required: true + get: + description: Gives details of a user's session responses: - '201': + '200': content: application/json: schema: properties: - sessionID: - description: Session ID + EXPIREDATETIME: + description: When this session expires + example: '2017-07-21T17:32:28Z' + format: datetime + type: string + ID: + description: The session ID example: xxxxxx-yyyyyyy-zzzzzz type: string + USERNAME: + description: Username associated with this session + type: string type: object - description: Success - returns a session ID - '400': - description: Bad request. User credentials were not provided in request - body. + description: Success - a user's session details + '401': + description: Unauthorized - No session ID was found in the HTTP Authorization + header '403': - description: Forbidden. User credentials were invalid - security: [] - summary: Login + description: Forbidden - The session ID provided is invalid + summary: Get session details tags: - Sessions /instruments/{id}/facilitycycles: