GET Restrictions
Returns all weight restriction events.
Request Information
https://511.idaho.gov/api/v2/get/truckrestrictions
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
Developer Key |
string |
Required |
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
ID |
A unique identifier. |
integer |
SourceId |
Truck restriction source Id |
string |
Organization |
The name of the organization that provided this event. |
string |
RoadwayName |
The roadway on which the event occurred. |
string |
DirectionOfTravel |
One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
string |
Description |
The description of the item. |
string |
Reported |
The date the event was reported in Unix time. More information |
integer |
LastUpdated |
The date the item's details were last updated in Unix time. More information |
integer |
StartDate |
The start date of the event in Unix time. More information |
integer |
PlannedEndDate |
The date the event is expected to end in Unix time. More information |
integer |
LanesAffected |
Describes the lane or number of lanes affected by the event. For example: all lanes. |
string |
Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
LatitudeSecondary |
Secondary latitude. |
double |
LongitudeSecondary |
Secondary Longitude. |
double |
EventType |
The type of event. |
string |
EventSubType |
A more detailed and descriptive event type. No fixed list of sub types. |
string |
IsFullClosure |
All lanes are closed. |
boolean |
Severity |
Describes the severity of the event with default value of Unknown. |
string |
Comment |
Extra information about the event |
string |
EncodedPolyline |
A single string storing a series of coordinates. More information |
string |
Restrictions |
Different types of restriction: Width (Feet), Height (Feet), Weight (Tons) and Speed (Mph). |
list |
DetourPolyline |
Google Encoded Polyline for the detour |
string |
DetourInstructions |
Turn by turn instructions for the detour |
string |
Recurrence |
Describes the schedule of the event. |
string |
RecurrenceSchedules |
More information about recurring events. Event start and end dates, times and day(s) of the week event is active. |
string |
Cause |
Describes the cause of the event. |
string |
Response Formats
JSON
[
{
"ID": 10,
"SourceId": "192",
"Organization": "ERS",
"RoadwayName": "I-84",
"DirectionOfTravel": "West",
"Description": "Restrictions on I-84 Westbound near mile marker 85. ",
"Reported": 1669310700,
"LastUpdated": 1669328750,
"StartDate": 1669310700,
"PlannedEndDate": null,
"LanesAffected": "No Data",
"Latitude": 43.2286422468511,
"Longitude": -115.82822635034,
"LatitudeSecondary": null,
"LongitudeSecondary": null,
"EventType": "restrictionClass",
"EventSubType": "restrictions",
"IsFullClosure": false,
"Severity": "None",
"Comment": "Vehicles over 10,000 restricted to 30mph",
"EncodedPolyline": null,
"Restrictions": {
"Width": null,
"Height": null,
"Length": null,
"Weight": null,
"Speed": null
},
"DetourPolyline": null,
"DetourInstructions": null,
"Recurrence": "<b>Mon, Tue, Wed, Thu, Fri, Sat, Sun:</b><br/>Active all day<br/><br/>",
"RecurrenceSchedules": [
{
"StartDate": "11/30/2022 1:31:00 PM-06:00:00",
"EndDate": null,
"Times": [
{
"StartTime": "00:00:00-06:00:00",
"EndTime": "23:59:59-06:00:00"
}
],
"DaysOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
]
}
],
"Cause": "restrictionClass"
}
]
XML
<TruckRestrictionsList>
<TruckRestrictions>
<ID>10</ID>
<SourceId>192</SourceId>
<Organization>ERS</Organization>
<RoadwayName>I-84</RoadwayName>
<DirectionOfTravel>West</DirectionOfTravel>
<Description>Restrictions on I-84 Westbound near mile marker 85. </Description>
<Reported>1669310700</Reported>
<LastUpdated>1669328750</LastUpdated>
<StartDate>1669310700</StartDate>
<PlannedEndDate />
<LanesAffected>No Data</LanesAffected>
<Latitude>43.2286422468511</Latitude>
<Longitude>-115.82822635034</Longitude>
<LatitudeSecondary />
<LongitudeSecondary />
<EventType>restrictionClass</EventType>
<EventSubType>restrictions</EventSubType>
<IsFullClosure>false</IsFullClosure>
<Severity>None</Severity>
<Comment>Vehicles over 10,000 restricted to 30mph</Comment>
<EncodedPolyline />
<Restrictions>
<Width />
<Height />
<Length />
<Weight />
<Speed />
</Restrictions>
<DetourPolyline />
<DetourInstructions />
<Recurrence><b>Mon, Tue, Wed, Thu, Fri, Sat, Sun:</b><br/>Active all day<br/><br/></Recurrence>
<RecurrenceSchedules>
<Schedule>
<StartDate>11/30/2022 1:31:00 PM-06:00:00</StartDate>
<EndDate />
<Times>
<Schedule>
<StartTime>00:00:00-06:00:00</StartTime>
<EndTime>23:59:59-06:00:00</EndTime>
</Schedule>
</Times>
<DaysOfWeek>Monday Tuesday Wednesday Thursday Friday Saturday Sunday</DaysOfWeek>
</Schedule>
</RecurrenceSchedules>
<Cause>restrictionClass</Cause>
</TruckRestrictions>
</TruckRestrictionsList>