Skip to main content
Latest
variable RDWQuery
import { RDWQuery } from "https://deno.land/x/rdw_data@0.7.0/src/providers/TellerstandoordeelTrendToelichting.ts";

Open Data RDW: Tellerstandoordeel Trend Toelichting

De tellerstandoordelen worden in gekentekende voertuigen vermeld als codes. Deze tabel helpt de gebruiker om die codes om te zetten in begrijpbare toelichtingen.

URL: https://opendata.rdw.nl/Voertuigen/Open-Data-RDW-Tellerstandoordeel-Trend-Toelichting/jqs4-4kvw

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/jqs4-4kvw

Dataset ID: jqs4-4kvw

Category: Voertuigen


This generates a SodaQuery for the Open Data RDW: Tellerstandoordeel Trend Toelichting dataset.

Examples

Example 1

const data = await RDWQuery()
  .where(Where.like(Fields.CodeToelichtingTellerstandoordeel, "some_value")
  .limit(10)
  .offset(0);
  .execute();

type

(auth?: AuthOpts, opts?: Options) => unknown