Requires Authentication via 'x-api-key' header.
Returns an array of recorded violation entries for a given USDOT number
curl --request GET \
--url /v3/history/violation/:USDotNumber \
--header 'x-api-key: YourApiKey'
Source on Github
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://saferwebapi.com/v3/history/violation/:USDotNumber");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "x-api-key: YourApiKey");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
CURLcode ret = curl_easy_perform(hnd);
Source on Github
var client = new RestClient("https://saferwebapi.com/v3/history/violation/:USDotNumber");
var request = new RestRequest(Method.GET);
request.AddHeader("x-api-key", "YourApiKey");
IRestResponse response = client.Execute(request);
Source on Github
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://saferwebapi.com/v3/history/violation/:USDotNumber"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "YourApiKey")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
Source on Github
HttpResponse response = Unirest.get("https://saferwebapi.com/v3/history/violation/:USDotNumber")
.header("x-api-key", "YourApiKey")
.asString();
Source on Github
var axios = require("axios").default;
var options = {
method: 'GET',
url: 'https://saferwebapi.com/v3/history/violation/:USDotNumber',
headers: {'x-api-key': 'YourApiKey'}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
Source on Github
#import
NSDictionary *headers = @{ @"x-api-key": @"YourApiKey" };
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://saferwebapi.com/v3/history/violation/:USDotNumber"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
[request setAllHTTPHeaderFields:headers];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
Source on Github
"https://saferwebapi.com/v3/history/violation/:USDotNumber",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: YourApiKey"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Source on Github
import requests
url = "https://saferwebapi.com/v3/history/violation/:USDotNumber"
headers = {"x-api-key": "YourApiKey"}
response = requests.request("GET", url, headers=headers)
print(response.text)
Source on Github
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://saferwebapi.com/v3/history/violation/:USDotNumber")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
request["x-api-key"] = 'YourApiKey'
response = http.request(request)
puts response.read_body
Source on Github
import Foundation
let headers = ["x-api-key": "YourApiKey"]
let request = NSMutableURLRequest(url: NSURL(string: "https://saferwebapi.com/v3/history/violation/:USDotNumber")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
Source on Github
/v3/history/violation/:USDotNumber
{
"violation_records": [
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "December, 2020",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "December, 2020",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "December, 2020",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "December, 2020",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 2,
"violation_value": 2,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "April, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "April, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "April, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "April, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "August, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "August, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "August, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "August, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "February, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "February, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "February, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "February, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "January, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "January, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "January, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "January, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "July, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "July, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "July, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "July, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "June, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "June, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "June, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "June, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "March, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "March, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "March, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "March, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393100A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": true,
"out_of_service_weight": 2,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "No or improper load securement",
"group_description": "General Securement"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393104F3",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 3,
"time_weight": 1,
"violation_value": 3,
"section_descripton": "Loose or unfastened tiedown.",
"group_description": "Tiedown"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "393207A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 7,
"time_weight": 1,
"violation_value": 7,
"section_descripton": "Axle positioning parts defective/missing",
"group_description": "Suspension"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39345DLUV",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Brake Connections with Leaks Under Vehicle",
"group_description": "Brakes All Others"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39348A",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "Inoperative/defective brakes",
"group_description": "Brakes All Others"
},
{
"batch_date": "May, 2021",
"unique_id": "614981268",
"inspection_date": "2019-10-15",
"vioation_code": "39355E",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 4,
"time_weight": 1,
"violation_value": 4,
"section_descripton": "No or Defective ABS Malfunction Indicator Lamp for trailer manufactured after 03/01/1998",
"group_description": "Brakes All Others"
},
{
"batch_date": "May, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "39524C2III",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Driver failed to manually add shipping document number",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "May, 2021",
"unique_id": "619661493",
"inspection_date": "2019-12-13",
"vioation_code": "3958",
"basic_description": "Hours-of-Service Compliance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Record of Duty Status violation (general/form and manner)",
"group_description": "Other Log/Form & Manner"
},
{
"batch_date": "May, 2021",
"unique_id": "622704366",
"inspection_date": "2020-01-13",
"vioation_code": "39360D",
"basic_description": "Vehicle Maintenance",
"out_of_service_violation": false,
"out_of_service_weight": 0,
"severity_weight": 1,
"time_weight": 1,
"violation_value": 1,
"section_descripton": "Glazing permits < 70% of light",
"group_description": "Windshield/ Glass/ Markings"
}
]
}