added
ELD Ruleset Overrides
over 3 years ago by Tyler Freckmann
The Drivers APIs now support driver-specific ELD ruleset overrides. (This is only relevant to US customers). A driver's usDriverRuleSetOverride
will contain the ELD ruleset that overrides the organization's default ruleset. This field will be omitted from the driver if no override is set. You can read this field via the list and retrieve drivers APIs. You can set this field upon creation of a driver or update the field of an existing driver. To unset the field, set usDriverRulesetOverride
to null
in your update request. Check out the docs for full details 👀
Here is the full definition of the usDriverRulesetOverride
field:
Field | Description |
---|---|
cycle string | The driver's working cycle. Valid values: USA Property (8/70) , USA Property (7/60) , USA Passenger (8/70) , USA Passenger (7/60) , Alaska Property (8/80) , Alaska Property (7/70) , Alaska Passenger (8/80) , Alaska Passenger (7/70) , California School/FLV (8/80) , California Farm (8/112) , California Property (8/80) , California Flammable Liquid (8/80) , California Passenger (8/80) , California Motion Picture (8/80) , Florida (8/80) , Florida (7/70) , Nebraska (8/80) , Nebraska (7/70) , North Carolina (8/80) , North Carolina (7/70) , Oklahoma (8/70) , Oklahoma (7/60) , Oregon (8/80) , Oregon (7/70) , South Carolina (8/80) , South Carolina (7/70) , Texas (7/70) , Wisconsin (8/80) , Wisconsin (7/70) . |
restart string | Amount of time necessary for the driver to be resting in order to restart their cycle. Valid values: 34-hour Restart , 24-hour Restart , 36-hour Restart , 72-hour Restart , None . |
restbreak string | The restbreak required for this driver. Valid values: Property (off-duty/sleeper) , California Mealbreak (off-duty/sleeper) , None . |
usStateToOverride string | The jurisdiction of the ruleset applied to this driver. These are specified by either the ISO 3166-2 postal code for the supported US states, or empty string '' for US Federal Ruleset jurisdiction. Valid values: `, AK, CA, FL, NE, NC, OK, OR, SC, TX, WI`. |
Example
{
"usDriverRulesetOverride": {
"cycle": "USA Passenger (7/60)",
"restart": "None",
"restbreak": "None",
"usStateToOverride": ""
}
}