> ## Documentation Index
> Fetch the complete documentation index at: https://docs.withterminal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Provider Explorer

export const ProviderExplorer = ({providers, modelLabels}) => {
  const [search, setSearch] = useState('');
  const [selectedModels, setSelectedModels] = useState([]);
  const [crashReportFilter, setCrashReportFilter] = useState(false);
  const [historyFilter, setHistoryFilter] = useState('any');
  const [sampleRateFilter, setSampleRateFilter] = useState('any');
  const [filtersOpen, setFiltersOpen] = useState(false);
  const toggleModel = model => {
    setSelectedModels(prev => prev.includes(model) ? prev.filter(m => m !== model) : [...prev, model]);
    if (model === 'SafetyEvent' && selectedModels.includes('SafetyEvent')) {
      setCrashReportFilter(false);
    }
  };
  const toggleCrashReport = () => {
    if (crashReportFilter) {
      setCrashReportFilter(false);
    } else {
      setCrashReportFilter(true);
      if (!selectedModels.includes('SafetyEvent')) {
        setSelectedModels(prev => [...prev, 'SafetyEvent']);
      }
    }
  };
  const clearFilters = () => {
    setSearch('');
    setSelectedModels([]);
    setCrashReportFilter(false);
    setHistoryFilter('any');
    setSampleRateFilter('any');
  };
  const historyOptions = [{
    value: 'any',
    label: 'Any history'
  }, {
    value: '30',
    label: '≥ 30 days'
  }, {
    value: '90',
    label: '≥ 90 days'
  }, {
    value: '180',
    label: '≥ 180 days'
  }, {
    value: '365',
    label: '≥ 1 year'
  }, {
    value: '730',
    label: '≥ 2 years'
  }, {
    value: 'unlimited',
    label: 'Unlimited'
  }];
  const sampleRateOptions = [{
    value: 'any',
    label: 'Any rate'
  }, {
    value: '10',
    label: '≤ 10 sec'
  }, {
    value: '30',
    label: '≤ 30 sec'
  }, {
    value: '60',
    label: '≤ 1 min'
  }, {
    value: '120',
    label: '≤ 2 min'
  }, {
    value: '300',
    label: '≤ 5 min'
  }];
  const filtered = useMemo(() => {
    return providers.filter(p => {
      if (search.trim()) {
        const query = search.toLowerCase();
        const matchesText = p.name.toLowerCase().includes(query) || p.code.toLowerCase().includes(query);
        if (!matchesText) return false;
      }
      if (selectedModels.length > 0) {
        const hasAllModels = selectedModels.every(model => p.models[model] === 'supported');
        if (!hasAllModels) return false;
      }
      if (crashReportFilter && !p.supportsCrashReport) {
        return false;
      }
      if (historyFilter !== 'any') {
        if (!p.availableHistoryRange) return false;
        if (historyFilter === 'unlimited') {
          if (p.availableHistoryRange.max !== 'unlimited') return false;
        } else {
          if (p.availableHistoryRange.max !== 'unlimited') {
            const threshold = Number(historyFilter);
            if (p.availableHistoryRange.max < threshold) return false;
          }
        }
      }
      if (sampleRateFilter !== 'any') {
        if (!p.sampleRateRange) return false;
        const threshold = Number(sampleRateFilter);
        if (p.sampleRateRange.min > threshold) return false;
      }
      return true;
    });
  }, [providers, search, selectedModels, crashReportFilter, historyFilter, sampleRateFilter]);
  const hasFilters = search.trim() || selectedModels.length > 0 || crashReportFilter || historyFilter !== 'any' || sampleRateFilter !== 'any';
  const activeFilterCount = selectedModels.length + (crashReportFilter ? 1 : 0) + (historyFilter !== 'any' ? 1 : 0) + (sampleRateFilter !== 'any' ? 1 : 0);
  return <div className="provider-explorer">
      <div className="provider-explorer-sticky">
      {}
      <div className="provider-explorer-input-wrapper">
        <svg className="provider-explorer-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
          <path fillRule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clipRule="evenodd" />
        </svg>
        <input type="text" placeholder="Search providers by name..." value={search} onChange={e => setSearch(e.target.value)} className="provider-explorer-input" />
        {search && <button onClick={() => setSearch('')} className="provider-explorer-clear" aria-label="Clear search">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
              <path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z" />
            </svg>
          </button>}
      </div>

      {}
      <button onClick={() => setFiltersOpen(prev => !prev)} className="provider-explorer-toggle" aria-expanded={filtersOpen}>
        <svg className={`provider-explorer-toggle-chevron ${filtersOpen ? 'open' : ''}`} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" width="16" height="16">
          <path fillRule="evenodd" d="M8.22 5.22a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L11.94 10 8.22 6.28a.75.75 0 0 1 0-1.06Z" clipRule="evenodd" />
        </svg>
        <span className="provider-explorer-toggle-label">
          Filter by model, history, and sample rate
          {activeFilterCount > 0 && <span className="provider-explorer-toggle-badge">{activeFilterCount}</span>}
        </span>
      </button>

      {filtersOpen && <div className="provider-explorer-collapsible">
          {}
          <div className="provider-explorer-filters">
            <div className="provider-explorer-filter-chips">
              {modelGroups.map((group, gi) => <span key={gi} className="provider-explorer-chip-group">
                  {gi > 0 && <span className="provider-explorer-chip-divider" aria-hidden="true" />}
                  {group.map(model => <button key={model} onClick={() => toggleModel(model)} className={`provider-explorer-chip ${selectedModels.includes(model) ? 'active' : ''}`}>
                      {modelLabels[model]}
                    </button>)}
                </span>)}
              <span className="provider-explorer-chip-group">
                <span className="provider-explorer-chip-divider" aria-hidden="true" />
                <button onClick={toggleCrashReport} className={`provider-explorer-chip provider-explorer-chip-special ${crashReportFilter ? 'active' : ''}`} title="Filter for providers that support Crash Reports (requires Safety Event)">
                  Crash Report
                </button>
              </span>
            </div>
          </div>

          {}
          <div className="provider-explorer-filters">
            <div className="provider-explorer-filter-chips">
              <select value={historyFilter} onChange={e => setHistoryFilter(e.target.value)} className={`provider-explorer-select ${historyFilter !== 'any' ? 'active' : ''}`}>
                {historyOptions.map(opt => <option key={opt.value} value={opt.value}>{opt.label}</option>)}
              </select>
              <select value={sampleRateFilter} onChange={e => setSampleRateFilter(e.target.value)} className={`provider-explorer-select ${sampleRateFilter !== 'any' ? 'active' : ''}`}>
                {sampleRateOptions.map(opt => <option key={opt.value} value={opt.value}>{opt.label}</option>)}
              </select>
            </div>
            {hasFilters && <button onClick={clearFilters} className="provider-explorer-clear-all">
                Clear all
              </button>}
          </div>
        </div>}

      {}
      <div className="provider-explorer-results-header">
        <span className="provider-explorer-count">
          {filtered.length === providers.length ? <><strong className="provider-explorer-count-number">{providers.length}</strong> providers</> : <><strong className="provider-explorer-count-number">{filtered.length}</strong> of {providers.length} providers</>}
        </span>
      </div>
      </div>

      {}
      <div className="ps-grid">
        {filtered.map(provider => <a key={provider.code} href={`/providers/tsp/${provider.code}`} className="ps-tile">
            <img src={provider.icon} alt={`${provider.name} logo`} className="ps-tile-icon" />
            <span className="ps-tile-name">{provider.name}</span>
          </a>)}
      </div>

      {filtered.length === 0 && <div className="provider-explorer-empty">
          <p>No providers found matching your filters</p>
          <button onClick={clearFilters} className="provider-explorer-empty-button">
            Clear filters
          </button>
        </div>}
    </div>;
};

