{
  "openapi": "3.0.0",
  "info": {
    "title": "AutoDAP API",
    "version": "1.0.0"
  },
  "paths": {
    "/Authenticate": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "login",
        "tags": [
          "UserController"
        ],
        "responses": {},
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/credentials"
              }
            }
          }
        },
        "operationId": "UserController.login"
      }
    },
    "/LPdata/LPBVI": {
      "get": {
        "x-controller-name": "VISDATA",
        "x-operation-name": "getVehicleInfoByRegPlate",
        "tags": [
          "VISDATA"
        ],
        "responses": {
          "200": {
            "description": "Vehicle Info By Reg Plate",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "header": {
            "apikey": "Pass api key in header",
            "token": "Pass token in header"
          }
        },
        "parameters": [
          {
            "name": "apikey",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "regplate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vin",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "VISDATA.getVehicleInfoByRegPlate"
      }
    },
    "/LPdata/LPBVIV1": {
      "get": {
        "x-controller-name": "VISDATA",
        "x-operation-name": "getVehicleInfoByRegPlateV2",
        "tags": [
          "VISDATA"
        ],
        "responses": {
          "200": {
            "description": "Vehicle Info By Reg Plate",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "header": {
            "apikey": "Pass api key in header",
            "token": "Pass token in header"
          }
        },
        "parameters": [
          {
            "name": "regplate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vin",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "apikey",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "VISDATA.getVehicleInfoByRegPlateV2"
      }
    },
    "/getJSONData": {
      "post": {
        "x-controller-name": "VISDATA",
        "x-operation-name": "getJSONData",
        "tags": [
          "VISDATA"
        ],
        "responses": {
          "200": {
            "description": "Store JSON data in db",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "header": {
            "apikey": "Pass api key in header",
            "token": "Pass token in header"
          }
        },
        "parameters": [
          {
            "name": "apikey",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "VISDATA.getJSONData"
      }
    }
  },
  "components": {
    "schemas": {
      "credentials": {}
    }
  },
  "servers": [
    {
      "url": "https://api01.autodap.parts"
    }
  ]
}