{
  "openapi": "3.0.0",
  "info": {
    "title": "grasfe-grapi",
    "version": "0.0.1",
    "description": "grasfe-grapi of grapple-solutions.com",
    "contact": {
      "name": "grapple-solutions.com",
      "email": "info@grapple-solutions.com"
    }
  },
  "paths": {
    "/mbdwic/dealerships/count": {
      "get": {
        "x-controller-name": "mbdwicDealershipsController",
        "x-operation-name": "count",
        "tags": [
          "mbdwicDealershipsController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicDealerships count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicDealerships.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicDealerships.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicDealerships>"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicDealershipsController.count"
      }
    },
    "/mbdwic/dealerships/{id}": {
      "get": {
        "x-controller-name": "mbdwicDealershipsController",
        "x-operation-name": "findById",
        "tags": [
          "mbdwicDealershipsController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicDealerships instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicDealershipsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicDealerships.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicDealershipsController.findById"
      }
    },
    "/mbdwic/dealerships": {
      "get": {
        "x-controller-name": "mbdwicDealershipsController",
        "x-operation-name": "find",
        "tags": [
          "mbdwicDealershipsController"
        ],
        "responses": {
          "200": {
            "description": "Array of mbdwicDealerships instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/mbdwicDealershipsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicDealerships.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicDealershipsController.find"
      }
    },
    "/mbdwic/extractDataWithGemini": {
      "post": {
        "x-controller-name": "mbdwicGeminiController",
        "x-operation-name": "extractDataWithGemini",
        "tags": [
          "mbdwicGeminiController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Extracted data using mbdwicGemini API"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true
        },
        "operationId": "mbdwicGeminiController.extractDataWithmbdwicGemini"
      }
    },
    "/mbdwic/parts/count": {
      "get": {
        "x-controller-name": "mbdwicPartsController",
        "x-operation-name": "count",
        "tags": [
          "mbdwicPartsController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicParts count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicParts.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicParts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicParts>"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicPartsController.count"
      }
    },
    "/mbdwic/parts/{id}": {
      "get": {
        "x-controller-name": "mbdwicPartsController",
        "x-operation-name": "findById",
        "tags": [
          "mbdwicPartsController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicParts instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicPartsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicParts.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicPartsController.findById"
      }
    },
    "/mbdwic/parts": {
      "get": {
        "x-controller-name": "mbdwicPartsController",
        "x-operation-name": "find",
        "tags": [
          "mbdwicPartsController"
        ],
        "responses": {
          "200": {
            "description": "Array of mbdwicParts instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/mbdwicPartsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicParts.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "mbdwicPartsController.find"
      }
    },
    "/mbdwic/personalinformations/{id}": {
      "put": {
        "x-controller-name": "mbdwicPersonalinformationController",
        "x-operation-name": "replaceById",
        "tags": [
          "mbdwicPersonalinformationController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPersonalinformation was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPersonalinformation"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPersonalinformationController.replaceById"
      },
      "patch": {
        "x-controller-name": "mbdwicPersonalinformationController",
        "x-operation-name": "updateById",
        "tags": [
          "mbdwicPersonalinformationController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPersonalinformation was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPersonalinformationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPersonalinformationController.updateById"
      }
    },
    "/mbdwic/personalinformations": {
      "post": {
        "x-controller-name": "mbdwicPersonalinformationController",
        "x-operation-name": "create",
        "tags": [
          "mbdwicPersonalinformationController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicPersonalinformation instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicPersonalinformation"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicNewPersonalinformation"
              }
            }
          }
        },
        "operationId": "mbdwicPersonalinformationController.create"
      },
      "patch": {
        "x-controller-name": "mbdwicPersonalinformationController",
        "x-operation-name": "updateAll",
        "tags": [
          "mbdwicPersonalinformationController"
        ],
        "responses": {
          "200": {
            "description": "Count of mbdwicPersonalinformation models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicPersonalinformation.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicPersonalinformation>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPersonalinformationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPersonalinformationController.updateAll"
      }
    },
    "/mbdwic/purchasepaybacks/{id}": {
      "put": {
        "x-controller-name": "mbdwicPurchasepaybacksController",
        "x-operation-name": "replaceById",
        "tags": [
          "mbdwicPurchasepaybacksController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasepaybacks was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasepaybacks"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasepaybacksController.replaceById"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasepaybacksController",
        "x-operation-name": "updateById",
        "tags": [
          "mbdwicPurchasepaybacksController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasepaybacks was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasepaybacksPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasepaybacksController.updateById"
      }
    },
    "/mbdwic/purchasepaybacks": {
      "post": {
        "x-controller-name": "mbdwicPurchasepaybacksController",
        "x-operation-name": "create",
        "tags": [
          "mbdwicPurchasepaybacksController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicPurchasepaybacks instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicPurchasepaybacks"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicNewPurchasepaybacks"
              }
            }
          }
        },
        "operationId": "mbdwicPurchasepaybacksController.create"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasepaybacksController",
        "x-operation-name": "updateAll",
        "tags": [
          "mbdwicPurchasepaybacksController"
        ],
        "responses": {
          "200": {
            "description": "Count of mbdwicPurchasepaybacks models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicPurchasepaybacks.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicPurchasepaybacks>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasepaybacksPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasepaybacksController.updateAll"
      }
    },
    "/mbdwic/purchasereceipts/{id}": {
      "put": {
        "x-controller-name": "mbdwicPurchasereceiptsController",
        "x-operation-name": "replaceById",
        "tags": [
          "mbdwicPurchasereceiptsController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasereceipts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceipts"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsController.replaceById"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasereceiptsController",
        "x-operation-name": "updateById",
        "tags": [
          "mbdwicPurchasereceiptsController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasereceipts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceiptsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsController.updateById"
      }
    },
    "/mbdwic/purchasereceipts": {
      "post": {
        "x-controller-name": "mbdwicPurchasereceiptsController",
        "x-operation-name": "create",
        "tags": [
          "mbdwicPurchasereceiptsController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicPurchasereceipts instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicPurchasereceipts"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicNewPurchasereceipts"
              }
            }
          }
        },
        "operationId": "mbdwicPurchasereceiptsController.create"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasereceiptsController",
        "x-operation-name": "updateAll",
        "tags": [
          "mbdwicPurchasereceiptsController"
        ],
        "responses": {
          "200": {
            "description": "Count of mbdwicPurchasereceipts models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicPurchasereceipts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicPurchasereceipts>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceiptsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsController.updateAll"
      }
    },
    "/mbdwic/purchasereceipts-backups/{id}": {
      "put": {
        "x-controller-name": "mbdwicPurchasereceiptsBackupController",
        "x-operation-name": "replaceById",
        "tags": [
          "mbdwicPurchasereceiptsBackupController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasereceiptsBackup was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceiptsBackup"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsBackupController.replaceById"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasereceiptsBackupController",
        "x-operation-name": "updateById",
        "tags": [
          "mbdwicPurchasereceiptsBackupController"
        ],
        "responses": {
          "204": {
            "description": "mbdwicPurchasereceiptsBackup was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceiptsBackupPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsBackupController.updateById"
      }
    },
    "/mbdwic/purchasereceipts-backups": {
      "post": {
        "x-controller-name": "mbdwicPurchasereceiptsBackupController",
        "x-operation-name": "create",
        "tags": [
          "mbdwicPurchasereceiptsBackupController"
        ],
        "responses": {
          "200": {
            "description": "mbdwicPurchasereceiptsBackup instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicPurchasereceiptsBackup"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicNewPurchasereceiptsBackup"
              }
            }
          }
        },
        "operationId": "mbdwicPurchasereceiptsBackupController.create"
      },
      "patch": {
        "x-controller-name": "mbdwicPurchasereceiptsBackupController",
        "x-operation-name": "updateAll",
        "tags": [
          "mbdwicPurchasereceiptsBackupController"
        ],
        "responses": {
          "200": {
            "description": "Count of mbdwicPurchasereceiptsBackup models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/mbdwicloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "mbdwicPurchasereceiptsBackup.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<mbdwicPurchasereceiptsBackup>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/mbdwicPurchasereceiptsBackupPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "mbdwicPurchasereceiptsBackupController.updateAll"
      }
    },
    "/mcp/messages": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpMessages",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.handleMcpMessages"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpMessages"
      }
    },
    "/mcp/sse": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpSsePost",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.handleMcpSsePost"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpSsePost"
      },
      "get": {
        "x-controller-name": "McpController",
        "x-operation-name": "mcpSse",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.mcpSse"
          }
        },
        "operationId": "McpController.mcpSse"
      }
    },
    "/mcp": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpLegacy",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "MCP Streamable HTTP + Legacy Synchronous Endpoint",
            "content": {
              "text/event-stream": {
                "schema": {
                  "type": "string"
                }
              },
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpLegacy"
      }
    },
    "/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponse"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    },
    "/ping2": {
      "get": {
        "x-controller-name": "Ping2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "Ping2Controller"
        ],
        "responses": {
          "200": {
            "description": "Ping2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ping2Response"
                }
              }
            }
          }
        },
        "operationId": "Ping2Controller.ping2"
      }
    }
  },
  "servers": [
    {
      "url": "https://mbdwic-pr-176-mbdwic-grasfe-grapi.nop.grpl.io"
    }
  ],
  "components": {
    "schemas": {
      "mbdwicDealerships": {
        "title": "mbdwicDealerships",
        "type": "object",
        "properties": {
          "betriebsart": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "marke": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ort": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "plz": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "strasse": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnr": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnrhb": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicPurchasereceipts": {
        "title": "mbdwicPurchasereceipts",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasereceipts, >, schemaOptions: { exclude: [] })",
        "properties": {
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasereceipts, >"
      },
      "mbdwicPersonalinformation": {
        "title": "mbdwicPersonalinformation",
        "type": "object",
        "properties": {
          "address": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "addressGeolocation": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "addressVerified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "company": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "email": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "iban": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanAccountHolder": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phone": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phoneVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicUser": {
        "title": "mbdwicUser",
        "type": "object",
        "description": "mbdwic{\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicNewUser": {
        "title": "mbdwicNewUser",
        "type": "object",
        "description": "(tsType: Omit<mbdwicUser, 'id'>, schemaOptions: { title: 'mbdwicNewUser', exclude: [ 'id' ] }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicUser, 'id'>"
      },
      "mbdwicNewUserRequest": {
        "title": "mbdwicNewUserRequest",
        "type": "object",
        "properties": {
          "id": {
            "x-generated": false,
            "x-primary-key": true,
            "type": "string"
          },
          "realm": {
            "x-primary-key": false,
            "type": "string"
          },
          "username": {
            "x-primary-key": false,
            "type": "string"
          },
          "email": {
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string"
          },
          "emailVerified": {
            "x-primary-key": false,
            "type": "boolean"
          },
          "verificationToken": {
            "x-primary-key": false,
            "type": "string"
          },
          "password": {
            "x-primary-key": false,
            "type": "string"
          }
        },
        "description": "mbdwic{\"indexInfo\":{\"email\":{\"unique\":true}}}",
        "required": [
          "email",
          "password"
        ],
        "additionalProperties": true
      },
      "mbdwicUserWithRelations": {
        "title": "mbdwicUserWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicUserWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicUserWithRelations, >"
      },
      "mbdwicUserPartial": {
        "title": "mbdwicUserPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicUser>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicUser>"
      },
      "mbdwicUserCredentials": {
        "title": "mbdwicUserCredentials",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicUserCredentialsWithRelations": {
        "title": "mbdwicUserCredentialsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicUserCredentialsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicUserCredentialsWithRelations, >"
      },
      "mbdwicNewUserCredentials": {
        "title": "mbdwicNewUserCredentials",
        "type": "object",
        "description": "(tsType: Omit<mbdwicUserCredentials, 'id'>, schemaOptions: { title: 'mbdwicNewUserCredentials', exclude: [ 'id' ] })",
        "properties": {
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicUserCredentials, 'id'>"
      },
      "mbdwicUserCredentialsPartial": {
        "title": "mbdwicUserCredentialsPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicUserCredentials>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicUserCredentials>"
      },
      "mbdwicPurchasereceiptsWithRelations": {
        "title": "mbdwicPurchasereceiptsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasereceiptsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealerships": {
            "$ref": "#/components/schemas/mbdwicDealerships"
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasereceiptsWithRelations, >"
      },
      "mbdwicNewPurchasereceipts": {
        "title": "mbdwicNewPurchasereceipts",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasereceipts, 'id'>, schemaOptions: { title: 'mbdwicNewPurchasereceipts', exclude: [ 'id' ] })",
        "properties": {
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasereceipts, 'id'>"
      },
      "mbdwicPurchasereceiptsPartial": {
        "title": "mbdwicPurchasereceiptsPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicPurchasereceipts>, schemaOptions: { partial: true })",
        "properties": {
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicPurchasereceipts>"
      },
      "mbdwicPurchasereceiptsBackup": {
        "title": "mbdwicPurchasereceiptsBackup",
        "type": "object",
        "properties": {
          "cashbackType": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "excludeReason": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "originalPurchasereceiptId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicPurchasereceiptsBackupWithRelations": {
        "title": "mbdwicPurchasereceiptsBackupWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasereceiptsBackupWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "cashbackType": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "excludeReason": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "originalPurchasereceiptId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasereceiptsBackupWithRelations, >"
      },
      "mbdwicNewPurchasereceiptsBackup": {
        "title": "mbdwicNewPurchasereceiptsBackup",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasereceiptsBackup, 'id'>, schemaOptions: { title: 'mbdwicNewPurchasereceiptsBackup', exclude: [ 'id' ] })",
        "properties": {
          "cashbackType": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "excludeReason": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "originalPurchasereceiptId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasereceiptsBackup, 'id'>"
      },
      "mbdwicPurchasereceiptsBackupPartial": {
        "title": "mbdwicPurchasereceiptsBackupPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicPurchasereceiptsBackup>, schemaOptions: { partial: true })",
        "properties": {
          "cashbackType": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "datesIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealerOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "dealershipIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "dealershipsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "excludeReason": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "finNumber": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "originalPurchasereceiptId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "partsCount": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsId": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsIdentified": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "partsOverrride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchaseDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "purchaseDateOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "raw": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rekognitionResponse": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "storage": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "storageOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switch": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchIdentified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "switchOverride": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vatDeductionEligible": {
            "x-length": 10,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVersion": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVin": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vehicleVinIdentified": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicPurchasereceiptsBackup>"
      },
      "mbdwicPurchasepaybacks": {
        "title": "mbdwicPurchasepaybacks",
        "type": "object",
        "properties": {
          "approvedDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "cashbackType": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "completed": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "date": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "paidDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "personalinformationIdIdentified": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "personalinformationOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "questions": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rejectionReason": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "status": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "personalinformationId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchasereceiptsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "cashbackType"
        ],
        "additionalProperties": true
      },
      "mbdwicPurchasepaybacksWithRelations": {
        "title": "mbdwicPurchasepaybacksWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasepaybacksWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "approvedDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "cashbackType": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "completed": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "date": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "paidDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "personalinformationIdIdentified": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "personalinformationOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "questions": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rejectionReason": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "status": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "personalinformationId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchasereceiptsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "personalinformation": {
            "$ref": "#/components/schemas/mbdwicPersonalinformation"
          },
          "purchasereceipts": {
            "$ref": "#/components/schemas/mbdwicPurchasereceipts"
          }
        },
        "required": [
          "cashbackType"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasepaybacksWithRelations, >"
      },
      "mbdwicNewPurchasepaybacks": {
        "title": "mbdwicNewPurchasepaybacks",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPurchasepaybacks, 'id'>, schemaOptions: { title: 'mbdwicNewPurchasepaybacks', exclude: [ 'id' ] })",
        "properties": {
          "approvedDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "cashbackType": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "completed": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "date": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "paidDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "personalinformationIdIdentified": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "personalinformationOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "questions": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rejectionReason": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "status": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "personalinformationId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchasereceiptsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "cashbackType"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPurchasepaybacks, 'id'>"
      },
      "mbdwicPurchasepaybacksPartial": {
        "title": "mbdwicPurchasepaybacksPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicPurchasepaybacks>, schemaOptions: { partial: true })",
        "properties": {
          "approvedDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "cashbackType": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "completed": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "date": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "paidDate": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "personalinformationIdIdentified": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "personalinformationOverride": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "questions": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "rejectionReason": {
            "x-length": 10000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "status": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "personalinformationId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "purchasereceiptsId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicPurchasepaybacks>"
      },
      "mbdwicPersonalinformationWithRelations": {
        "title": "mbdwicPersonalinformationWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPersonalinformationWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "address": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "addressGeolocation": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "addressVerified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "company": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "email": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "iban": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanAccountHolder": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phone": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phoneVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPersonalinformationWithRelations, >"
      },
      "mbdwicNewPersonalinformation": {
        "title": "mbdwicNewPersonalinformation",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPersonalinformation, 'id'>, schemaOptions: { title: 'mbdwicNewPersonalinformation', exclude: [ 'id' ] })",
        "properties": {
          "address": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "addressGeolocation": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "addressVerified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "company": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "email": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "iban": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanAccountHolder": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phone": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phoneVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPersonalinformation, 'id'>"
      },
      "mbdwicPersonalinformationPartial": {
        "title": "mbdwicPersonalinformationPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicPersonalinformation>, schemaOptions: { partial: true })",
        "properties": {
          "address": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "addressGeolocation": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "addressVerified": {
            "x-length": 1000,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "company": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "email": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "iban": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanAccountHolder": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ibanVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phone": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "phoneVerified": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicPersonalinformation>"
      },
      "mbdwicParts": {
        "title": "mbdwicParts",
        "type": "object",
        "properties": {
          "category": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "key": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "mbdwicPartsWithRelations": {
        "title": "mbdwicPartsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicPartsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "category": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "key": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicPartsWithRelations, >"
      },
      "mbdwicNewParts": {
        "title": "mbdwicNewParts",
        "type": "object",
        "description": "(tsType: Omit<mbdwicParts, 'id'>, schemaOptions: { title: 'mbdwicNewParts', exclude: [ 'id' ] })",
        "properties": {
          "category": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "key": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicParts, 'id'>"
      },
      "mbdwicPartsPartial": {
        "title": "mbdwicPartsPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicParts>, schemaOptions: { partial: true })",
        "properties": {
          "category": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "key": {
            "x-length": 100,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicParts>"
      },
      "mbdwicDealershipsWithRelations": {
        "title": "mbdwicDealershipsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<mbdwicDealershipsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "betriebsart": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "marke": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ort": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "plz": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "strasse": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnr": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnrhb": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicDealershipsWithRelations, >"
      },
      "mbdwicNewDealerships": {
        "title": "mbdwicNewDealerships",
        "type": "object",
        "description": "(tsType: Omit<mbdwicDealerships, 'id'>, schemaOptions: { title: 'mbdwicNewDealerships', exclude: [ 'id' ] })",
        "properties": {
          "betriebsart": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "marke": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ort": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "plz": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "strasse": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnr": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnrhb": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<mbdwicDealerships, 'id'>"
      },
      "mbdwicDealershipsPartial": {
        "title": "mbdwicDealershipsPartial",
        "type": "object",
        "description": "(tsType: Partial<mbdwicDealerships>, schemaOptions: { partial: true })",
        "properties": {
          "betriebsart": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "marke": {
            "x-length": 45,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "ort": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "plz": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "strasse": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnr": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "vfnrhb": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<mbdwicDealerships>"
      },
      "mbdwicloopback.Count": {
        "type": "object",
        "title": "mbdwicloopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "mbdwicDealerships.Filter": {
        "type": "object",
        "title": "mbdwicDealerships.Filter",
        "properties": {
          "where": {
            "title": "Dealerships.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicDealerships>"
      },
      "mbdwicDealerships.Filter1": {
        "type": "object",
        "title": "mbdwicDealerships.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "betriebsart": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "marke": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "ort": {
                    "type": "boolean"
                  },
                  "plz": {
                    "type": "boolean"
                  },
                  "strasse": {
                    "type": "boolean"
                  },
                  "vfnr": {
                    "type": "boolean"
                  },
                  "vfnrhb": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "betriebsart"
                },
                "uniqueItems": true
              }
            ],
            "title": "Dealerships.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicDealerships>"
      },
      "mbdwicDealerships.Filter2": {
        "type": "object",
        "title": "mbdwicDealerships.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Dealerships.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "betriebsart": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "marke": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "ort": {
                    "type": "boolean"
                  },
                  "plz": {
                    "type": "boolean"
                  },
                  "strasse": {
                    "type": "boolean"
                  },
                  "vfnr": {
                    "type": "boolean"
                  },
                  "vfnrhb": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "betriebsart"
                },
                "uniqueItems": true
              }
            ],
            "title": "Dealerships.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicDealerships>"
      },
      "mbdwicParts.Filter": {
        "type": "object",
        "title": "mbdwicParts.Filter",
        "properties": {
          "where": {
            "title": "Parts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicParts>"
      },
      "mbdwicParts.Filter1": {
        "type": "object",
        "title": "mbdwicParts.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "category": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "key": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "category"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicParts>"
      },
      "mbdwicParts.Filter2": {
        "type": "object",
        "title": "mbdwicParts.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Parts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "category": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "key": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "category"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicParts>"
      },
      "mbdwicPersonalinformation.Filter": {
        "type": "object",
        "title": "mbdwicPersonalinformation.Filter",
        "properties": {
          "where": {
            "title": "Personalinformation.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPersonalinformation>"
      },
      "mbdwicPersonalinformation.Filter1": {
        "type": "object",
        "title": "mbdwicPersonalinformation.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "boolean"
                  },
                  "addressGeolocation": {
                    "type": "boolean"
                  },
                  "addressVerified": {
                    "type": "boolean"
                  },
                  "company": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "iban": {
                    "type": "boolean"
                  },
                  "ibanAccountHolder": {
                    "type": "boolean"
                  },
                  "ibanVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "phoneVerified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "address"
                },
                "uniqueItems": true
              }
            ],
            "title": "Personalinformation.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPersonalinformation>"
      },
      "mbdwicPersonalinformation.Filter2": {
        "type": "object",
        "title": "mbdwicPersonalinformation.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Personalinformation.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "boolean"
                  },
                  "addressGeolocation": {
                    "type": "boolean"
                  },
                  "addressVerified": {
                    "type": "boolean"
                  },
                  "company": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "iban": {
                    "type": "boolean"
                  },
                  "ibanAccountHolder": {
                    "type": "boolean"
                  },
                  "ibanVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "phoneVerified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "address"
                },
                "uniqueItems": true
              }
            ],
            "title": "Personalinformation.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPersonalinformation>"
      },
      "mbdwicPingResponse": {
        "type": "object",
        "title": "mbdwicPingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "mbdwicPing2Response": {
        "type": "object",
        "title": "mbdwicPing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "mbdwicPurchasepaybacks.Filter": {
        "type": "object",
        "title": "mbdwicPurchasepaybacks.Filter",
        "properties": {
          "where": {
            "title": "Purchasepaybacks.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasepaybacks>"
      },
      "mbdwicPurchasepaybacks.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "mbdwicPurchasepaybacks.ScopeFilter"
      },
      "mbdwicPurchasepaybacks.IncludeFilter.Items": {
        "title": "mbdwicPurchasepaybacks.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "personalinformation",
              "purchasereceipts"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/mbdwicPurchasepaybacks.ScopeFilter"
          }
        }
      },
      "mbdwicPurchasepaybacks.Filter1": {
        "type": "object",
        "title": "mbdwicPurchasepaybacks.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "approvedDate": {
                    "type": "boolean"
                  },
                  "cashbackType": {
                    "type": "boolean"
                  },
                  "completed": {
                    "type": "boolean"
                  },
                  "date": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "paidDate": {
                    "type": "boolean"
                  },
                  "personalinformationIdIdentified": {
                    "type": "boolean"
                  },
                  "personalinformationOverride": {
                    "type": "boolean"
                  },
                  "questions": {
                    "type": "boolean"
                  },
                  "rejectionReason": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "personalinformationId": {
                    "type": "boolean"
                  },
                  "purchasereceiptsId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "approvedDate"
                },
                "uniqueItems": true
              }
            ],
            "title": "Purchasepaybacks.Fields"
          },
          "include": {
            "title": "Purchasepaybacks.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/mbdwicPurchasepaybacks.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasepaybacks>"
      },
      "mbdwicPurchasepaybacks.Filter2": {
        "type": "object",
        "title": "mbdwicPurchasepaybacks.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Purchasepaybacks.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "approvedDate": {
                    "type": "boolean"
                  },
                  "cashbackType": {
                    "type": "boolean"
                  },
                  "completed": {
                    "type": "boolean"
                  },
                  "date": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "paidDate": {
                    "type": "boolean"
                  },
                  "personalinformationIdIdentified": {
                    "type": "boolean"
                  },
                  "personalinformationOverride": {
                    "type": "boolean"
                  },
                  "questions": {
                    "type": "boolean"
                  },
                  "rejectionReason": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "personalinformationId": {
                    "type": "boolean"
                  },
                  "purchasereceiptsId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "approvedDate"
                },
                "uniqueItems": true
              }
            ],
            "title": "Purchasepaybacks.Fields"
          },
          "include": {
            "title": "Purchasepaybacks.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/mbdwicPurchasepaybacks.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasepaybacks>"
      },
      "mbdwicPurchasereceipts.Filter": {
        "type": "object",
        "title": "mbdwicPurchasereceipts.Filter",
        "properties": {
          "where": {
            "title": "Purchasereceipts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceipts>"
      },
      "mbdwicPurchasereceipts.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "mbdwicPurchasereceipts.ScopeFilter"
      },
      "mbdwicPurchasereceipts.IncludeFilter.Items": {
        "title": "mbdwicPurchasereceipts.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "dealerships"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/mbdwicPurchasereceipts.ScopeFilter"
          }
        }
      },
      "mbdwicPurchasereceipts.Filter1": {
        "type": "object",
        "title": "mbdwicPurchasereceipts.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "datesIdentified": {
                    "type": "boolean"
                  },
                  "dealerOverride": {
                    "type": "boolean"
                  },
                  "dealershipIdentified": {
                    "type": "boolean"
                  },
                  "finNumber": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "partsCount": {
                    "type": "boolean"
                  },
                  "partsId": {
                    "type": "boolean"
                  },
                  "partsIdentified": {
                    "type": "boolean"
                  },
                  "partsOverrride": {
                    "type": "boolean"
                  },
                  "purchaseDate": {
                    "type": "boolean"
                  },
                  "purchaseDateOverride": {
                    "type": "boolean"
                  },
                  "raw": {
                    "type": "boolean"
                  },
                  "rekognitionResponse": {
                    "type": "boolean"
                  },
                  "storage": {
                    "type": "boolean"
                  },
                  "storageIdentified": {
                    "type": "boolean"
                  },
                  "storageOverride": {
                    "type": "boolean"
                  },
                  "switch": {
                    "type": "boolean"
                  },
                  "switchIdentified": {
                    "type": "boolean"
                  },
                  "switchOverride": {
                    "type": "boolean"
                  },
                  "vatDeductionEligible": {
                    "type": "boolean"
                  },
                  "vehicleVersion": {
                    "type": "boolean"
                  },
                  "vehicleVin": {
                    "type": "boolean"
                  },
                  "vehicleVinIdentified": {
                    "type": "boolean"
                  },
                  "dealershipsId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "datesIdentified"
                },
                "uniqueItems": true
              }
            ],
            "title": "Purchasereceipts.Fields"
          },
          "include": {
            "title": "Purchasereceipts.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/mbdwicPurchasereceipts.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceipts>"
      },
      "mbdwicPurchasereceipts.Filter2": {
        "type": "object",
        "title": "mbdwicPurchasereceipts.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Purchasereceipts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "datesIdentified": {
                    "type": "boolean"
                  },
                  "dealerOverride": {
                    "type": "boolean"
                  },
                  "dealershipIdentified": {
                    "type": "boolean"
                  },
                  "finNumber": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "partsCount": {
                    "type": "boolean"
                  },
                  "partsId": {
                    "type": "boolean"
                  },
                  "partsIdentified": {
                    "type": "boolean"
                  },
                  "partsOverrride": {
                    "type": "boolean"
                  },
                  "purchaseDate": {
                    "type": "boolean"
                  },
                  "purchaseDateOverride": {
                    "type": "boolean"
                  },
                  "raw": {
                    "type": "boolean"
                  },
                  "rekognitionResponse": {
                    "type": "boolean"
                  },
                  "storage": {
                    "type": "boolean"
                  },
                  "storageIdentified": {
                    "type": "boolean"
                  },
                  "storageOverride": {
                    "type": "boolean"
                  },
                  "switch": {
                    "type": "boolean"
                  },
                  "switchIdentified": {
                    "type": "boolean"
                  },
                  "switchOverride": {
                    "type": "boolean"
                  },
                  "vatDeductionEligible": {
                    "type": "boolean"
                  },
                  "vehicleVersion": {
                    "type": "boolean"
                  },
                  "vehicleVin": {
                    "type": "boolean"
                  },
                  "vehicleVinIdentified": {
                    "type": "boolean"
                  },
                  "dealershipsId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "datesIdentified"
                },
                "uniqueItems": true
              }
            ],
            "title": "Purchasereceipts.Fields"
          },
          "include": {
            "title": "Purchasereceipts.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/mbdwicPurchasereceipts.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceipts>"
      },
      "mbdwicPurchasereceiptsBackup.Filter": {
        "type": "object",
        "title": "mbdwicPurchasereceiptsBackup.Filter",
        "properties": {
          "where": {
            "title": "PurchasereceiptsBackup.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceiptsBackup>"
      },
      "mbdwicPurchasereceiptsBackup.Filter1": {
        "type": "object",
        "title": "mbdwicPurchasereceiptsBackup.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "cashbackType": {
                    "type": "boolean"
                  },
                  "datesIdentified": {
                    "type": "boolean"
                  },
                  "dealerOverride": {
                    "type": "boolean"
                  },
                  "dealershipIdentified": {
                    "type": "boolean"
                  },
                  "dealershipsId": {
                    "type": "boolean"
                  },
                  "excludeReason": {
                    "type": "boolean"
                  },
                  "finNumber": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "originalPurchasereceiptId": {
                    "type": "boolean"
                  },
                  "partsCount": {
                    "type": "boolean"
                  },
                  "partsId": {
                    "type": "boolean"
                  },
                  "partsIdentified": {
                    "type": "boolean"
                  },
                  "partsOverrride": {
                    "type": "boolean"
                  },
                  "purchaseDate": {
                    "type": "boolean"
                  },
                  "purchaseDateOverride": {
                    "type": "boolean"
                  },
                  "raw": {
                    "type": "boolean"
                  },
                  "rekognitionResponse": {
                    "type": "boolean"
                  },
                  "storage": {
                    "type": "boolean"
                  },
                  "storageIdentified": {
                    "type": "boolean"
                  },
                  "storageOverride": {
                    "type": "boolean"
                  },
                  "switch": {
                    "type": "boolean"
                  },
                  "switchIdentified": {
                    "type": "boolean"
                  },
                  "switchOverride": {
                    "type": "boolean"
                  },
                  "vatDeductionEligible": {
                    "type": "boolean"
                  },
                  "vehicleVersion": {
                    "type": "boolean"
                  },
                  "vehicleVin": {
                    "type": "boolean"
                  },
                  "vehicleVinIdentified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "cashbackType"
                },
                "uniqueItems": true
              }
            ],
            "title": "PurchasereceiptsBackup.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceiptsBackup>"
      },
      "mbdwicPurchasereceiptsBackup.Filter2": {
        "type": "object",
        "title": "mbdwicPurchasereceiptsBackup.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "PurchasereceiptsBackup.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "cashbackType": {
                    "type": "boolean"
                  },
                  "datesIdentified": {
                    "type": "boolean"
                  },
                  "dealerOverride": {
                    "type": "boolean"
                  },
                  "dealershipIdentified": {
                    "type": "boolean"
                  },
                  "dealershipsId": {
                    "type": "boolean"
                  },
                  "excludeReason": {
                    "type": "boolean"
                  },
                  "finNumber": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "originalPurchasereceiptId": {
                    "type": "boolean"
                  },
                  "partsCount": {
                    "type": "boolean"
                  },
                  "partsId": {
                    "type": "boolean"
                  },
                  "partsIdentified": {
                    "type": "boolean"
                  },
                  "partsOverrride": {
                    "type": "boolean"
                  },
                  "purchaseDate": {
                    "type": "boolean"
                  },
                  "purchaseDateOverride": {
                    "type": "boolean"
                  },
                  "raw": {
                    "type": "boolean"
                  },
                  "rekognitionResponse": {
                    "type": "boolean"
                  },
                  "storage": {
                    "type": "boolean"
                  },
                  "storageIdentified": {
                    "type": "boolean"
                  },
                  "storageOverride": {
                    "type": "boolean"
                  },
                  "switch": {
                    "type": "boolean"
                  },
                  "switchIdentified": {
                    "type": "boolean"
                  },
                  "switchOverride": {
                    "type": "boolean"
                  },
                  "vatDeductionEligible": {
                    "type": "boolean"
                  },
                  "vehicleVersion": {
                    "type": "boolean"
                  },
                  "vehicleVin": {
                    "type": "boolean"
                  },
                  "vehicleVinIdentified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "cashbackType"
                },
                "uniqueItems": true
              }
            ],
            "title": "PurchasereceiptsBackup.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicPurchasereceiptsBackup>"
      },
      "mbdwicUserCredentials.Filter": {
        "type": "object",
        "title": "mbdwicUserCredentials.Filter",
        "properties": {
          "where": {
            "title": "UserCredentials.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUserCredentials>"
      },
      "mbdwicUserCredentials.Filter1": {
        "type": "object",
        "title": "mbdwicUserCredentials.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UserCredentials.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUserCredentials>"
      },
      "mbdwicUserCredentials.Filter2": {
        "type": "object",
        "title": "mbdwicUserCredentials.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "UserCredentials.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UserCredentials.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUserCredentials>"
      },
      "mbdwicUser.Filter": {
        "type": "object",
        "title": "mbdwicUser.Filter",
        "properties": {
          "where": {
            "title": "User.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUser>"
      },
      "mbdwicUser.Filter1": {
        "type": "object",
        "title": "mbdwicUser.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "boolean"
                  },
                  "emailVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "verificationToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "User.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUser>"
      },
      "mbdwicUser.Filter2": {
        "type": "object",
        "title": "mbdwicUser.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "User.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "boolean"
                  },
                  "emailVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "verificationToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "User.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<mbdwicUser>"
      },
      "MbdwicPurchasereceipts": {
        "title": "MbdwicPurchasereceipts",
        "type": "object",
        "properties": {
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicPurchasereceiptsPartial": {
        "title": "MbdwicPurchasereceiptsPartial",
        "type": "object",
        "properties": {
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicNewPurchasereceipts": {
        "title": "MbdwicNewPurchasereceipts",
        "type": "object",
        "properties": {
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicPurchasereceiptsBackup": {
        "title": "MbdwicPurchasereceiptsBackup",
        "type": "object",
        "properties": {
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "excludeReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "originalPurchasereceiptId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicPurchasereceiptsBackupPartial": {
        "title": "MbdwicPurchasereceiptsBackupPartial",
        "type": "object",
        "properties": {
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "excludeReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "originalPurchasereceiptId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicNewPurchasereceiptsBackup": {
        "title": "MbdwicNewPurchasereceiptsBackup",
        "type": "object",
        "properties": {
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "datesIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealerOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "dealershipIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "dealershipsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "excludeReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "finNumber": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "originalPurchasereceiptId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "partsCount": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "partsId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "partsOverrride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "purchaseDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "purchaseDateOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "raw": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "rekognitionResponse": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "storage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "storageOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switch": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "switchOverride": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vatDeductionEligible": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10,
            "x-generated": false
          },
          "vehicleVersion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "vehicleVin": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "vehicleVinIdentified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicPurchasepaybacks": {
        "title": "MbdwicPurchasepaybacks",
        "type": "object",
        "properties": {
          "approvedDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "completed": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "date": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "paidDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "personalinformationIdIdentified": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "personalinformationOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "questions": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "rejectionReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "status": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "personalinformationId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "purchasereceiptsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "required": [
          "cashbackType"
        ],
        "additionalProperties": false
      },
      "MbdwicPurchasepaybacksPartial": {
        "title": "MbdwicPurchasepaybacksPartial",
        "type": "object",
        "properties": {
          "approvedDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "completed": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "date": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "paidDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "personalinformationIdIdentified": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "personalinformationOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "questions": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "rejectionReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "status": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "personalinformationId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "purchasereceiptsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicNewPurchasepaybacks": {
        "title": "MbdwicNewPurchasepaybacks",
        "type": "object",
        "properties": {
          "approvedDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "cashbackType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "completed": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "date": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "paidDate": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "personalinformationIdIdentified": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "personalinformationOverride": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "questions": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "rejectionReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10000,
            "x-generated": false
          },
          "status": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 45,
            "x-generated": false
          },
          "personalinformationId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          },
          "purchasereceiptsId": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false
          }
        },
        "required": [
          "cashbackType"
        ],
        "additionalProperties": false
      },
      "MbdwicPersonalinformation": {
        "title": "MbdwicPersonalinformation",
        "type": "object",
        "properties": {
          "address": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "addressGeolocation": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "addressVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "company": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "iban": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanAccountHolder": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phoneVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicPersonalinformationPartial": {
        "title": "MbdwicPersonalinformationPartial",
        "type": "object",
        "properties": {
          "address": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "addressGeolocation": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "addressVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "company": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "iban": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanAccountHolder": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phoneVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "MbdwicNewPersonalinformation": {
        "title": "MbdwicNewPersonalinformation",
        "type": "object",
        "properties": {
          "address": {
            "x-primary-key": false,
            "type": "object",
            "x-generated": false
          },
          "addressGeolocation": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "addressVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000,
            "x-generated": false
          },
          "company": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "iban": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanAccountHolder": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "ibanVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          },
          "phoneVerified": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100,
            "x-generated": false
          }
        },
        "additionalProperties": false
      },
      "PingResponse": {
        "type": "object",
        "title": "PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "Ping2Response": {
        "type": "object",
        "title": "Ping2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      }
    },
    "securitySchemes": {
      "jwt": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "x-fuzzy-search-endpoints": []
}