export const providers = [{
  "code": "24hos-eld",
  "name": "24HOS ELD",
  "icon": "https://cdn.withterminal.com/providers/24hos-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "3pl-tek",
  "name": "3PL TEK",
  "icon": "https://cdn.withterminal.com/providers/3pl-tek/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "888-eld",
  "name": "888 ELD",
  "icon": "https://cdn.withterminal.com/providers/888-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "abc-eld",
  "name": "ABC ELD",
  "icon": "https://cdn.withterminal.com/providers/abc-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "action-eld",
  "name": "Action ELD",
  "icon": "https://cdn.withterminal.com/providers/action-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "ada-eld",
  "name": "ADA ELD",
  "icon": "https://cdn.withterminal.com/providers/ada-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "advantage-knights-eld",
  "name": "Advantage Knights ELD",
  "icon": "https://cdn.withterminal.com/providers/advantage-knights-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "advantage-one",
  "name": "Advantage One",
  "icon": "https://cdn.withterminal.com/providers/advantage-one/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "ai-eld",
  "name": "AI ELD",
  "icon": "https://cdn.withterminal.com/providers/ai-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "aireld",
  "name": "AirELD",
  "icon": "https://cdn.withterminal.com/providers/aireld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "airiq",
  "name": "AirIQ",
  "icon": "https://cdn.withterminal.com/providers/airiq/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "alfa-eld",
  "name": "Alfa ELD",
  "icon": "https://cdn.withterminal.com/providers/alfa-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "allways-track",
  "name": "Allways Track",
  "icon": "https://cdn.withterminal.com/providers/allways-track/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "alpha-eld",
  "name": "Alpha E-Logbook",
  "icon": "https://cdn.withterminal.com/providers/alpha-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "amber-eld",
  "name": "Amber ELD",
  "icon": "https://cdn.withterminal.com/providers/amber-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "ampm-eld",
  "name": "AMPM ELD",
  "icon": "https://cdn.withterminal.com/providers/ampm-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "apex-eld",
  "name": "Apex ELD",
  "icon": "https://cdn.withterminal.com/providers/apex-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "apex-ultima",
  "name": "Apex Ultima",
  "icon": "https://cdn.withterminal.com/providers/apex-ultima/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "apollo-compass",
  "name": "Apollo Compass",
  "icon": "https://cdn.withterminal.com/providers/apollo-compass/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 0,
    "max": 180
  },
  "sampleRateRange": {
    "min": 15,
    "max": 3600
  }
}, {
  "code": "apollo-eld",
  "name": "Apollo ELD",
  "icon": "https://cdn.withterminal.com/providers/apollo-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 3600,
    "max": 3600
  }
}, {
  "code": "argos",
  "name": "Argos Connected Solutions",
  "icon": "https://cdn.withterminal.com/providers/argos/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "asap-eld",
  "name": "ASAP ELD",
  "icon": "https://cdn.withterminal.com/providers/asap-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "at-eld",
  "name": "AT ELD",
  "icon": "https://cdn.withterminal.com/providers/at-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "attrix",
  "name": "Attrix",
  "icon": "https://cdn.withterminal.com/providers/attrix/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "autogri-eld",
  "name": "AUTOGRI ELD",
  "icon": "https://cdn.withterminal.com/providers/autogri-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "avanguard-eld",
  "name": "Avanguard ELD",
  "icon": "https://cdn.withterminal.com/providers/avanguard-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "mgk-eld",
  "name": "Axion Route",
  "icon": "https://cdn.withterminal.com/providers/mgk-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "azuga",
  "name": "Azuga",
  "icon": "https://cdn.withterminal.com/providers/azuga/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "bigroad",
  "name": "BigRoad",
  "icon": "https://cdn.withterminal.com/providers/bigroad/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 30,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "bison-elog",
  "name": "Bison Elog",
  "icon": "https://cdn.withterminal.com/providers/bison-elog/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "black-bear",
  "name": "Black Bear",
  "icon": "https://cdn.withterminal.com/providers/black-bear/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "blue-arrow",
  "name": "Blue Arrow Telematics",
  "icon": "https://cdn.withterminal.com/providers/blue-arrow/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "blue-horse-eld",
  "name": "Blue Horse ELD",
  "icon": "https://cdn.withterminal.com/providers/blue-horse-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "blue-ink",
  "name": "Blue Ink Tech",
  "icon": "https://cdn.withterminal.com/providers/blue-ink/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 10,
    "max": 10
  }
}, {
  "code": "blue-star-eld",
  "name": "Blue Star ELD",
  "icon": "https://cdn.withterminal.com/providers/blue-star-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "bst-eld",
  "name": "BST ELD",
  "icon": "https://cdn.withterminal.com/providers/bst-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "captain-eld",
  "name": "Captain ELD",
  "icon": "https://cdn.withterminal.com/providers/captain-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "clear-path-gps",
  "name": "ClearPathGPS",
  "icon": "https://cdn.withterminal.com/providers/clear-path-gps/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "club-eld",
  "name": "Club ELD",
  "icon": "https://cdn.withterminal.com/providers/club-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "clutch-eld",
  "name": "Clutch ELD",
  "icon": "https://cdn.withterminal.com/providers/clutch-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "cobra-eld",
  "name": "Cobra ELD",
  "icon": "https://cdn.withterminal.com/providers/cobra-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "columbus-eld",
  "name": "Columbus ELD",
  "icon": "https://cdn.withterminal.com/providers/columbus-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "command-gps",
  "name": "CommandGPS",
  "icon": "https://cdn.withterminal.com/providers/command-gps/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "conti-go",
  "name": "Conti-GO",
  "icon": "https://cdn.withterminal.com/providers/conti-go/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "daily-eld",
  "name": "Daily ELD",
  "icon": "https://cdn.withterminal.com/providers/daily-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "daily-eld-plus",
  "name": "Daily ELD Plus",
  "icon": "https://cdn.withterminal.com/providers/daily-eld-plus/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "dfl-eld",
  "name": "DFL ELD",
  "icon": "https://cdn.withterminal.com/providers/dfl-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "dialog-eld",
  "name": "DIALOG ELD",
  "icon": "https://cdn.withterminal.com/providers/dialog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "digital-eld",
  "name": "Digital ELD",
  "icon": "https://cdn.withterminal.com/providers/digital-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "dlog-eld",
  "name": "DLog ELD",
  "icon": "https://cdn.withterminal.com/providers/dlog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "dragon-eld",
  "name": "Dragon ELD",
  "icon": "https://cdn.withterminal.com/providers/dragon-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "dream-eld",
  "name": "Dream ELD",
  "icon": "https://cdn.withterminal.com/providers/dream-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_terminal",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": {
    "min": 12,
    "max": 12
  }
}, {
  "code": "dreyev",
  "name": "Dreyev",
  "icon": "https://cdn.withterminal.com/providers/dreyev/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 0.25,
    "max": 900
  }
}, {
  "code": "driverbook",
  "name": "DriverBook",
  "icon": "https://cdn.withterminal.com/providers/driverbook/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_terminal",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "drive-safe-eld",
  "name": "DriveSafe ELD",
  "icon": "https://cdn.withterminal.com/providers/drive-safe-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "not_supported_by_terminal",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "dsg-elogs",
  "name": "DSG Elogs",
  "icon": "https://cdn.withterminal.com/providers/dsg-elogs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "dy-eld",
  "name": "DY ELD",
  "icon": "https://cdn.withterminal.com/providers/dy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "dyplus-eld",
  "name": "DY+ ELD",
  "icon": "https://cdn.withterminal.com/providers/dyplus-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "dynamic-eld",
  "name": "Dynamic ELD",
  "icon": "https://cdn.withterminal.com/providers/dynamic-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eagle-wireless",
  "name": "Eagle Wireless",
  "icon": "https://cdn.withterminal.com/providers/eagle-wireless/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "eblue-sun-logs",
  "name": "eBlue Sun Logs",
  "icon": "https://cdn.withterminal.com/providers/eblue-sun-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "egreen-eld",
  "name": "Egreen ELD",
  "icon": "https://cdn.withterminal.com/providers/egreen-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "egreen-eld-v2",
  "name": "Egreen ELD",
  "icon": "https://cdn.withterminal.com/providers/egreen-eld-v2/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "eld-books",
  "name": "ELD Books",
  "icon": "https://cdn.withterminal.com/providers/eld-books/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "eld-connection",
  "name": "ELD Connection",
  "icon": "https://cdn.withterminal.com/providers/eld-connection/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eld-desired",
  "name": "ELD Desired",
  "icon": "https://cdn.withterminal.com/providers/eld-desired/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eld-for-you",
  "name": "ELD for You",
  "icon": "https://cdn.withterminal.com/providers/eld-for-you/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eld-mandate-hos",
  "name": "ELD Mandate HOS",
  "icon": "https://cdn.withterminal.com/providers/eld-mandate-hos/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": {
    "min": 900,
    "max": 3600
  }
}, {
  "code": "eld-mandate-prime",
  "name": "ELD Mandate Prime",
  "icon": "https://cdn.withterminal.com/providers/eld-mandate-prime/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 3600,
    "max": 3600
  }
}, {
  "code": "eld-mandate-pro",
  "name": "ELD Mandate Pro",
  "icon": "https://cdn.withterminal.com/providers/eld-mandate-pro/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "eldone",
  "name": "ELD One",
  "icon": "https://cdn.withterminal.com/providers/eldone/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "eld-pro-solution",
  "name": "ELD Pro Solution",
  "icon": "https://cdn.withterminal.com/providers/eld-pro-solution/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "eld-rider",
  "name": "ELD Rider",
  "icon": "https://cdn.withterminal.com/providers/eld-rider/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "eld-2-go",
  "name": "ELD2GO",
  "icon": "https://cdn.withterminal.com/providers/eld-2-go/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eld4trucking",
  "name": "ELD4Trucking",
  "icon": "https://cdn.withterminal.com/providers/eld4trucking/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eld88",
  "name": "ELD88",
  "icon": "https://cdn.withterminal.com/providers/eld88/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "eld99",
  "name": "ELD99",
  "icon": "https://cdn.withterminal.com/providers/eld99/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "eldroad",
  "name": "ELDRoad",
  "icon": "https://cdn.withterminal.com/providers/eldroad/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "eldtrex",
  "name": "ELDTREX",
  "icon": "https://cdn.withterminal.com/providers/eldtrex/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "elog42",
  "name": "Elog42",
  "icon": "https://cdn.withterminal.com/providers/elog42/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "empire-logs",
  "name": "Empire Logs",
  "icon": "https://cdn.withterminal.com/providers/empire-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "ensi-eld",
  "name": "Ensi Log",
  "icon": "https://cdn.withterminal.com/providers/ensi-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "enterprise-eld",
  "name": "Enterprise ELD",
  "icon": "https://cdn.withterminal.com/providers/enterprise-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "envision-eld",
  "name": "Envision ELD",
  "icon": "https://cdn.withterminal.com/providers/envision-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "envue-telematics",
  "name": "EnVue Telematics",
  "icon": "https://cdn.withterminal.com/providers/envue-telematics/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "eroad",
  "name": "EROAD",
  "icon": "https://cdn.withterminal.com/providers/eroad/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "eva-eld",
  "name": "EVA ELD",
  "icon": "https://cdn.withterminal.com/providers/eva-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "evo-eld",
  "name": "EVO ELD",
  "icon": "https://cdn.withterminal.com/providers/evo-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "express-way-eld",
  "name": "Express Way ELD",
  "icon": "https://cdn.withterminal.com/providers/express-way-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "extreme-eld",
  "name": "Extreme ELD",
  "icon": "https://cdn.withterminal.com/providers/extreme-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "ez-logz",
  "name": "Ezlogz",
  "icon": "https://cdn.withterminal.com/providers/ez-logz/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "factor-eld-v2",
  "name": "Factor ELD",
  "icon": "https://cdn.withterminal.com/providers/factor-eld-v2/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "first-eld",
  "name": "First ELD",
  "icon": "https://cdn.withterminal.com/providers/first-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "firstgate-eld",
  "name": "FIRSTGATE ELD",
  "icon": "https://cdn.withterminal.com/providers/firstgate-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "five-eld",
  "name": "Five ELD",
  "icon": "https://cdn.withterminal.com/providers/five-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "flash-elogs",
  "name": "Flash ELogs",
  "icon": "https://cdn.withterminal.com/providers/flash-elogs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "fleet-complete-hub",
  "name": "Fleet Complete Hub",
  "icon": "https://cdn.withterminal.com/providers/fleet-complete-hub/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 30,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 5,
    "max": 300
  }
}, {
  "code": "fleet-profit-center",
  "name": "Fleet Profit Center",
  "icon": "https://cdn.withterminal.com/providers/fleet-profit-center/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "fleet-track",
  "name": "Fleet Track",
  "icon": "https://cdn.withterminal.com/providers/fleet-track/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "fleethunt",
  "name": "FleetHunt",
  "icon": "https://cdn.withterminal.com/providers/fleethunt/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 10,
    "max": 60
  }
}, {
  "code": "fleetistics",
  "name": "Fleetistics",
  "icon": "https://cdn.withterminal.com/providers/fleetistics/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "fleet-pulse",
  "name": "FleetPulse",
  "icon": "https://cdn.withterminal.com/providers/fleet-pulse/icon.png",
  "models": {
    "Vehicle": "not_supported_by_provider",
    "Driver": "not_supported_by_provider",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "not_supported_by_provider",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "fleetsharp",
  "name": "FleetSharp",
  "icon": "https://cdn.withterminal.com/providers/fleetsharp/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "fleetvision",
  "name": "FleetVision",
  "icon": "https://cdn.withterminal.com/providers/fleetvision/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "flex-eld",
  "name": "FLEX ELD",
  "icon": "https://cdn.withterminal.com/providers/flex-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "fm-eld",
  "name": "FM ELD",
  "icon": "https://cdn.withterminal.com/providers/fm-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "force-fleet",
  "name": "Force Fleet",
  "icon": "https://cdn.withterminal.com/providers/force-fleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_terminal",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 120
  }
}, {
  "code": "fort-knox",
  "name": "Fort Knox ELD",
  "icon": "https://cdn.withterminal.com/providers/fort-knox/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "fortune-eld",
  "name": "Fortune ELD",
  "icon": "https://cdn.withterminal.com/providers/fortune-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "forza-eld",
  "name": "Forza ELD",
  "icon": "https://cdn.withterminal.com/providers/forza-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "geotab",
  "name": "Geotab",
  "icon": "https://cdn.withterminal.com/providers/geotab/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "geotab-att",
  "name": "Geotab AT&T",
  "icon": "https://cdn.withterminal.com/providers/geotab-att/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "globcom-eld",
  "name": "Globcom ELD",
  "icon": "https://cdn.withterminal.com/providers/globcom-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "gofleet",
  "name": "GoFleet",
  "icon": "https://cdn.withterminal.com/providers/gofleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "gogps",
  "name": "GoGPS",
  "icon": "https://cdn.withterminal.com/providers/gogps/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "gorilla-safety",
  "name": "Gorilla Safety",
  "icon": "https://cdn.withterminal.com/providers/gorilla-safety/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "gps-insight",
  "name": "GPS Insight",
  "icon": "https://cdn.withterminal.com/providers/gps-insight/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 5,
    "max": 60
  }
}, {
  "code": "gps-tracking-canada",
  "name": "GPS Tracking Canada",
  "icon": "https://cdn.withterminal.com/providers/gps-tracking-canada/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "gps-trackit",
  "name": "GPS Trackit",
  "icon": "https://cdn.withterminal.com/providers/gps-trackit/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "gpstab",
  "name": "GPSTab",
  "icon": "https://cdn.withterminal.com/providers/gpstab/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "grand-eld",
  "name": "Grand ELD",
  "icon": "https://cdn.withterminal.com/providers/grand-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "graybox-solutions",
  "name": "GrayBox Solutions",
  "icon": "https://cdn.withterminal.com/providers/graybox-solutions/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "green-light-eld",
  "name": "Green Light ELD",
  "icon": "https://cdn.withterminal.com/providers/green-light-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "gridline",
  "name": "Gridline",
  "icon": "https://cdn.withterminal.com/providers/gridline/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "gt-eld",
  "name": "GT ELD",
  "icon": "https://cdn.withterminal.com/providers/gt-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "hcss",
  "name": "HCSS eLogs",
  "icon": "https://cdn.withterminal.com/providers/hcss/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "hero-eld",
  "name": "Hero ELD",
  "icon": "https://cdn.withterminal.com/providers/hero-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "high-point-gps",
  "name": "High Point GPS",
  "icon": "https://cdn.withterminal.com/providers/high-point-gps/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "highest-eld",
  "name": "Highest ELD",
  "icon": "https://cdn.withterminal.com/providers/highest-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "hive-eld",
  "name": "Hive ELD",
  "icon": "https://cdn.withterminal.com/providers/hive-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "horizon-eld",
  "name": "Horizon ELD",
  "icon": "https://cdn.withterminal.com/providers/horizon-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "hos-reporter-plus",
  "name": "HOS Reporter Plus",
  "icon": "https://cdn.withterminal.com/providers/hos-reporter-plus/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 3600,
    "max": 3600
  }
}, {
  "code": "hos247",
  "name": "HOS247",
  "icon": "https://cdn.withterminal.com/providers/hos247/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "hunter-eld",
  "name": "Hunter ELD",
  "icon": "https://cdn.withterminal.com/providers/hunter-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "id-eld",
  "name": "ID ELD",
  "icon": "https://cdn.withterminal.com/providers/id-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "ilog-eld",
  "name": "ILog ELD",
  "icon": "https://cdn.withterminal.com/providers/ilog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "ilog-eld-v2",
  "name": "ILog ELD",
  "icon": "https://cdn.withterminal.com/providers/ilog-eld-v2/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "infinity-eld",
  "name": "Infinity ELD",
  "icon": "https://cdn.withterminal.com/providers/infinity-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "intelli-shift",
  "name": "IntelliShift",
  "icon": "https://cdn.withterminal.com/providers/intelli-shift/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 1095,
    "max": 1095
  },
  "sampleRateRange": {
    "min": 10,
    "max": 900
  }
}, {
  "code": "interstate-eld",
  "name": "Interstate Freeway",
  "icon": "https://cdn.withterminal.com/providers/interstate-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "intime-eld",
  "name": "Intime ELD",
  "icon": "https://cdn.withterminal.com/providers/intime-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "io-tab",
  "name": "IoTab",
  "icon": "https://cdn.withterminal.com/providers/io-tab/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "ironman-eld",
  "name": "Ironman ELD",
  "icon": "https://cdn.withterminal.com/providers/ironman-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "isaac",
  "name": "ISAAC Instruments",
  "icon": "https://cdn.withterminal.com/providers/isaac/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 2,
    "max": 1095
  },
  "sampleRateRange": {
    "min": 10,
    "max": 420
  }
}, {
  "code": "jj-keller",
  "name": "JJ Keller",
  "icon": "https://cdn.withterminal.com/providers/jj-keller/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "just-eld",
  "name": "Just ELD",
  "icon": "https://cdn.withterminal.com/providers/just-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "kinexa",
  "name": "Kinexa",
  "icon": "https://cdn.withterminal.com/providers/kinexa/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "konexial",
  "name": "Konexial",
  "icon": "https://cdn.withterminal.com/providers/konexial/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "ksk",
  "name": "KSK ELD",
  "icon": "https://cdn.withterminal.com/providers/ksk/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "leader-eld",
  "name": "Leader ELD",
  "icon": "https://cdn.withterminal.com/providers/leader-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "legacy-eld",
  "name": "Legacy ELD",
  "icon": "https://cdn.withterminal.com/providers/legacy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "light-and-travel-eld",
  "name": "Light & Travel ELD",
  "icon": "https://cdn.withterminal.com/providers/light-and-travel-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "linxup",
  "name": "Linxup",
  "icon": "https://cdn.withterminal.com/providers/linxup/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "log-plus-eld",
  "name": "Log Plus ELD",
  "icon": "https://cdn.withterminal.com/providers/log-plus-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "logfleet",
  "name": "Logfleet",
  "icon": "https://cdn.withterminal.com/providers/logfleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "looktruck-eld",
  "name": "LOOKTRUCK ELD",
  "icon": "https://cdn.withterminal.com/providers/looktruck-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "loop-eld",
  "name": "loopELD",
  "icon": "https://cdn.withterminal.com/providers/loop-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 180,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "lucid-eld",
  "name": "Lucid ELD",
  "icon": "https://cdn.withterminal.com/providers/lucid-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "luna-eld",
  "name": "Luna ELD",
  "icon": "https://cdn.withterminal.com/providers/luna-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "lytx",
  "name": "Lytx",
  "icon": "https://cdn.withterminal.com/providers/lytx/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 60
  },
  "sampleRateRange": {
    "min": 10,
    "max": 30
  }
}, {
  "code": "lytx-one",
  "name": "Lytx One",
  "icon": "https://cdn.withterminal.com/providers/lytx-one/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_terminal",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "maestral-eld",
  "name": "Maestral ELD",
  "icon": "https://cdn.withterminal.com/providers/maestral-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "map-elog-corp",
  "name": "Map ELOG Corp",
  "icon": "https://cdn.withterminal.com/providers/map-elog-corp/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "master-eld",
  "name": "MasterELD",
  "icon": "https://cdn.withterminal.com/providers/master-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "matrack",
  "name": "Matrack",
  "icon": "https://cdn.withterminal.com/providers/matrack/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "not_supported_by_terminal",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 10,
    "max": 120
  }
}, {
  "code": "max-eld",
  "name": "MAX ELD",
  "icon": "https://cdn.withterminal.com/providers/max-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "mdm-eld",
  "name": "MDM ELD",
  "icon": "https://cdn.withterminal.com/providers/mdm-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "michelin-connected-fleet",
  "name": "MICHELIN Connected Fleet",
  "icon": "https://cdn.withterminal.com/providers/michelin-connected-fleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "monarch-tracking",
  "name": "Monarch Tracking",
  "icon": "https://cdn.withterminal.com/providers/monarch-tracking/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 5,
    "max": 60
  }
}, {
  "code": "moonlight-eld",
  "name": "Moonlight ELD",
  "icon": "https://cdn.withterminal.com/providers/moonlight-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "motion-eld-v2",
  "name": "Motion ELD",
  "icon": "https://cdn.withterminal.com/providers/motion-eld-v2/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "motive",
  "name": "Motive",
  "icon": "https://cdn.withterminal.com/providers/motive/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "moto-safety",
  "name": "MOTOsafety",
  "icon": "https://cdn.withterminal.com/providers/moto-safety/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "mountain-eld",
  "name": "Mountain ELD",
  "icon": "https://cdn.withterminal.com/providers/mountain-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "myway-eld",
  "name": "MyWay ELD",
  "icon": "https://cdn.withterminal.com/providers/myway-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "neo-eld",
  "name": "NEO ELD",
  "icon": "https://cdn.withterminal.com/providers/neo-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "netradyne",
  "name": "Netradyne",
  "icon": "https://cdn.withterminal.com/providers/netradyne/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 10,
    "max": 10
  }
}, {
  "code": "new-eld-world",
  "name": "New ELD World",
  "icon": "https://cdn.withterminal.com/providers/new-eld-world/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "nexar",
  "name": "Nexar",
  "icon": "https://cdn.withterminal.com/providers/nexar/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "not_supported_by_terminal",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": null,
  "sampleRateRange": {
    "min": 1,
    "max": 1
  }
}, {
  "code": "next-fleet-eld",
  "name": "Next Fleet ELD",
  "icon": "https://cdn.withterminal.com/providers/next-fleet-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "nextraq",
  "name": "NexTraq",
  "icon": "https://cdn.withterminal.com/providers/nextraq/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "night-watch-eld",
  "name": "Night Watch ELD",
  "icon": "https://cdn.withterminal.com/providers/night-watch-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "noor-eld",
  "name": "Noor ELD",
  "icon": "https://cdn.withterminal.com/providers/noor-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "novio-eld",
  "name": "Novio ELD",
  "icon": "https://cdn.withterminal.com/providers/novio-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "omega-eld",
  "name": "Omega ELD",
  "icon": "https://cdn.withterminal.com/providers/omega-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "omnitracs-es",
  "name": "Omnitracs ES",
  "icon": "https://cdn.withterminal.com/providers/omnitracs-es/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 300
  }
}, {
  "code": "omnitracs-xrs",
  "name": "Omnitracs XRS",
  "icon": "https://cdn.withterminal.com/providers/omnitracs-xrs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 90,
    "max": 120
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "one-system-eld",
  "name": "One System ELD",
  "icon": "https://cdn.withterminal.com/providers/one-system-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "not_supported_by_provider",
    "VehicleStatLog": "not_supported_by_provider",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "one-step-gps",
  "name": "OneStep GPS",
  "icon": "https://cdn.withterminal.com/providers/one-step-gps/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 1095,
    "max": 1095
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "ontime-eld",
  "name": "Ontime ELD",
  "icon": "https://cdn.withterminal.com/providers/ontime-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "optima-eld",
  "name": "Optima ELD",
  "icon": "https://cdn.withterminal.com/providers/optima-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "orient-eld",
  "name": "Orient ELD",
  "icon": "https://cdn.withterminal.com/providers/orient-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "orient-star-eld",
  "name": "Orient Star ELD",
  "icon": "https://cdn.withterminal.com/providers/orient-star-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "orion-eld",
  "name": "Orion ELD",
  "icon": "https://cdn.withterminal.com/providers/orion-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "panda-eld",
  "name": "Panda ELD",
  "icon": "https://cdn.withterminal.com/providers/panda-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "paragon-eld",
  "name": "Paragon ELD",
  "icon": "https://cdn.withterminal.com/providers/paragon-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "pdsinc-eld",
  "name": "PDSINC ELD",
  "icon": "https://cdn.withterminal.com/providers/pdsinc-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "peak-eld",
  "name": "Peak ELD",
  "icon": "https://cdn.withterminal.com/providers/peak-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "pedigree-oneview",
  "name": "Pedigree OneView",
  "icon": "https://cdn.withterminal.com/providers/pedigree-oneview/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "people-net",
  "name": "PeopleNet",
  "icon": "https://cdn.withterminal.com/providers/people-net/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 90,
    "max": 90
  },
  "sampleRateRange": {
    "min": 600,
    "max": 1800
  }
}, {
  "code": "phantom-eld",
  "name": "Phantom ELD",
  "icon": "https://cdn.withterminal.com/providers/phantom-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "phoenix-eld",
  "name": "Phoenix ELD",
  "icon": "https://cdn.withterminal.com/providers/phoenix-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "pioneer-eld-solution",
  "name": "Pioneer ELD Solution",
  "icon": "https://cdn.withterminal.com/providers/pioneer-eld-solution/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "platinum-eld",
  "name": "Platinum ELD",
  "icon": "https://cdn.withterminal.com/providers/platinum-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "pop-eld",
  "name": "PoP ELD",
  "icon": "https://cdn.withterminal.com/providers/pop-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "powertrucks-eld",
  "name": "PowerTrucks ELD",
  "icon": "https://cdn.withterminal.com/providers/powertrucks-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "premierride-logs",
  "name": "PremierRide Logs",
  "icon": "https://cdn.withterminal.com/providers/premierride-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "premium-eld",
  "name": "Premium ELD",
  "icon": "https://cdn.withterminal.com/providers/premium-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "prestige-eld",
  "name": "Prestige ELD",
  "icon": "https://cdn.withterminal.com/providers/prestige-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "pro-ride-eld",
  "name": "Pro Ride ELD",
  "icon": "https://cdn.withterminal.com/providers/pro-ride-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "project-eld",
  "name": "Project ELD",
  "icon": "https://cdn.withterminal.com/providers/project-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "prologs",
  "name": "ProLogs",
  "icon": "https://cdn.withterminal.com/providers/prologs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "protracking-eld",
  "name": "ProTracking ELD",
  "icon": "https://cdn.withterminal.com/providers/protracking-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "pti-eld",
  "name": "PTI ELD",
  "icon": "https://cdn.withterminal.com/providers/pti-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "quantum-eld",
  "name": "Quantum ELD",
  "icon": "https://cdn.withterminal.com/providers/quantum-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "quick-elogs-eld",
  "name": "Quick Elogs ELD",
  "icon": "https://cdn.withterminal.com/providers/quick-elogs-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "radical-eld",
  "name": "Radical ELD",
  "icon": "https://cdn.withterminal.com/providers/radical-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "rand-mcnally-driver-connect",
  "name": "Rand McNally DriverConnect",
  "icon": "https://cdn.withterminal.com/providers/rand-mcnally-driver-connect/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 300,
    "max": 300
  }
}, {
  "code": "rand-mcnally-eld",
  "name": "Rand McNally ELD",
  "icon": "https://cdn.withterminal.com/providers/rand-mcnally-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 3600,
    "max": 3600
  }
}, {
  "code": "raven-connected",
  "name": "Raven Connected",
  "icon": "https://cdn.withterminal.com/providers/raven-connected/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "not_supported_by_provider",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 30,
    "max": 30
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "readyset-pap-eld",
  "name": "ReadySet Papeld",
  "icon": "https://cdn.withterminal.com/providers/readyset-pap-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "real-eld",
  "name": "RealELD",
  "icon": "https://cdn.withterminal.com/providers/real-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "redfox-eld",
  "name": "RedFox ELD",
  "icon": "https://cdn.withterminal.com/providers/redfox-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "regulog-eld",
  "name": "Regulog ELD",
  "icon": "https://cdn.withterminal.com/providers/regulog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "reliable-eld",
  "name": "Reliable ELD",
  "icon": "https://cdn.withterminal.com/providers/reliable-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "remax-eld",
  "name": "Remax ELD",
  "icon": "https://cdn.withterminal.com/providers/remax-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "renaissance-eld",
  "name": "Renaissance ELD",
  "icon": "https://cdn.withterminal.com/providers/renaissance-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "ridehub-eld",
  "name": "Ridehub ELD",
  "icon": "https://cdn.withterminal.com/providers/ridehub-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "rigbot",
  "name": "Rigbot",
  "icon": "https://cdn.withterminal.com/providers/rigbot/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 900
  }
}, {
  "code": "ring-eld",
  "name": "Ring ELD",
  "icon": "https://cdn.withterminal.com/providers/ring-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "roadstar",
  "name": "RoadStar",
  "icon": "https://cdn.withterminal.com/providers/roadstar/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "robinhood-eld",
  "name": "Robinhood ELD",
  "icon": "https://cdn.withterminal.com/providers/robinhood-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "rock-eld",
  "name": "Rock ELD",
  "icon": "https://cdn.withterminal.com/providers/rock-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "route-eld",
  "name": "Route ELD",
  "icon": "https://cdn.withterminal.com/providers/route-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "route-one-eld",
  "name": "Route One ELD",
  "icon": "https://cdn.withterminal.com/providers/route-one-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "routemate",
  "name": "RouteMate",
  "icon": "https://cdn.withterminal.com/providers/routemate/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "royal-eld",
  "name": "Royal ELD",
  "icon": "https://cdn.withterminal.com/providers/royal-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "run-eld",
  "name": "Run ELD",
  "icon": "https://cdn.withterminal.com/providers/run-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "safe-lane-eld",
  "name": "Safe Lane ELD",
  "icon": "https://cdn.withterminal.com/providers/safe-lane-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "samsara",
  "name": "Samsara",
  "icon": "https://cdn.withterminal.com/providers/samsara/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "sba-eld",
  "name": "SBA ELD",
  "icon": "https://cdn.withterminal.com/providers/sba-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "secure-path-eld",
  "name": "Secure Path ELD",
  "icon": "https://cdn.withterminal.com/providers/secure-path-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "sf-eld",
  "name": "SF ELD",
  "icon": "https://cdn.withterminal.com/providers/sf-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "sharp-eld",
  "name": "Sharp ELD",
  "icon": "https://cdn.withterminal.com/providers/sharp-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "shelby-eld",
  "name": "Shelby ELD",
  "icon": "https://cdn.withterminal.com/providers/shelby-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "simba-eld",
  "name": "Simba ELD",
  "icon": "https://cdn.withterminal.com/providers/simba-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "simpleway-eld",
  "name": "Simple Way ELD",
  "icon": "https://cdn.withterminal.com/providers/simpleway-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "simplex",
  "name": "Simplex ELD2Go",
  "icon": "https://cdn.withterminal.com/providers/simplex/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "smart-choice-logs",
  "name": "Smart Choice Logs",
  "icon": "https://cdn.withterminal.com/providers/smart-choice-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "smart-elog",
  "name": "Smart eLog",
  "icon": "https://cdn.withterminal.com/providers/smart-elog/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "smart-drive",
  "name": "SmartDrive",
  "icon": "https://cdn.withterminal.com/providers/smart-drive/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 0,
    "max": 0
  },
  "sampleRateRange": {
    "min": 10,
    "max": 10
  }
}, {
  "code": "smartelds",
  "name": "Smartelds",
  "icon": "https://cdn.withterminal.com/providers/smartelds/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "solution-eld",
  "name": "Solution ELD",
  "icon": "https://cdn.withterminal.com/providers/solution-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "sparkle-eld",
  "name": "Sparkle ELD",
  "icon": "https://cdn.withterminal.com/providers/sparkle-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "speedline-eld",
  "name": "Speedline ELD",
  "icon": "https://cdn.withterminal.com/providers/speedline-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "spireon-fleet-locate",
  "name": "Spireon FleetLocate",
  "icon": "https://cdn.withterminal.com/providers/spireon-fleet-locate/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "split-eld",
  "name": "Split ELD",
  "icon": "https://cdn.withterminal.com/providers/split-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "sprint-eld",
  "name": "Sprint ELD",
  "icon": "https://cdn.withterminal.com/providers/sprint-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "sr-eld",
  "name": "SR ELD",
  "icon": "https://cdn.withterminal.com/providers/sr-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "startrucks-eld",
  "name": "Startrucks ELD",
  "icon": "https://cdn.withterminal.com/providers/startrucks-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "starway-eld",
  "name": "Starway ELD",
  "icon": "https://cdn.withterminal.com/providers/starway-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "state-elog",
  "name": "State ELOG",
  "icon": "https://cdn.withterminal.com/providers/state-elog/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "stellar-eld",
  "name": "Stellar ELD",
  "icon": "https://cdn.withterminal.com/providers/stellar-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "sunset-logbook",
  "name": "Sunset Logbook",
  "icon": "https://cdn.withterminal.com/providers/sunset-logbook/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "support-eld",
  "name": "Support ELD",
  "icon": "https://cdn.withterminal.com/providers/support-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "surfsight",
  "name": "Surfsight",
  "icon": "https://cdn.withterminal.com/providers/surfsight/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 30,
    "max": 90
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "swift-eld",
  "name": "Swift ELD",
  "icon": "https://cdn.withterminal.com/providers/swift-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "switchboard",
  "name": "Switchboard",
  "icon": "https://cdn.withterminal.com/providers/switchboard/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": {
    "min": 300,
    "max": 300
  }
}, {
  "code": "synergy-eld",
  "name": "Synergy ELD",
  "icon": "https://cdn.withterminal.com/providers/synergy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "teddy-eld",
  "name": "Teddy ELD",
  "icon": "https://cdn.withterminal.com/providers/teddy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "teletrac-navman-360",
  "name": "Teletrac Navman 360",
  "icon": "https://cdn.withterminal.com/providers/teletrac-navman-360/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": {
    "min": 1,
    "max": 1
  }
}, {
  "code": "teletrac-navman-director",
  "name": "Teletrac Navman Director",
  "icon": "https://cdn.withterminal.com/providers/teletrac-navman-director/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 1095,
    "max": 1095
  },
  "sampleRateRange": {
    "min": 1,
    "max": 60
  }
}, {
  "code": "tempus-eld",
  "name": "Tempus ELD",
  "icon": "https://cdn.withterminal.com/providers/tempus-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "tenna",
  "name": "Tenna",
  "icon": "https://cdn.withterminal.com/providers/tenna/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "not_supported_by_terminal",
    "VehicleLocation": "not_supported_by_terminal",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "tfm-eld",
  "name": "TFM ELD",
  "icon": "https://cdn.withterminal.com/providers/tfm-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 5,
    "max": 5
  }
}, {
  "code": "top-compliance-eld",
  "name": "Top Compliance ELD",
  "icon": "https://cdn.withterminal.com/providers/top-compliance-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "top-tracking-system",
  "name": "Top Tracking System",
  "icon": "https://cdn.withterminal.com/providers/top-tracking-system/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_provider",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 0,
    "max": 180
  },
  "sampleRateRange": {
    "min": 15,
    "max": 3600
  }
}, {
  "code": "track-truck-eld",
  "name": "Track Truck ELD",
  "icon": "https://cdn.withterminal.com/providers/track-truck-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "trackease",
  "name": "Trackease",
  "icon": "https://cdn.withterminal.com/providers/trackease/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "track-ensure",
  "name": "TrackEnsure",
  "icon": "https://cdn.withterminal.com/providers/track-ensure/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "traclog-eld-solutions",
  "name": "Traclog ELD Solutions",
  "icon": "https://cdn.withterminal.com/providers/traclog-eld-solutions/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "transflo",
  "name": "Transflo",
  "icon": "https://cdn.withterminal.com/providers/transflo/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "supported"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "transit-eld",
  "name": "Transit ELD",
  "icon": "https://cdn.withterminal.com/providers/transit-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "trendy-eld",
  "name": "Trendy ELD",
  "icon": "https://cdn.withterminal.com/providers/trendy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "trip-eld",
  "name": "Trip ELD",
  "icon": "https://cdn.withterminal.com/providers/trip-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "truckford-eld",
  "name": "Truckford ELD",
  "icon": "https://cdn.withterminal.com/providers/truckford-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "truckstaff-eld",
  "name": "Truckstaff ELD",
  "icon": "https://cdn.withterminal.com/providers/truckstaff-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "truckx",
  "name": "TruckX",
  "icon": "https://cdn.withterminal.com/providers/truckx/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 300,
    "max": 300
  }
}, {
  "code": "true-road-eld",
  "name": "True Road ELD",
  "icon": "https://cdn.withterminal.com/providers/true-road-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "trust-eld",
  "name": "Trust ELD",
  "icon": "https://cdn.withterminal.com/providers/trust-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "tt-eld",
  "name": "TT ELD",
  "icon": "https://cdn.withterminal.com/providers/tt-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "tx-eld",
  "name": "TX ELD",
  "icon": "https://cdn.withterminal.com/providers/tx-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 120,
    "max": 120
  }
}, {
  "code": "txt-eld",
  "name": "TXT ELD",
  "icon": "https://cdn.withterminal.com/providers/txt-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 30,
    "max": 60
  }
}, {
  "code": "under-control-eld",
  "name": "Under Control ELD",
  "icon": "https://cdn.withterminal.com/providers/under-control-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "unique-eld",
  "name": "Unique ELD",
  "icon": "https://cdn.withterminal.com/providers/unique-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "unity-eld",
  "name": "Unity ELD",
  "icon": "https://cdn.withterminal.com/providers/unity-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "uspower-eld",
  "name": "US Power ELD",
  "icon": "https://cdn.withterminal.com/providers/uspower-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "usfast-eld",
  "name": "USfast ELD",
  "icon": "https://cdn.withterminal.com/providers/usfast-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "uzbprime-eld",
  "name": "UzbPrime ELD",
  "icon": "https://cdn.withterminal.com/providers/uzbprime-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "vector-eld",
  "name": "Vector ELD",
  "icon": "https://cdn.withterminal.com/providers/vector-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "verizon-fleet",
  "name": "Verizon Connect Fleet",
  "icon": "https://cdn.withterminal.com/providers/verizon-fleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_provider",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "verizon-reveal",
  "name": "Verizon Connect Reveal",
  "icon": "https://cdn.withterminal.com/providers/verizon-reveal/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "supported",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 90,
    "max": 360
  },
  "sampleRateRange": {
    "min": 10,
    "max": 30
  }
}, {
  "code": "vista-eld",
  "name": "Vista ELD",
  "icon": "https://cdn.withterminal.com/providers/vista-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "vitality-eld",
  "name": "Vitality ELD",
  "icon": "https://cdn.withterminal.com/providers/vitality-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "vlog-eld",
  "name": "Vlog ELD",
  "icon": "https://cdn.withterminal.com/providers/vlog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "vrd-logs",
  "name": "VRD Logs",
  "icon": "https://cdn.withterminal.com/providers/vrd-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "vrh-eld",
  "name": "VRH ELD",
  "icon": "https://cdn.withterminal.com/providers/vrh-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "vulcansols",
  "name": "Vulcansols",
  "icon": "https://cdn.withterminal.com/providers/vulcansols/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 60,
    "max": 90
  },
  "sampleRateRange": {
    "min": 30,
    "max": 30
  }
}, {
  "code": "secure-eld",
  "name": "WBCS Group LLC",
  "icon": "https://cdn.withterminal.com/providers/secure-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "webfleet",
  "name": "Webfleet",
  "icon": "https://cdn.withterminal.com/providers/webfleet/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 90,
    "max": 90
  },
  "sampleRateRange": null
}, {
  "code": "wex-telematics",
  "name": "Wex Telematics",
  "icon": "https://cdn.withterminal.com/providers/wex-telematics/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 5,
    "max": 60
  }
}, {
  "code": "wheels-elog",
  "name": "Wheels eLog",
  "icon": "https://cdn.withterminal.com/providers/wheels-elog/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "wizefleet-eld",
  "name": "Wizefleet ELD",
  "icon": "https://cdn.withterminal.com/providers/wizefleet-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "supported",
    "HOSLog": "supported",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_provider"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 300,
    "max": 300
  }
}, {
  "code": "xpert-logs",
  "name": "Xpert Logs",
  "icon": "https://cdn.withterminal.com/providers/xpert-logs/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "youlog-eld",
  "name": "YouLog ELD",
  "icon": "https://cdn.withterminal.com/providers/youlog-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "zaphira-eld",
  "name": "Zaphira ELD",
  "icon": "https://cdn.withterminal.com/providers/zaphira-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "supported",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "supported",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 365,
    "max": 365
  },
  "sampleRateRange": {
    "min": 90,
    "max": 120
  }
}, {
  "code": "zenith-eld",
  "name": "Zenith ELD",
  "icon": "https://cdn.withterminal.com/providers/zenith-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": null,
  "sampleRateRange": null
}, {
  "code": "zero-eld",
  "name": "Zero ELD",
  "icon": "https://cdn.withterminal.com/providers/zero-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_provider",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_provider",
    "HOSLog": "not_supported_by_provider",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_provider",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "supported",
    "FaultCodeEvent": "not_supported_by_provider",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "zeromax-eld",
  "name": "Zeromax ELD",
  "icon": "https://cdn.withterminal.com/providers/zeromax-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "not_supported_by_terminal",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 180,
    "max": 180
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "zippy-eld",
  "name": "Zippy ELD",
  "icon": "https://cdn.withterminal.com/providers/zippy-eld/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_provider",
    "CameraMedia": "not_supported_by_provider",
    "IFTASummary": "supported",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "supported",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_provider",
    "LatestTrailerLocation": "not_supported_by_provider",
    "Group": "supported",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}, {
  "code": "zonar",
  "name": "Zonar Ground Traffic Control",
  "icon": "https://cdn.withterminal.com/providers/zonar/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "supported",
    "SafetyEvent": "supported",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "supported",
    "LatestTrailerLocation": "supported",
    "Group": "not_supported_by_provider",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "supported",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": true,
  "availableHistoryRange": {
    "min": "unlimited",
    "max": "unlimited"
  },
  "sampleRateRange": null
}, {
  "code": "zonar-ignition",
  "name": "Zonar Ignition",
  "icon": "https://cdn.withterminal.com/providers/zonar-ignition/icon.png",
  "models": {
    "Vehicle": "supported",
    "Driver": "supported",
    "VehicleLocation": "supported",
    "VehicleStatLog": "supported",
    "LatestVehicleLocation": "supported",
    "Trip": "not_supported_by_terminal",
    "SafetyEvent": "not_supported_by_terminal",
    "CameraMedia": "not_supported_by_terminal",
    "IFTASummary": "not_supported_by_terminal",
    "HOSLog": "not_supported_by_terminal",
    "HOSAvailableTime": "not_supported_by_terminal",
    "HOSDailyLog": "not_supported_by_terminal",
    "Trailer": "not_supported_by_terminal",
    "LatestTrailerLocation": "not_supported_by_terminal",
    "Group": "not_supported_by_terminal",
    "Device": "not_supported_by_terminal",
    "FaultCodeEvent": "not_supported_by_terminal",
    "VehicleUtilization": "not_supported_by_terminal"
  },
  "supportsCrashReport": false,
  "availableHistoryRange": {
    "min": 730,
    "max": 730
  },
  "sampleRateRange": {
    "min": 60,
    "max": 60
  }
}];

