Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
variable RDWQuery
import { RDWQuery } from "https://deno.land/x/rdw_data@0.7.0/src/providers/ParkerenContactpersoon.ts";

Open Data Parkeren: CONTACTPERSOON

Geregistreerde contactpersonen van een parkeergebied of faciliteit

URL: https://opendata.rdw.nl/Parkeren/Open-Data-Parkeren-CONTACTPERSOON/rbew-yhyc

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/rbew-yhyc

Dataset ID: rbew-yhyc

Category: Parkeren


This generates a SodaQuery for the Open Data Parkeren: CONTACTPERSOON dataset.

Examples

Example 1

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

type

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