export const modelLabels = {
  "Device": "Device",
  "Driver": "Driver",
  "Group": "Group",
  "Trailer": "Trailer",
  "Vehicle": "Vehicle",
  "HOSAvailableTime": "HOS Available Time",
  "LatestTrailerLocation": "Latest Trailer Location",
  "LatestVehicleLocation": "Latest Vehicle Location",
  "FaultCodeEvent": "Fault Code Event",
  "HOSDailyLog": "HOS Daily Log",
  "HOSLog": "HOS Log",
  "IFTASummary": "IFTA Summary",
  "SafetyEvent": "Safety Event",
  "Trip": "Trip",
  "VehicleLocation": "Vehicle Location",
  "VehicleStatLog": "Vehicle Stat Log",
  "VehicleUtilization": "Vehicle Utilization",
  "CameraMedia": "Camera Media"
};

export const modelKeys = ["Device", "Driver", "Group", "Trailer", "Vehicle", "HOSAvailableTime", "LatestTrailerLocation", "LatestVehicleLocation", "FaultCodeEvent", "HOSDailyLog", "HOSLog", "IFTASummary", "SafetyEvent", "Trip", "VehicleLocation", "VehicleStatLog", "VehicleUtilization", "CameraMedia"];

export const modelGroups = [["Device", "Driver", "Group", "Trailer", "Vehicle"], ["HOSAvailableTime", "LatestTrailerLocation", "LatestVehicleLocation"], ["FaultCodeEvent", "HOSDailyLog", "HOSLog", "IFTASummary", "SafetyEvent", "Trip", "VehicleLocation", "VehicleStatLog", "VehicleUtilization"], ["CameraMedia"]];

Terminal integrates with hundreds of telematics providers through a single API. Use the filters below to find providers by supported data models, available history, and sample rate. You can also search for providers by name.

Click on any provider to see which data attributes are available and how complete the data is. You can also query provider capabilities programmatically via the [List Providers](/api-reference/providers/list-providers) endpoint. If you have questions or want to request a new integration, reach out at [support@withterminal.com](mailto:support@withterminal.com).

<ProviderExplorer providers={providers} modelLabels={modelLabels} modelKeys={modelKeys} modelGroups={modelGroups} />
