From 2bd4f3ba3ca34118c500cc8a01dbd9a75adb51ef Mon Sep 17 00:00:00 2001 From: Bryan de Jong Date: Wed, 16 Aug 2023 01:09:26 +0100 Subject: [PATCH 1/5] feat(vth): add vth-dashboard app --- .eslintrc.js | 3 + apps/vth-onderzoek-dashboard/.eslintignore | 5 + apps/vth-onderzoek-dashboard/README.md | 33 + apps/vth-onderzoek-dashboard/config/admin.ts | 13 + apps/vth-onderzoek-dashboard/config/api.ts | 7 + .../config/database.ts | 42 + .../config/middlewares.ts | 12 + .../vth-onderzoek-dashboard/config/plugins.ts | 54 + apps/vth-onderzoek-dashboard/config/server.ts | 10 + .../database/migrations/.gitkeep | 0 apps/vth-onderzoek-dashboard/favicon.ico | Bin 0 -> 3688 bytes apps/vth-onderzoek-dashboard/package.json | 50 + .../public/uploads/.gitkeep | 0 apps/vth-onderzoek-dashboard/src/admin/app.ts | 27 + .../src/admin/tsconfig.json | 5 + .../src/admin/webpack.config.js | 26 + apps/vth-onderzoek-dashboard/src/api/.gitkeep | 0 .../src/api/faq/content-types/faq/schema.json | 38 + .../src/api/faq/controllers/faq.js | 9 + .../src/api/faq/routes/faq.js | 9 + .../src/api/faq/services/faq.js | 9 + .../content-types/not-found-page/schema.json | 36 + .../controllers/not-found-page.ts | 7 + .../not-found-page/routes/not-found-page.ts | 7 + .../not-found-page/services/not-found-page.ts | 7 + .../content-types/search-tip/schema.json | 48 + .../api/search-tip/controllers/search-tip.ts | 7 + .../src/api/search-tip/routes/search-tip.ts | 7 + .../src/api/search-tip/services/search-tip.ts | 7 + .../content-types/visualisatie/schema.json | 28 + .../visualisatie/controllers/visualisatie.ts | 7 + .../api/visualisatie/routes/visualisatie.ts | 7 + .../api/visualisatie/services/visualisatie.ts | 7 + .../components/accordion-section.json | 15 + .../src/components/components/accordion.json | 15 + .../src/components/components/audience.json | 15 + .../components/components/block-content.json | 14 + .../components/components/button-link.json | 26 + .../src/components/components/contact.json | 22 + .../src/components/components/faq.json | 15 + .../components/components/group-heading.json | 13 + .../src/components/components/image.json | 16 + .../src/components/components/link.json | 19 + .../components/components/logo-button.json | 27 + .../components/multi-columns-button-item.json | 25 + .../components/multi-columns-button.json | 14 + .../src/components/components/spatial.json | 19 + .../src/components/components/spotlight.json | 22 + .../components/vega-visualisatie.json | 17 + .../src/components/sections/faq-section.json | 16 + .../components/sections/flexible-section.json | 32 + .../src/components/seo/meta.json | 27 + .../src/extensions/.gitkeep | 0 apps/vth-onderzoek-dashboard/src/index.ts | 21 + apps/vth-onderzoek-dashboard/tsconfig.json | 10 + package.json | 1 + .../dist/cjs/helpers.d.ts | 14 - .../dist/cjs/helpers.js | 55 - .../dist/cjs/index.d.ts | 39 - .../samenwerkende-catalogi/dist/cjs/index.js | 193 - .../dist/esm/helpers.d.ts | 14 - .../dist/esm/helpers.js | 46 - .../dist/esm/index.d.ts | 39 - .../samenwerkende-catalogi/dist/esm/index.js | 163 - .../dist/admin/src/pluginId.js | 8 - .../dist/package.json | 39 - .../dist/server/index.js | 6 - .../dist/server/register.js | 15 - .../dist/tsconfig.server.tsbuildinfo | 1 - .../dist/server/bootstrap.js | 5 - .../dist/server/config/index.js | 6 - .../dist/server/content-types/index.js | 3 - .../dist/server/controllers/index.js | 9 - .../dist/server/controllers/settings.js | 22 - .../dist/server/destroy.js | 5 - .../strapi-tiptap-editor/dist/server/index.js | 27 - .../dist/server/middlewares/index.js | 3 - .../dist/server/policies/index.js | 3 - .../dist/server/register.js | 5 - .../dist/server/routes/index.js | 20 - .../dist/server/services/index.js | 9 - .../dist/server/services/my-service.js | 7 - .../dist/tsconfig.server.tsbuildinfo | 1 - .../dist/utils/defaults.js | 44 - packages/upl/dist/build/UPL-actueel.d.ts | 13863 ---- packages/upl/dist/build/UPL-actueel.js | 53644 ---------------- packages/upl/dist/build/UPL-key-value.d.ts | 5 - packages/upl/dist/build/UPL-key-value.js | 6205 -- packages/upl/dist/build/main.d.ts | 2 - packages/upl/dist/build/main.js | 18 - packages/upl/dist/index.d.ts | 1 - packages/upl/dist/index.js | 115 - 92 files changed, 928 insertions(+), 74654 deletions(-) create mode 100644 apps/vth-onderzoek-dashboard/.eslintignore create mode 100644 apps/vth-onderzoek-dashboard/README.md create mode 100644 apps/vth-onderzoek-dashboard/config/admin.ts create mode 100644 apps/vth-onderzoek-dashboard/config/api.ts create mode 100644 apps/vth-onderzoek-dashboard/config/database.ts create mode 100644 apps/vth-onderzoek-dashboard/config/middlewares.ts create mode 100644 apps/vth-onderzoek-dashboard/config/plugins.ts create mode 100644 apps/vth-onderzoek-dashboard/config/server.ts create mode 100644 apps/vth-onderzoek-dashboard/database/migrations/.gitkeep create mode 100644 apps/vth-onderzoek-dashboard/favicon.ico create mode 100644 apps/vth-onderzoek-dashboard/package.json create mode 100644 apps/vth-onderzoek-dashboard/public/uploads/.gitkeep create mode 100644 apps/vth-onderzoek-dashboard/src/admin/app.ts create mode 100644 apps/vth-onderzoek-dashboard/src/admin/tsconfig.json create mode 100644 apps/vth-onderzoek-dashboard/src/admin/webpack.config.js create mode 100644 apps/vth-onderzoek-dashboard/src/api/.gitkeep create mode 100644 apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json create mode 100644 apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js create mode 100644 apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js create mode 100644 apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js create mode 100644 apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json create mode 100644 apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json create mode 100644 apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json create mode 100644 apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts create mode 100644 apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/accordion.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/audience.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/block-content.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/button-link.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/contact.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/faq.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/group-heading.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/image.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/link.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/logo-button.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/spatial.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/spotlight.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json create mode 100644 apps/vth-onderzoek-dashboard/src/components/seo/meta.json create mode 100644 apps/vth-onderzoek-dashboard/src/extensions/.gitkeep create mode 100644 apps/vth-onderzoek-dashboard/src/index.ts create mode 100644 apps/vth-onderzoek-dashboard/tsconfig.json delete mode 100644 packages/samenwerkende-catalogi/dist/cjs/helpers.d.ts delete mode 100644 packages/samenwerkende-catalogi/dist/cjs/helpers.js delete mode 100644 packages/samenwerkende-catalogi/dist/cjs/index.d.ts delete mode 100644 packages/samenwerkende-catalogi/dist/cjs/index.js delete mode 100644 packages/samenwerkende-catalogi/dist/esm/helpers.d.ts delete mode 100644 packages/samenwerkende-catalogi/dist/esm/helpers.js delete mode 100644 packages/samenwerkende-catalogi/dist/esm/index.d.ts delete mode 100644 packages/samenwerkende-catalogi/dist/esm/index.js delete mode 100644 packages/strapi-plugin-uniform-product-name/dist/admin/src/pluginId.js delete mode 100644 packages/strapi-plugin-uniform-product-name/dist/package.json delete mode 100644 packages/strapi-plugin-uniform-product-name/dist/server/index.js delete mode 100644 packages/strapi-plugin-uniform-product-name/dist/server/register.js delete mode 100644 packages/strapi-plugin-uniform-product-name/dist/tsconfig.server.tsbuildinfo delete mode 100644 packages/strapi-tiptap-editor/dist/server/bootstrap.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/config/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/content-types/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/controllers/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/controllers/settings.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/destroy.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/middlewares/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/policies/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/register.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/routes/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/services/index.js delete mode 100644 packages/strapi-tiptap-editor/dist/server/services/my-service.js delete mode 100644 packages/strapi-tiptap-editor/dist/tsconfig.server.tsbuildinfo delete mode 100644 packages/strapi-tiptap-editor/dist/utils/defaults.js delete mode 100644 packages/upl/dist/build/UPL-actueel.d.ts delete mode 100644 packages/upl/dist/build/UPL-actueel.js delete mode 100644 packages/upl/dist/build/UPL-key-value.d.ts delete mode 100644 packages/upl/dist/build/UPL-key-value.js delete mode 100644 packages/upl/dist/build/main.d.ts delete mode 100644 packages/upl/dist/build/main.js delete mode 100644 packages/upl/dist/index.d.ts delete mode 100644 packages/upl/dist/index.js diff --git a/.eslintrc.js b/.eslintrc.js index 75314f94..7d662dc2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -50,9 +50,12 @@ module.exports = { parser: '@typescript-eslint/parser', parserOptions: { project: [ +<<<<<<< HEAD './apps/pdc-frontend/tsconfig.json', './apps/pdc-dashboard/tsconfig.json', './apps/pdc-dashboard/src/admin/tsconfig.json', + './apps/vth-onderzoek-dashboard/tsconfig.json', + './apps/vth-onderzoek-dashboard/src/admin/tsconfig.json', './packages/catalogi-data/tsconfig.json', './packages/upl/tsconfig.json', './packages/samenwerkende-catalogi/tsconfig.json', diff --git a/apps/vth-onderzoek-dashboard/.eslintignore b/apps/vth-onderzoek-dashboard/.eslintignore new file mode 100644 index 00000000..94f2762c --- /dev/null +++ b/apps/vth-onderzoek-dashboard/.eslintignore @@ -0,0 +1,5 @@ +.cache +build +**/node_modules/** +.cache +.strapi-updater.json diff --git a/apps/vth-onderzoek-dashboard/README.md b/apps/vth-onderzoek-dashboard/README.md new file mode 100644 index 00000000..ad964a94 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/README.md @@ -0,0 +1,33 @@ +# 🚀 Getting started with Strapi + +Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds. + +## `develop` + +Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop) + +```shell +npm run dev +# or +yarn dev +``` + +### `start` + +Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start) + +```shell +npm run start +# or +yarn start +``` + +### `build` + +Build your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build) + +```shell +npm run build +# or +yarn build +``` diff --git a/apps/vth-onderzoek-dashboard/config/admin.ts b/apps/vth-onderzoek-dashboard/config/admin.ts new file mode 100644 index 00000000..0362175d --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/admin.ts @@ -0,0 +1,13 @@ +export default ({ env }) => ({ + auth: { + secret: env('ADMIN_JWT_SECRET'), + }, + apiToken: { + salt: env('API_TOKEN_SALT'), + }, + transfer: { + token: { + salt: env('TRANSFER_TOKEN_SALT'), + }, + }, +}); diff --git a/apps/vth-onderzoek-dashboard/config/api.ts b/apps/vth-onderzoek-dashboard/config/api.ts new file mode 100644 index 00000000..37f7c14a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/api.ts @@ -0,0 +1,7 @@ +export default { + rest: { + defaultLimit: 25, + maxLimit: 100, + withCount: true, + }, +}; diff --git a/apps/vth-onderzoek-dashboard/config/database.ts b/apps/vth-onderzoek-dashboard/config/database.ts new file mode 100644 index 00000000..f72bb514 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/database.ts @@ -0,0 +1,42 @@ +export default ({ env }) => { + const client = env('DATABASE_CLIENT', 'sqlite'); + + const connections = { + postgres: { + connection: { + connectionString: env('DATABASE_URL'), + host: env('DATABASE_HOST'), + port: env.int('DATABASE_PORT'), + database: env('DATABASE_NAME'), + user: env('DATABASE_USERNAME'), + password: env('DATABASE_PASSWORD'), + ssl: env.bool('DATABASE_SSL', false) && { + key: env('DATABASE_SSL_KEY', undefined), + cert: env('DATABASE_SSL_CERT', undefined), + ca: env('DATABASE_SSL_CA', undefined), + capath: env('DATABASE_SSL_CAPATH', undefined), + cipher: env('DATABASE_SSL_CIPHER', undefined), + rejectUnauthorized: env.bool('DATABASE_SSL_REJECT_UNAUTHORIZED', true), + }, + schema: env('DATABASE_SCHEMA', 'public'), + }, + pool: { min: env.int('DATABASE_POOL_MIN', 0), max: env.int('DATABASE_POOL_MAX', 30) }, + }, + sqlite: { + connection: { + filename: env('DATABASE_FILENAME', '.tmp/data.db'), + useNullAsDefault: true, + debug: false, + }, + useNullAsDefault: true, + }, + }; + + return { + connection: { + client, + ...connections[client], + acquireConnectionTimeout: env.int('DATABASE_CONNECTION_TIMEOUT', 60000), + }, + }; +}; diff --git a/apps/vth-onderzoek-dashboard/config/middlewares.ts b/apps/vth-onderzoek-dashboard/config/middlewares.ts new file mode 100644 index 00000000..3ab20d95 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/middlewares.ts @@ -0,0 +1,12 @@ +export default [ + 'strapi::errors', + 'strapi::security', + 'strapi::cors', + 'strapi::poweredBy', + 'strapi::logger', + 'strapi::query', + 'strapi::body', + 'strapi::session', + 'strapi::favicon', + 'strapi::public', +]; diff --git a/apps/vth-onderzoek-dashboard/config/plugins.ts b/apps/vth-onderzoek-dashboard/config/plugins.ts new file mode 100644 index 00000000..1539b66a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/plugins.ts @@ -0,0 +1,54 @@ +const { apolloPrometheusPlugin } = require('strapi-prometheus'); + +export default ({ env }) => ({ + ckeditor5: { + enabled: false, + }, + 'strapi-tiptap-editor': { + enabled: true, + }, + 'strapi-prometheus': { + enabled: true, + graphql: { + enabled: true, + config: { + apolloServer: { + plugins: [apolloPrometheusPlugin], // add the plugin to get apollo metrics + tracing: true, // this must be true to get some of the data needed to create the metrics + }, + }, + }, + }, + slugify: { + enabled: true, + config: { + shouldUpdateSlug: true, + contentTypes: { + product: { + field: 'slug', + references: 'title', + }, + }, + }, + }, + 'preview-button': { + enabled: true, + config: { + domain: env('FRONTEND_PUBLIC_URL'), + token: env('PREVIEW_SECRET_TOKEN'), + slug: 'products', + }, + }, + upload: { + config: { + providerOptions: { + localServer: { + maxage: 300000, + }, + }, + }, + }, + publisher: { + enabled: true, + }, +}); diff --git a/apps/vth-onderzoek-dashboard/config/server.ts b/apps/vth-onderzoek-dashboard/config/server.ts new file mode 100644 index 00000000..a54a2414 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/config/server.ts @@ -0,0 +1,10 @@ +export default ({ env }) => ({ + host: env('HOST', '0.0.0.0'), + port: env.int('PORT', 1337), + app: { + keys: env.array('APP_KEYS'), + }, + webhooks: { + populateRelations: env.bool('WEBHOOKS_POPULATE_RELATIONS', false), + }, +}); diff --git a/apps/vth-onderzoek-dashboard/database/migrations/.gitkeep b/apps/vth-onderzoek-dashboard/database/migrations/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/apps/vth-onderzoek-dashboard/favicon.ico b/apps/vth-onderzoek-dashboard/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..03eec51b180d0c2500550e83ea5d0b9aead3232d GIT binary patch literal 3688 zcmeHJi9b|pAAiowWH)1}#x_P#bP1spF=NRRSyD>3nD>UXi!2FqsuvZ;P~D<3l%ldF zZEl&V>&{rSbeXn$sZoS5AxFl{`;6}USG@1c=X}oddw%Qp`}>`99sm&dm;Vr81U3@^ zSPa)^0{lGHRrFNgQr+9jeY0FEzmycw{HCAWJqcV4`hGJyYeWeaoOg|re);Ob;|;YO`lt~IXMv-IeY3# zWtHEhNrs<0qZ>9o_3!RInB?IBYXL>1U}Ce^;^sty=0&Q-2RtoKd7Hic;1$^wqT9mq z?z9!3n>nT%B0b}~4~%w#C)cecOiiCY=46uOvI1k--o_NY6XxBW*QP%#n!!YMEUsn3 zK2X?0miRBjNI6(4erC_+i{!4l1OE6zf`Y4aYD%E#<>Gh6Rzq&yMj2!!@T-vdS$)Vn z=_-r-lrqsTVpdoNk@;cgs6*|)uSXb7bEoPm2Inr_oOspCzU40992NBDngWZ*N!j(6 z-DA4Dv;=7VAdBgc9bWafnEJ#zwGeciZc=_6c_bH1`Z}jlq(|e=h$jeWaF&1L{SXh3 zbS-wET|jL%q{xah`To$FP~_Reui7JZYDyBBf+%-f2mY!+n%-KXpUnY9n##Q8nz^~Q zf{5jJS`MX*F#BqLSXC>36?2@HysStc>57%{|Jg+Li`tjIzHs2v3mBSB=(Fh;g%w=< z9Qjlr)&_P8;&DA1LO0ezeL8ey-W2Bb_8)2tTon)Jb9I|cUsnIKl}IA< zsYBTQpLKqCSk7Po$f51C=IW1Y81c#{PF`}u|82CC*pz{>ipH;ZaC(*d-7_2`G_kL zQQLRs$XPI7gvOhQDx#F+I2)P?M%m#OlpahO=-t&qw(B$7Wjy7W1~Q_pLwBn1f}cQhr%APn#9KW8DOKogB}kC78if zkB`7CzEwDO+lBD?K%0QW9%;9j7KF)Dc4mUw;jd>(g0IQzye7vxmii*Ba9;Wh>;^VE z$Ya^*qmgAfa}g9d2?c8OJ(Bxc^I+N*7*(_gd{PEr7Ox=0+IHSr8|^7iF0Va|X#%_3 zXFx5E!hHRM(C;8TZYIj6yh^+jY+vO=LBEy1bEq8~HwN2Xe00%xqX+Z+-B6`3ZYopg z3wD~26^(0ZgUNTB7Z_2wNtvvH*)-B6z*u0h3A|`+zGOeo;%0(Tr}&|MOlIK>cN-S1 z41yb<<2$m#*Y7<#D(PLBTuT7vk;O=(fRh$;@9!CI5XOKu9nW#qYt2P^fHt2rjX)RB zIxAb+LX3JXlgpsXNC%!hg#BDU4>dy%4K~rf#R?OME1oNE1R5D+^qzWtRAv49>9*$r zZ=m5wTn6%4VPjJJh^@MErW{CcLbeDvTlUUVZwFonQkbuFWpinyJYW=Bat{n*rZ2BM zNOvrlufPwdkzrG8TsA6i&5=G>FI907RUV0G2iiQQTf?U0jrqXCv2$pd{WtB{hZj26 z+jxNv6t7I5C}YtWFj2+hkH949lkk1-r5^dD??1ExRCEiZ`r7ibElE){qB3ps^b_Ti zA*{!ZzfrX@6v_>UzZn3^+@sJw`-bE{JweA4CpqWeHAi94x#*WjlrX}#T{43`o`4N$ z*aVeK^SohOc~obVUNUi4p})>ZeQLQHmOqd(bsd8QVy>#IYesGY#z0_g?;1w{`l_0f@Ix=o?%73w^v zz1d0{V6wBNUis1jo7>2%V)BIN)Bt6#S;B`;t*(z9iQ&O1lv%s;6W(TAA&1$MIYr%& z^M|LsM8}$GJ3b(YDDP(9QnUY(Pp|abCaaswsrJXu-2FR|6{Y4^#trOUnPgobGFYWJ zo&QI{NC!x+7{7j+>U_u0FPNhu4V{ci&I4#Al>m_?b?{tfVm=RZM_#TZ~;o_ z0%g=#2_V%*NHhU40*g%m%Lov7CkZ@FNW^xwJfa3r)dHRx0LO5_^(o=#z~cYT|1*S% zcNjTp!JcolM55jI2Uq@?IdvzE#J5+5L&Ix+l2v*lIne4&sVX(wUkgr1T8ZWHsgo&> z#yc?+I8VW+hiig3xcUUBk*{0U)vX%_z27X0|H-#y>e95xkv{0V36{?%TQoYUz3ZT+|Fp|wImu0hxJ z?$}q{5Hr$!DFY&!N4vmA%%s z`5k-asKomo`F`jsGgo}7N(1$|ESvf}*e%{lmL)zVfO1Y4b#}ToXI1LB0d5?Llk7D+ z-j&|k+HO0)Ar%h~-?eA;tMEw|P*DEn*hm+)Gqk6Yv%Zz(FjD6D8gOEL!J2;CmQv_lhv@)#?Ak(|rOkRQ)rJvlu*ERK z?iq}E-%ON6W#E%l=m`?e@!^Lyd<Agx_8t3#txFA-4|jTKH4DGqAigOE)fqzQ0erlSr-iaLZ(IB1$iC&HQ##!p~o zH`9%1;bgA8fqMvqGM0mxtF*k|V1;0nCg79$(!1o}s9geX1BNL0HQ~n}v1BNVV=nX2#rM!*jP5@k!P@&#KYiQDpkDHfYEV2)Qw|Jc>aPoyP@k`547L`Z9tHOpIF>@rd ztW$xunhE$TVOE!hu6m${+U=aXLL=(X&~*e^{n;1c+1ixaBOdEEezvJ} zApCY))iAD1!Ccj*CUK`noMiWq8TXn#0DxgGAxRVqRZU-Mj6o52Z}4-kbY-0U54fTF AFaQ7m literal 0 HcmV?d00001 diff --git a/apps/vth-onderzoek-dashboard/package.json b/apps/vth-onderzoek-dashboard/package.json new file mode 100644 index 00000000..b19fe36a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/package.json @@ -0,0 +1,50 @@ +{ + "name": "@frameless/vth-onderzoek-dashboard", + "private": false, + "version": "0.1.0", + "description": "A Strapi application", + "keywords": [], + "scripts": { + "dev": "strapi develop", + "develop:watch": "strapi develop --watch-admin", + "start": "strapi start", + "prebuild": "npm run clean", + "build": "strapi build", + "strapi": "strapi", + "lint": "eslint --ext .js src", + "lint:fix": "eslint --ext .js src --fix", + "clean": "rimraf build .cache dist" + }, + "dependencies": { + "@frameless/preview-button": "0.0.0-semantically-released", + "@frameless/strapi-plugin-gemeente-select": "0.0.0-semantically-released", + "@frameless/strapi-plugin-scheme-select": "0.0.0-semantically-released", + "@frameless/strapi-plugin-uniform-product-name": "0.0.0-semantically-released", + "@frameless/strapi-tiptap-editor": "0.0.0-semantically-released", + "@strapi/plugin-graphql": "4.10.5", + "@strapi/plugin-i18n": "4.10.5", + "@strapi/plugin-users-permissions": "4.10.5", + "@strapi/strapi": "4.10.5", + "better-sqlite3": "8.3.0", + "pg": "8.11.0", + "slugify": "1.6.6", + "strapi-plugin-publisher": "1.3.4", + "strapi-plugin-slugify": "2.3.2", + "strapi-prometheus": "1.5.0" + }, + "author": { + "name": "" + }, + "strapi": { + "uuid": "3d9f46d7-679c-4633-8821-761d8bbb5bea" + }, + "engines": { + "node": "18.x.x" + }, + "license": "MIT", + "devDependencies": { + "node-sass": "8.0.0", + "sass-loader": "13.2.2", + "scss": "0.2.4" + } +} diff --git a/apps/vth-onderzoek-dashboard/public/uploads/.gitkeep b/apps/vth-onderzoek-dashboard/public/uploads/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/apps/vth-onderzoek-dashboard/src/admin/app.ts b/apps/vth-onderzoek-dashboard/src/admin/app.ts new file mode 100644 index 00000000..147b18f3 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/admin/app.ts @@ -0,0 +1,27 @@ +const config = { + locales: ['nl', 'en'], + notifications: { + releases: false, + }, + translations: { + en: { + 'app.components.HomePage.welcome': 'Welcome 👋', + }, + nl: { + 'app.components.HomePage.welcome': 'Welkom 👋', + 'content-manager.popUpWarning.warning.has-draft-relations.title': 'Bevestiging', + 'content-manager.popUpWarning.warning.publish-question': 'Wil je nog steeds publiceren?', + 'content-manager.popUpWarning.warning.unpublish-question': 'Weet je zeker dat je het niet wilt publiceren?', + 'content-manager.popUpWarning.warning.unpublish': + 'Als je deze inhoud niet publiceert, wordt deze automatisch een concept.', + 'content-manager.popUpWarning.warning.updateAllSettings': 'Dit zal al je instellingen wijzigen.', + }, + }, +}; + +const bootstrap = () => {}; + +export default { + config, + bootstrap, +}; diff --git a/apps/vth-onderzoek-dashboard/src/admin/tsconfig.json b/apps/vth-onderzoek-dashboard/src/admin/tsconfig.json new file mode 100644 index 00000000..08739cf6 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/admin/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "@strapi/typescript-utils/tsconfigs/admin", + "include": ["../../../../packages/**/**/admin/src/**/*", "./"], + "exclude": ["node_modules/", "build/", "dist/", "**/*.test.ts"] +} diff --git a/apps/vth-onderzoek-dashboard/src/admin/webpack.config.js b/apps/vth-onderzoek-dashboard/src/admin/webpack.config.js new file mode 100644 index 00000000..305300c6 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/admin/webpack.config.js @@ -0,0 +1,26 @@ +'use strict'; + +module.exports = (config, webpack) => { + config.plugins.push( + new webpack.NormalModuleReplacementPlugin(/^tippy\.js$/, 'tippy.js/dist/tippy-bundle.umd.min.js'), + ); + // Allow scss modules + config.resolve = { + ...config.resolve, + extensions: [...config.resolve.extensions, '.scss'], + }; + + // Configure a SASS loader + config.module.rules.push({ + test: /\.s[ac]ss$/i, + use: [ + 'style-loader', + 'css-loader', + 'sass-loader', + { + loader: 'sass-loader', + }, + ], + }); + return config; +}; diff --git a/apps/vth-onderzoek-dashboard/src/api/.gitkeep b/apps/vth-onderzoek-dashboard/src/api/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json b/apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json new file mode 100644 index 00000000..48236548 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json @@ -0,0 +1,38 @@ +{ + "kind": "collectionType", + "collectionName": "faqs", + "info": { + "singularName": "faq", + "pluralName": "faqs", + "displayName": "FAQ", + "description": "" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "attributes": { + "faq": { + "type": "component", + "repeatable": false, + "component": "sections.faq-section", + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "title": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "string" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js b/apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js new file mode 100644 index 00000000..d610dfe7 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * faq controller + */ + +const { createCoreController } = require('@strapi/strapi').factories; + +module.exports = createCoreController('api::faq.faq'); diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js b/apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js new file mode 100644 index 00000000..89305507 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * faq router + */ + +const { createCoreRouter } = require('@strapi/strapi').factories; + +module.exports = createCoreRouter('api::faq.faq'); diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js b/apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js new file mode 100644 index 00000000..b374e60f --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js @@ -0,0 +1,9 @@ +'use strict'; + +/** + * faq service + */ + +const { createCoreService } = require('@strapi/strapi').factories; + +module.exports = createCoreService('api::faq.faq'); diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json b/apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json new file mode 100644 index 00000000..7d37647e --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json @@ -0,0 +1,36 @@ +{ + "kind": "singleType", + "collectionName": "not_found_pages", + "info": { + "singularName": "not-found-page", + "pluralName": "not-found-pages", + "displayName": "Not Found Page", + "description": "" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "attributes": { + "title": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "string" + }, + "body": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "richtext" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts b/apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts new file mode 100644 index 00000000..a29be5b0 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts @@ -0,0 +1,7 @@ +/** + * not-found-page controller + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreController('api::not-found-page.not-found-page'); diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts b/apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts new file mode 100644 index 00000000..2941ce02 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts @@ -0,0 +1,7 @@ +/** + * not-found-page router + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreRouter('api::not-found-page.not-found-page'); diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts b/apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts new file mode 100644 index 00000000..20d50ca0 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts @@ -0,0 +1,7 @@ +/** + * not-found-page service + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreService('api::not-found-page.not-found-page'); diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json b/apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json new file mode 100644 index 00000000..8c02aec2 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json @@ -0,0 +1,48 @@ +{ + "kind": "singleType", + "collectionName": "search_tips", + "info": { + "singularName": "search-tip", + "pluralName": "search-tips", + "displayName": "Search tip", + "description": "" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "attributes": { + "title": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "string", + "required": true + }, + "body": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "richtext", + "required": true + }, + "seo": { + "type": "component", + "repeatable": false, + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "component": "seo.meta" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts b/apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts new file mode 100644 index 00000000..5ac79e89 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts @@ -0,0 +1,7 @@ +/** + * search-tip controller + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreController('api::search-tip.search-tip'); diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts b/apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts new file mode 100644 index 00000000..5904fc87 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts @@ -0,0 +1,7 @@ +/** + * search-tip router + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreRouter('api::search-tip.search-tip'); diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts b/apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts new file mode 100644 index 00000000..946f4f75 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts @@ -0,0 +1,7 @@ +/** + * search-tip service + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreService('api::search-tip.search-tip'); diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json b/apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json new file mode 100644 index 00000000..7c1f97e9 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json @@ -0,0 +1,28 @@ +{ + "kind": "singleType", + "collectionName": "visualisaties", + "info": { + "singularName": "visualisatie", + "pluralName": "visualisaties", + "displayName": "Visualisatie", + "description": "" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": {}, + "attributes": { + "body": { + "type": "richtext" + }, + "visualisatie": { + "type": "component", + "repeatable": true, + "component": "components.vega-visualisatie" + }, + "title": { + "type": "string", + "unique": false + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts b/apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts new file mode 100644 index 00000000..112b79bc --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts @@ -0,0 +1,7 @@ +/** + * visualisatie controller + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreController('api::visualisatie.visualisatie'); diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts b/apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts new file mode 100644 index 00000000..ff1aeb71 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts @@ -0,0 +1,7 @@ +/** + * visualisatie router + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreRouter('api::visualisatie.visualisatie'); diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts b/apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts new file mode 100644 index 00000000..c925f0d9 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts @@ -0,0 +1,7 @@ +/** + * visualisatie service + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreService('api::visualisatie.visualisatie'); diff --git a/apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json b/apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json new file mode 100644 index 00000000..a82ec3c0 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json @@ -0,0 +1,15 @@ +{ + "collectionName": "components_components_accordion_sections", + "info": { + "displayName": "Accordion Section", + "description": "" + }, + "options": {}, + "attributes": { + "item": { + "type": "component", + "repeatable": true, + "component": "components.accordion" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/accordion.json b/apps/vth-onderzoek-dashboard/src/components/components/accordion.json new file mode 100644 index 00000000..fdf0870a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/accordion.json @@ -0,0 +1,15 @@ +{ + "collectionName": "components_components_accordions", + "info": { + "displayName": "accordion" + }, + "options": {}, + "attributes": { + "title": { + "type": "string" + }, + "body": { + "type": "richtext" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/audience.json b/apps/vth-onderzoek-dashboard/src/components/components/audience.json new file mode 100644 index 00000000..5158365b --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/audience.json @@ -0,0 +1,15 @@ +{ + "collectionName": "components_components_audiences", + "info": { + "displayName": "audience", + "description": "" + }, + "options": {}, + "attributes": { + "type": { + "type": "enumeration", + "enum": ["particulier", "ondernemer"], + "required": true + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/block-content.json b/apps/vth-onderzoek-dashboard/src/components/components/block-content.json new file mode 100644 index 00000000..0f2bed37 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/block-content.json @@ -0,0 +1,14 @@ +{ + "collectionName": "components_components_block_contents", + "info": { + "displayName": "Page content", + "description": "" + }, + "options": {}, + "attributes": { + "content": { + "type": "richtext", + "required": true + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/button-link.json b/apps/vth-onderzoek-dashboard/src/components/components/button-link.json new file mode 100644 index 00000000..d52d3556 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/button-link.json @@ -0,0 +1,26 @@ +{ + "collectionName": "components_components_button_links", + "info": { + "displayName": "Button Link", + "description": "" + }, + "options": {}, + "attributes": { + "text": { + "type": "string" + }, + "href": { + "type": "string" + }, + "icon": { + "type": "boolean" + }, + "label": { + "type": "string" + }, + "button_link_appearance": { + "type": "enumeration", + "enum": ["primary", "secondary"] + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/contact.json b/apps/vth-onderzoek-dashboard/src/components/components/contact.json new file mode 100644 index 00000000..0f797d96 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/contact.json @@ -0,0 +1,22 @@ +{ + "collectionName": "components_components_contacts", + "info": { + "displayName": "contact", + "description": "" + }, + "options": {}, + "attributes": { + "name": { + "type": "string", + "private": true, + "required": true, + "unique": true + }, + "email": { + "type": "email", + "private": true, + "unique": true, + "required": true + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/faq.json b/apps/vth-onderzoek-dashboard/src/components/components/faq.json new file mode 100644 index 00000000..fcfc3a18 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/faq.json @@ -0,0 +1,15 @@ +{ + "collectionName": "components_components_faqs", + "info": { + "displayName": "FAQ", + "description": "" + }, + "options": {}, + "attributes": { + "faq": { + "type": "relation", + "relation": "oneToOne", + "target": "api::faq.faq" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/group-heading.json b/apps/vth-onderzoek-dashboard/src/components/components/group-heading.json new file mode 100644 index 00000000..ce93dc43 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/group-heading.json @@ -0,0 +1,13 @@ +{ + "collectionName": "components_components_group_headings", + "info": { + "displayName": "groupHeading", + "description": "" + }, + "options": {}, + "attributes": { + "content": { + "type": "richtext" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/image.json b/apps/vth-onderzoek-dashboard/src/components/components/image.json new file mode 100644 index 00000000..cd1e60c9 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/image.json @@ -0,0 +1,16 @@ +{ + "collectionName": "components_components_images", + "info": { + "displayName": "Image", + "description": "" + }, + "options": {}, + "attributes": { + "imageData": { + "type": "media", + "multiple": false, + "required": false, + "allowedTypes": ["images", "files", "videos", "audios"] + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/link.json b/apps/vth-onderzoek-dashboard/src/components/components/link.json new file mode 100644 index 00000000..2d2eb78e --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/link.json @@ -0,0 +1,19 @@ +{ + "collectionName": "components_components_links", + "info": { + "displayName": "link", + "icon": "link" + }, + "options": {}, + "attributes": { + "label": { + "type": "string" + }, + "href": { + "type": "string" + }, + "external": { + "type": "boolean" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/logo-button.json b/apps/vth-onderzoek-dashboard/src/components/components/logo-button.json new file mode 100644 index 00000000..b64c1119 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/logo-button.json @@ -0,0 +1,27 @@ +{ + "collectionName": "components_components_logo_buttons", + "info": { + "displayName": "Logo Button", + "description": "" + }, + "options": {}, + "attributes": { + "label": { + "type": "string" + }, + "href": { + "type": "string" + }, + "text": { + "type": "string" + }, + "logo": { + "type": "enumeration", + "enum": ["digid", "eherkenning", "eidas", "without_logo"] + }, + "logo_button_appearance": { + "type": "enumeration", + "enum": ["primary", "secondary"] + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json b/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json new file mode 100644 index 00000000..d660a117 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json @@ -0,0 +1,25 @@ +{ + "collectionName": "components_components_multi_columns_button_items", + "info": { + "displayName": "multiColumnsButtonItem", + "description": "" + }, + "options": {}, + "attributes": { + "title": { + "type": "string" + }, + "logoButton": { + "type": "component", + "repeatable": true, + "component": "components.logo-button" + }, + "headingLevel": { + "type": "integer", + "max": 6, + "min": 1, + "required": false, + "default": 3 + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json b/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json new file mode 100644 index 00000000..d968f82a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json @@ -0,0 +1,14 @@ +{ + "collectionName": "components_components_multi_columns_buttons", + "info": { + "displayName": "Multi Column Button" + }, + "options": {}, + "attributes": { + "column": { + "type": "component", + "repeatable": true, + "component": "components.multi-columns-button-item" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/spatial.json b/apps/vth-onderzoek-dashboard/src/components/components/spatial.json new file mode 100644 index 00000000..a1e79e14 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/spatial.json @@ -0,0 +1,19 @@ +{ + "collectionName": "components_components_spatials", + "info": { + "displayName": "spatial", + "description": "" + }, + "options": {}, + "attributes": { + "resourceIdentifier": { + "type": "customField", + "customField": "plugin::gemeente-select.gemeente" + }, + "scheme": { + "type": "customField", + "customField": "plugin::scheme-select.scheme", + "required": true + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/spotlight.json b/apps/vth-onderzoek-dashboard/src/components/components/spotlight.json new file mode 100644 index 00000000..53affbbd --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/spotlight.json @@ -0,0 +1,22 @@ +{ + "collectionName": "components_components_spotlights", + "info": { + "displayName": "Spotlight", + "description": "" + }, + "options": {}, + "attributes": { + "content": { + "type": "richtext", + "required": true + }, + "type": { + "type": "enumeration", + "enum": ["default", "info", "warning"], + "default": "default" + }, + "aside": { + "type": "boolean" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json b/apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json new file mode 100644 index 00000000..f27eec82 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json @@ -0,0 +1,17 @@ +{ + "collectionName": "components_components_vega_visualisaties", + "info": { + "displayName": "Vega Visualisatie", + "description": "" + }, + "options": {}, + "attributes": { + "specification": { + "type": "json", + "required": false + }, + "title": { + "type": "string" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json b/apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json new file mode 100644 index 00000000..fa72c7ae --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json @@ -0,0 +1,16 @@ +{ + "collectionName": "components_sections_faq_sections", + "info": { + "displayName": "FAQ section", + "icon": "question", + "description": "" + }, + "options": {}, + "attributes": { + "accordion": { + "type": "component", + "repeatable": true, + "component": "components.accordion" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json b/apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json new file mode 100644 index 00000000..6ebe0cfc --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json @@ -0,0 +1,32 @@ +{ + "collectionName": "components_sections_flexible_sections", + "info": { + "displayName": "flexible section", + "description": "" + }, + "options": {}, + "attributes": { + "title": { + "type": "string" + }, + "subTitle": { + "type": "richtext" + }, + "option1": { + "type": "richtext" + }, + "digidButton": { + "type": "component", + "repeatable": false, + "component": "components.logo-button" + }, + "accordion": { + "type": "component", + "repeatable": true, + "component": "components.accordion" + }, + "option2": { + "type": "richtext" + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/components/seo/meta.json b/apps/vth-onderzoek-dashboard/src/components/seo/meta.json new file mode 100644 index 00000000..c02899a6 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/components/seo/meta.json @@ -0,0 +1,27 @@ +{ + "collectionName": "components_seo_metas", + "info": { + "displayName": "metaTags", + "icon": "address-card", + "description": "" + }, + "options": {}, + "attributes": { + "keymatch": { + "type": "string", + "unique": false, + "required": true + }, + "title": { + "type": "string", + "maxLength": 70, + "unique": true, + "required": true + }, + "description": { + "type": "text", + "maxLength": 160, + "required": true + } + } +} diff --git a/apps/vth-onderzoek-dashboard/src/extensions/.gitkeep b/apps/vth-onderzoek-dashboard/src/extensions/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/apps/vth-onderzoek-dashboard/src/index.ts b/apps/vth-onderzoek-dashboard/src/index.ts new file mode 100644 index 00000000..50699963 --- /dev/null +++ b/apps/vth-onderzoek-dashboard/src/index.ts @@ -0,0 +1,21 @@ +// import { Strapi } from '@strapi/strapi'; + +export default { + /** + * An asynchronous register function that runs before + * your application is initialized. + * + * This gives you an opportunity to extend code. + */ + + register(/*{ strapi }: { strapi: Strapi }*/) {}, + + /** + * An asynchronous bootstrap function that runs before + * your application gets started. + * + * This gives you an opportunity to set up your data model, + * run jobs, or perform some special logic. + */ + bootstrap(/* { strapi } */) {}, +}; diff --git a/apps/vth-onderzoek-dashboard/tsconfig.json b/apps/vth-onderzoek-dashboard/tsconfig.json new file mode 100644 index 00000000..c0a45b6a --- /dev/null +++ b/apps/vth-onderzoek-dashboard/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "@strapi/typescript-utils/tsconfigs/server", + "compilerOptions": { + "outDir": "dist", + "rootDir": ".", + "allowJs": true + }, + "include": ["./", "src/**/*.json"], + "exclude": ["node_modules/", "build/", "dist/", ".cache/", ".tmp/", "src/admin/", "**/*.test.ts", "src/plugins/**"] +} diff --git a/package.json b/package.json index 220b163b..5a941407 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "packages/samenwerkende-catalogi", "apps/pdc-dashboard", "apps/pdc-frontend", + "apps/vth-onderzoek-dashboard", "packages/*" ], "repository": { diff --git a/packages/samenwerkende-catalogi/dist/cjs/helpers.d.ts b/packages/samenwerkende-catalogi/dist/cjs/helpers.d.ts deleted file mode 100644 index bf9a9aff..00000000 --- a/packages/samenwerkende-catalogi/dist/cjs/helpers.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -type Values = { - resourceIdentifier?: string; - prefLabel?: string; -}; -type PrefixMap = { - xsi: string; - dcterms: string; - overheid: string; - overheidproduct: string; -}; -export declare const getPrefLabel: (values: Values[], resourceIdentifierQuery: string) => string; -export declare const createScheme: (id: string, map: PrefixMap) => string; -export declare const isValidURL: (input: string) => boolean; -export {}; diff --git a/packages/samenwerkende-catalogi/dist/cjs/helpers.js b/packages/samenwerkende-catalogi/dist/cjs/helpers.js deleted file mode 100644 index b5157844..00000000 --- a/packages/samenwerkende-catalogi/dist/cjs/helpers.js +++ /dev/null @@ -1,55 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.isValidURL = exports.createScheme = exports.getPrefLabel = void 0; -var url_1 = __importDefault(require("url")); -var getPrefLabel = function (values, resourceIdentifierQuery) { - var result = values.find(function (_a) { - var resourceIdentifier = _a.resourceIdentifier; - return resourceIdentifier === resourceIdentifierQuery; - }); - return result ? result.prefLabel : null; -}; -exports.getPrefLabel = getPrefLabel; -var lookupPrefix = function (map, namespaceURI) { - for (var prefix in map) { - if (Object.prototype.hasOwnProperty.call(map, prefix) && map[prefix] === namespaceURI) { - return prefix; - } - } - return null; -}; -var createName = function (namespaceURI, name, map) { - var prefix = lookupPrefix(map, namespaceURI); - return prefix ? "".concat(prefix, ":").concat(name) : name; -}; -var CLARK_REGEXP = /^(?:\{([^}]*)\})?(.+)$/; -var createSchemeType = function (string) { - var match = CLARK_REGEXP.exec(string); - return (match && { - namespaceURI: match[1], - name: match[2], - }); -}; -var createScheme = function (id, map) { - var schemeData = createSchemeType(id); - if (schemeData) { - return createName(schemeData.namespaceURI, schemeData.name, map); - } - else { - return undefined; - } -}; -exports.createScheme = createScheme; -var isValidURL = function (input) { - try { - new url_1.default.URL(input); - return true; - } - catch (error) { - return false; - } -}; -exports.isValidURL = isValidURL; diff --git a/packages/samenwerkende-catalogi/dist/cjs/index.d.ts b/packages/samenwerkende-catalogi/dist/cjs/index.d.ts deleted file mode 100644 index eaaf7b16..00000000 --- a/packages/samenwerkende-catalogi/dist/cjs/index.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -type SpatialType = { - resourceIdentifier: string; - scheme: string; - label: string; -}; -type AuthorityType = { - scheme: string; - resourceIdentifier: string; - label: string; -}; -type OnlineRequestType = { - type: string; -}; -type CatalogiMetaType = { - spatial: SpatialType; - authority: AuthorityType; - audience: AudienceType[]; - onlineRequest: OnlineRequestType; - uniformProductName?: string; - description: string; -}; -type AudienceType = { - id: string; - type: string; - scheme: string; -}; -type SamenWerkendeCatalogiAttributesTypes = { - catalogiMeta: CatalogiMetaType; - locale: string; - slug: string; - title: string; - updatedAt: string; -}; -type SamenWerkendeCatalogiDataType = { - id: string; - attributes: SamenWerkendeCatalogiAttributesTypes; -}; -export declare const convertJsonToXML: (data: SamenWerkendeCatalogiDataType[], frontend_url: string) => string; -export {}; diff --git a/packages/samenwerkende-catalogi/dist/cjs/index.js b/packages/samenwerkende-catalogi/dist/cjs/index.js deleted file mode 100644 index f531d312..00000000 --- a/packages/samenwerkende-catalogi/dist/cjs/index.js +++ /dev/null @@ -1,193 +0,0 @@ -"use strict"; -var __assign = (this && this.__assign) || function () { - __assign = Object.assign || function(t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) - t[p] = s[p]; - } - return t; - }; - return __assign.apply(this, arguments); -}; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.convertJsonToXML = void 0; -var gemeente = __importStar(require("@frameless/catalogi-data")); -var upl_1 = require("@frameless/upl"); -var dotenv_1 = __importDefault(require("dotenv")); -var lodash_1 = require("lodash"); -var xmlbuilder2_1 = require("xmlbuilder2"); -var helpers_1 = require("./helpers"); -dotenv_1.default.config(); -var prefixMap = { - xsi: 'http://www.w3.org/2001/XMLSchema-instance', - dcterms: 'http://purl.org/dc/terms/', - overheid: 'http://standaarden.overheid.nl/owms/terms/', - overheidproduct: 'http://standaarden.overheid.nl/product/terms/', -}; -var xmlnsPrefixMap = (0, lodash_1.mapKeys)(prefixMap, function (_value, key) { return "xmlns:".concat(key); }); -var convertJsonToXML = function (data, frontend_url) { - if (!frontend_url) { - throw new Error('frontend_url is required'); - } - else if (!(0, helpers_1.isValidURL)(frontend_url)) { - throw new Error('Invalid frontend_url value'); - } - else if (!data && data.length === 0) { - throw new Error('The `data` parameter is required'); - } - else { - var root_1 = (0, xmlbuilder2_1.create)({ version: '1.0', encoding: 'utf-8' }) - .ele('overheidproduct:scproducten') - .att(__assign(__assign({}, xmlnsPrefixMap), { 'xsi:schemaLocation': 'https://standaarden.overheid.nl/product/terms/sc.xsd' })); - var meta = data.map(function (_a) { - var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o; - var attributes = _a.attributes, id = _a.id; - var gemeenteSpatial = (_b = attributes.catalogiMeta) === null || _b === void 0 ? void 0 : _b.spatial.resourceIdentifier; - var gemeenteAuthority = (_c = attributes.catalogiMeta) === null || _c === void 0 ? void 0 : _c.authority.resourceIdentifier; - var uniformProductName = upl_1.uplKeyValues.find(function (_a) { - var _b; - var uri = _a.uri; - return uri === ((_b = attributes.catalogiMeta) === null || _b === void 0 ? void 0 : _b.uniformProductName); - }); - var prefLabelSpatial = (0, helpers_1.getPrefLabel)(gemeente.cv.value, (_d = attributes.catalogiMeta) === null || _d === void 0 ? void 0 : _d.spatial.resourceIdentifier); - var prefLabelAuthority = (0, helpers_1.getPrefLabel)(gemeente.cv.value, (_e = attributes.catalogiMeta) === null || _e === void 0 ? void 0 : _e.authority.resourceIdentifier); - var schemeAuthority = (0, helpers_1.createScheme)((_g = (_f = attributes.catalogiMeta) === null || _f === void 0 ? void 0 : _f.authority) === null || _g === void 0 ? void 0 : _g.scheme, prefixMap); - var schemeSpatial = (0, helpers_1.createScheme)((_j = (_h = attributes.catalogiMeta) === null || _h === void 0 ? void 0 : _h.spatial) === null || _j === void 0 ? void 0 : _j.scheme, prefixMap); - var path = 'products'; // can be from the CMS - var identifier = "".concat(frontend_url.endsWith('/') ? frontend_url : "".concat(frontend_url, "/")).concat(attributes.locale, "/").concat(path, "/").concat(attributes.slug); - var spatial = { - scheme: schemeSpatial, - resourceIdentifier: gemeenteSpatial, - label: prefLabelSpatial, - }; - var authority = { - scheme: schemeAuthority, - resourceIdentifier: gemeenteAuthority, - label: prefLabelAuthority, - }; - var audiences = attributes.catalogiMeta && ((_k = attributes.catalogiMeta) === null || _k === void 0 ? void 0 : _k.audience) - ? (_l = attributes.catalogiMeta) === null || _l === void 0 ? void 0 : _l.audience.map(function (_a) { - var id = _a.id, type = _a.type; - return ({ id: id, type: type, scheme: 'overheid:Doelgroep' }); - }) - : []; - return { - title: attributes.title, - language: attributes.locale, - modified: attributes.updatedAt, - productId: id, - abstract: (_m = attributes.catalogiMeta) === null || _m === void 0 ? void 0 : _m.description, - onlineAanvragen: (_o = attributes.catalogiMeta) === null || _o === void 0 ? void 0 : _o.onlineRequest.type, - identifier: identifier, - spatial: spatial, - authority: authority, - audiences: audiences, - uniformProductName: uniformProductName, - }; - }); - meta.forEach(function (item) { - var _a, _b, _c; - if (!item.title || - !item.language || - !item.productId || - !item.abstract || - !item.onlineAanvragen || - !item.identifier || - !item.spatial.scheme || - !item.spatial.resourceIdentifier || - !item.authority.resourceIdentifier || - !item.audiences || - item.audiences.length === 0) { - return; - } - var scproduct = root_1.ele('overheidproduct:scproduct').att({ 'owms-version': '4.0' }); - var meta = scproduct.ele('overheidproduct:meta'); - meta - .ele('overheidproduct:owmskern') - .ele('dcterms:identifier') - .txt(item.identifier) - .up() - .ele('dcterms:title') - .txt(item.title) - .up() - .ele('dcterms:language') - .txt(item.language) - .up() - .ele('dcterms:type') - .att({ scheme: 'overheid:Informatietype' }) - .txt('productbeschrijving') - .up() - .ele('dcterms:modified') - .txt(item.modified) - .up() - .ele('dcterms:spatial') - .att({ - scheme: item.authority.scheme, - resourceIdentifier: item.spatial.resourceIdentifier, - }) - .txt(item.spatial.label) - .up() - .ele('overheid:authority') - .att({ - scheme: item.authority.scheme, - resourceIdentifier: item.authority.resourceIdentifier, - }) - .txt(item.authority.label) - .up(); - var owmsmantel = meta.ele('overheidproduct:owmsmantel'); - item.audiences.forEach(function (audience) { - var _a; - owmsmantel - .ele('dcterms:audience') - .att({ - scheme: audience.scheme, - resourceIdentifier: "http://standaarden.overheid.nl/owms/terms/".concat((_a = audience === null || audience === void 0 ? void 0 : audience.type) === null || _a === void 0 ? void 0 : _a.toLowerCase()), - }) - .txt(audience.type); - }); - owmsmantel.ele('dcterms:abstract').txt(item.abstract).up(); - var overheidproductScmeta = meta.ele('overheidproduct:scmeta'); - overheidproductScmeta.ele('overheidproduct:productID').txt(item.productId).up(); - overheidproductScmeta.ele('overheidproduct:onlineAanvragen').txt(item.onlineAanvragen).up(); - if ((_a = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _a === void 0 ? void 0 : _a.uri) { - overheidproductScmeta - .ele('overheidproduct:uniformeProductnaam') - .att({ scheme: 'overheid:UniformeProductnaam', resourceIdentifier: (_b = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _b === void 0 ? void 0 : _b.uri }) - .txt((_c = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _c === void 0 ? void 0 : _c.value) - .up(); - } - scproduct.ele('overheidproduct:body'); - }); - // convert the XML tree to string - var xml = root_1.end({ prettyPrint: true }); - return xml; - } -}; -exports.convertJsonToXML = convertJsonToXML; diff --git a/packages/samenwerkende-catalogi/dist/esm/helpers.d.ts b/packages/samenwerkende-catalogi/dist/esm/helpers.d.ts deleted file mode 100644 index bf9a9aff..00000000 --- a/packages/samenwerkende-catalogi/dist/esm/helpers.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -type Values = { - resourceIdentifier?: string; - prefLabel?: string; -}; -type PrefixMap = { - xsi: string; - dcterms: string; - overheid: string; - overheidproduct: string; -}; -export declare const getPrefLabel: (values: Values[], resourceIdentifierQuery: string) => string; -export declare const createScheme: (id: string, map: PrefixMap) => string; -export declare const isValidURL: (input: string) => boolean; -export {}; diff --git a/packages/samenwerkende-catalogi/dist/esm/helpers.js b/packages/samenwerkende-catalogi/dist/esm/helpers.js deleted file mode 100644 index db47e49a..00000000 --- a/packages/samenwerkende-catalogi/dist/esm/helpers.js +++ /dev/null @@ -1,46 +0,0 @@ -import url from 'url'; -export var getPrefLabel = function (values, resourceIdentifierQuery) { - var result = values.find(function (_a) { - var resourceIdentifier = _a.resourceIdentifier; - return resourceIdentifier === resourceIdentifierQuery; - }); - return result ? result.prefLabel : null; -}; -var lookupPrefix = function (map, namespaceURI) { - for (var prefix in map) { - if (Object.prototype.hasOwnProperty.call(map, prefix) && map[prefix] === namespaceURI) { - return prefix; - } - } - return null; -}; -var createName = function (namespaceURI, name, map) { - var prefix = lookupPrefix(map, namespaceURI); - return prefix ? "".concat(prefix, ":").concat(name) : name; -}; -var CLARK_REGEXP = /^(?:\{([^}]*)\})?(.+)$/; -var createSchemeType = function (string) { - var match = CLARK_REGEXP.exec(string); - return (match && { - namespaceURI: match[1], - name: match[2], - }); -}; -export var createScheme = function (id, map) { - var schemeData = createSchemeType(id); - if (schemeData) { - return createName(schemeData.namespaceURI, schemeData.name, map); - } - else { - return undefined; - } -}; -export var isValidURL = function (input) { - try { - new url.URL(input); - return true; - } - catch (error) { - return false; - } -}; diff --git a/packages/samenwerkende-catalogi/dist/esm/index.d.ts b/packages/samenwerkende-catalogi/dist/esm/index.d.ts deleted file mode 100644 index eaaf7b16..00000000 --- a/packages/samenwerkende-catalogi/dist/esm/index.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -type SpatialType = { - resourceIdentifier: string; - scheme: string; - label: string; -}; -type AuthorityType = { - scheme: string; - resourceIdentifier: string; - label: string; -}; -type OnlineRequestType = { - type: string; -}; -type CatalogiMetaType = { - spatial: SpatialType; - authority: AuthorityType; - audience: AudienceType[]; - onlineRequest: OnlineRequestType; - uniformProductName?: string; - description: string; -}; -type AudienceType = { - id: string; - type: string; - scheme: string; -}; -type SamenWerkendeCatalogiAttributesTypes = { - catalogiMeta: CatalogiMetaType; - locale: string; - slug: string; - title: string; - updatedAt: string; -}; -type SamenWerkendeCatalogiDataType = { - id: string; - attributes: SamenWerkendeCatalogiAttributesTypes; -}; -export declare const convertJsonToXML: (data: SamenWerkendeCatalogiDataType[], frontend_url: string) => string; -export {}; diff --git a/packages/samenwerkende-catalogi/dist/esm/index.js b/packages/samenwerkende-catalogi/dist/esm/index.js deleted file mode 100644 index 09b44848..00000000 --- a/packages/samenwerkende-catalogi/dist/esm/index.js +++ /dev/null @@ -1,163 +0,0 @@ -var __assign = (this && this.__assign) || function () { - __assign = Object.assign || function(t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) - t[p] = s[p]; - } - return t; - }; - return __assign.apply(this, arguments); -}; -import * as gemeente from '@frameless/catalogi-data'; -import { uplKeyValues } from '@frameless/upl'; -import dotenv from 'dotenv'; -import { mapKeys } from 'lodash'; -import { create } from 'xmlbuilder2'; -import { createScheme, getPrefLabel, isValidURL } from './helpers'; -dotenv.config(); -var prefixMap = { - xsi: 'http://www.w3.org/2001/XMLSchema-instance', - dcterms: 'http://purl.org/dc/terms/', - overheid: 'http://standaarden.overheid.nl/owms/terms/', - overheidproduct: 'http://standaarden.overheid.nl/product/terms/', -}; -var xmlnsPrefixMap = mapKeys(prefixMap, function (_value, key) { return "xmlns:".concat(key); }); -export var convertJsonToXML = function (data, frontend_url) { - if (!frontend_url) { - throw new Error('frontend_url is required'); - } - else if (!isValidURL(frontend_url)) { - throw new Error('Invalid frontend_url value'); - } - else if (!data && data.length === 0) { - throw new Error('The `data` parameter is required'); - } - else { - var root_1 = create({ version: '1.0', encoding: 'utf-8' }) - .ele('overheidproduct:scproducten') - .att(__assign(__assign({}, xmlnsPrefixMap), { 'xsi:schemaLocation': 'https://standaarden.overheid.nl/product/terms/sc.xsd' })); - var meta = data.map(function (_a) { - var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o; - var attributes = _a.attributes, id = _a.id; - var gemeenteSpatial = (_b = attributes.catalogiMeta) === null || _b === void 0 ? void 0 : _b.spatial.resourceIdentifier; - var gemeenteAuthority = (_c = attributes.catalogiMeta) === null || _c === void 0 ? void 0 : _c.authority.resourceIdentifier; - var uniformProductName = uplKeyValues.find(function (_a) { - var _b; - var uri = _a.uri; - return uri === ((_b = attributes.catalogiMeta) === null || _b === void 0 ? void 0 : _b.uniformProductName); - }); - var prefLabelSpatial = getPrefLabel(gemeente.cv.value, (_d = attributes.catalogiMeta) === null || _d === void 0 ? void 0 : _d.spatial.resourceIdentifier); - var prefLabelAuthority = getPrefLabel(gemeente.cv.value, (_e = attributes.catalogiMeta) === null || _e === void 0 ? void 0 : _e.authority.resourceIdentifier); - var schemeAuthority = createScheme((_g = (_f = attributes.catalogiMeta) === null || _f === void 0 ? void 0 : _f.authority) === null || _g === void 0 ? void 0 : _g.scheme, prefixMap); - var schemeSpatial = createScheme((_j = (_h = attributes.catalogiMeta) === null || _h === void 0 ? void 0 : _h.spatial) === null || _j === void 0 ? void 0 : _j.scheme, prefixMap); - var path = 'products'; // can be from the CMS - var identifier = "".concat(frontend_url.endsWith('/') ? frontend_url : "".concat(frontend_url, "/")).concat(attributes.locale, "/").concat(path, "/").concat(attributes.slug); - var spatial = { - scheme: schemeSpatial, - resourceIdentifier: gemeenteSpatial, - label: prefLabelSpatial, - }; - var authority = { - scheme: schemeAuthority, - resourceIdentifier: gemeenteAuthority, - label: prefLabelAuthority, - }; - var audiences = attributes.catalogiMeta && ((_k = attributes.catalogiMeta) === null || _k === void 0 ? void 0 : _k.audience) - ? (_l = attributes.catalogiMeta) === null || _l === void 0 ? void 0 : _l.audience.map(function (_a) { - var id = _a.id, type = _a.type; - return ({ id: id, type: type, scheme: 'overheid:Doelgroep' }); - }) - : []; - return { - title: attributes.title, - language: attributes.locale, - modified: attributes.updatedAt, - productId: id, - abstract: (_m = attributes.catalogiMeta) === null || _m === void 0 ? void 0 : _m.description, - onlineAanvragen: (_o = attributes.catalogiMeta) === null || _o === void 0 ? void 0 : _o.onlineRequest.type, - identifier: identifier, - spatial: spatial, - authority: authority, - audiences: audiences, - uniformProductName: uniformProductName, - }; - }); - meta.forEach(function (item) { - var _a, _b, _c; - if (!item.title || - !item.language || - !item.productId || - !item.abstract || - !item.onlineAanvragen || - !item.identifier || - !item.spatial.scheme || - !item.spatial.resourceIdentifier || - !item.authority.resourceIdentifier || - !item.audiences || - item.audiences.length === 0) { - return; - } - var scproduct = root_1.ele('overheidproduct:scproduct').att({ 'owms-version': '4.0' }); - var meta = scproduct.ele('overheidproduct:meta'); - meta - .ele('overheidproduct:owmskern') - .ele('dcterms:identifier') - .txt(item.identifier) - .up() - .ele('dcterms:title') - .txt(item.title) - .up() - .ele('dcterms:language') - .txt(item.language) - .up() - .ele('dcterms:type') - .att({ scheme: 'overheid:Informatietype' }) - .txt('productbeschrijving') - .up() - .ele('dcterms:modified') - .txt(item.modified) - .up() - .ele('dcterms:spatial') - .att({ - scheme: item.authority.scheme, - resourceIdentifier: item.spatial.resourceIdentifier, - }) - .txt(item.spatial.label) - .up() - .ele('overheid:authority') - .att({ - scheme: item.authority.scheme, - resourceIdentifier: item.authority.resourceIdentifier, - }) - .txt(item.authority.label) - .up(); - var owmsmantel = meta.ele('overheidproduct:owmsmantel'); - item.audiences.forEach(function (audience) { - var _a; - owmsmantel - .ele('dcterms:audience') - .att({ - scheme: audience.scheme, - resourceIdentifier: "http://standaarden.overheid.nl/owms/terms/".concat((_a = audience === null || audience === void 0 ? void 0 : audience.type) === null || _a === void 0 ? void 0 : _a.toLowerCase()), - }) - .txt(audience.type); - }); - owmsmantel.ele('dcterms:abstract').txt(item.abstract).up(); - var overheidproductScmeta = meta.ele('overheidproduct:scmeta'); - overheidproductScmeta.ele('overheidproduct:productID').txt(item.productId).up(); - overheidproductScmeta.ele('overheidproduct:onlineAanvragen').txt(item.onlineAanvragen).up(); - if ((_a = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _a === void 0 ? void 0 : _a.uri) { - overheidproductScmeta - .ele('overheidproduct:uniformeProductnaam') - .att({ scheme: 'overheid:UniformeProductnaam', resourceIdentifier: (_b = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _b === void 0 ? void 0 : _b.uri }) - .txt((_c = item === null || item === void 0 ? void 0 : item.uniformProductName) === null || _c === void 0 ? void 0 : _c.value) - .up(); - } - scproduct.ele('overheidproduct:body'); - }); - // convert the XML tree to string - var xml = root_1.end({ prettyPrint: true }); - return xml; - } -}; diff --git a/packages/strapi-plugin-uniform-product-name/dist/admin/src/pluginId.js b/packages/strapi-plugin-uniform-product-name/dist/admin/src/pluginId.js deleted file mode 100644 index 67a40fd2..00000000 --- a/packages/strapi-plugin-uniform-product-name/dist/admin/src/pluginId.js +++ /dev/null @@ -1,8 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const package_json_1 = __importDefault(require("../../package.json")); -const pluginId = package_json_1.default.name.replace(/^@frameless\/(@[^-,.][\w,-]+\/|strapi-)plugin-/i, ''); -exports.default = pluginId; diff --git a/packages/strapi-plugin-uniform-product-name/dist/package.json b/packages/strapi-plugin-uniform-product-name/dist/package.json deleted file mode 100644 index 98cb7db1..00000000 --- a/packages/strapi-plugin-uniform-product-name/dist/package.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "@frameless/strapi-plugin-uniform-product-name", - "version": "0.0.0-semantically-released", - "description": "A strapi custom field for selecting uniform product name", - "keywords": [], - "private": false, - "strapi": { - "name": "uniform-product-name", - "description": "Select uniform product name custom field", - "kind": "plugin", - "displayName": "Select uniform product name" - }, - "repository": { - "type": "git+ssh", - "url": "git@github.com:frameless/strapi.git" - }, - "publishConfig": { - "registry": "https://npm.pkg.github.com/" - }, - "author": { - "name": "" - }, - "license": "", - "peerDependencies": { - "@strapi/strapi": ">=4.0.0" - }, - "engines": { - "node": "18.x.x" - }, - "dependencies": { - "@strapi/design-system": "1.6.5", - "@strapi/icons": "1.6.5", - "@frameless/upl": "0.0.0-semantically-released" - }, - "scripts": { - "develop": "tsc -p tsconfig.server.json -w", - "build": "tsc -p tsconfig.server.json" - } -} diff --git a/packages/strapi-plugin-uniform-product-name/dist/server/index.js b/packages/strapi-plugin-uniform-product-name/dist/server/index.js deleted file mode 100644 index b90dd67a..00000000 --- a/packages/strapi-plugin-uniform-product-name/dist/server/index.js +++ /dev/null @@ -1,6 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const register_1 = require("./register"); -exports.default = { - register: register_1.register, -}; diff --git a/packages/strapi-plugin-uniform-product-name/dist/server/register.js b/packages/strapi-plugin-uniform-product-name/dist/server/register.js deleted file mode 100644 index 90be9b42..00000000 --- a/packages/strapi-plugin-uniform-product-name/dist/server/register.js +++ /dev/null @@ -1,15 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.register = void 0; -const pluginId_1 = __importDefault(require("../admin/src/pluginId")); -const register = ({ strapi }) => { - strapi.customFields.register({ - name: 'uniform-product-name', - plugin: pluginId_1.default, - type: 'string', - }); -}; -exports.register = register; diff --git a/packages/strapi-plugin-uniform-product-name/dist/tsconfig.server.tsbuildinfo b/packages/strapi-plugin-uniform-product-name/dist/tsconfig.server.tsbuildinfo deleted file mode 100644 index 1b7f7b4a..00000000 --- a/packages/strapi-plugin-uniform-product-name/dist/tsconfig.server.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@strapi/strapi/lib/types/utils.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/date.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/date-time.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/time.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/timestamp.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/utils.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/base.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/biginteger.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/boolean.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/component.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/decimal.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/dynamic-zone.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/enumeration.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/float.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/integer.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/string.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/common.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/json.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/media.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/password.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/relation.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/richtext.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/text.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/uid.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/email.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/schemas/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/accepts/index.d.ts","../../../node_modules/@types/keygrip/index.d.ts","../../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/cookies/index.d.ts","../../../node_modules/@types/http-assert/index.d.ts","../../../node_modules/@types/koa-compose/index.d.ts","../../../node_modules/@types/content-disposition/index.d.ts","../../../node_modules/@types/koa/index.d.ts","../../../node_modules/tarn/dist/PromiseInspection.d.ts","../../../node_modules/tarn/dist/utils.d.ts","../../../node_modules/tarn/dist/PendingOperation.d.ts","../../../node_modules/tarn/dist/Resource.d.ts","../../../node_modules/tarn/dist/Pool.d.ts","../../../node_modules/tarn/dist/TimeoutError.d.ts","../../../node_modules/tarn/dist/tarn.d.ts","../../../node_modules/knex/types/result.d.ts","../../../node_modules/knex/types/tables.d.ts","../../../node_modules/knex/types/index.d.ts","../../../node_modules/@strapi/database/lib/schema/index.d.ts","../../../node_modules/@strapi/database/lib/lifecycles/subscribers/index.d.ts","../../../node_modules/@strapi/database/lib/lifecycles/index.d.ts","../../../node_modules/@strapi/database/lib/migrations/index.d.ts","../../../node_modules/@strapi/database/lib/index.d.ts","../../../node_modules/@strapi/strapi/lib/core-api/controller/index.d.ts","../../../node_modules/@strapi/strapi/lib/core-api/service/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/strapi/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/index.d.ts","../../../node_modules/@strapi/strapi/lib/global.d.ts","../../../node_modules/@strapi/strapi/lib/middlewares/index.d.ts","../../../node_modules/@strapi/strapi/lib/core/registries/policies.d.ts","../../../node_modules/@strapi/strapi/lib/types/factories.d.ts","../../../node_modules/@strapi/strapi/lib/types/index.d.ts","../../../node_modules/@strapi/strapi/lib/index.d.ts","../package.json","../admin/src/pluginId.ts","../server/register.ts","../server/index.ts","../../../node_modules/@types/argparse/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/clone/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/fined/index.d.ts","../../../node_modules/@types/formidable/Formidable.d.ts","../../../node_modules/@types/formidable/parsers/index.d.ts","../../../node_modules/@types/formidable/PersistentFile.d.ts","../../../node_modules/@types/formidable/VolatileFile.d.ts","../../../node_modules/@types/formidable/FormidableError.d.ts","../../../node_modules/@types/formidable/index.d.ts","../../../node_modules/@types/geojson/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/history/DOMUtils.d.ts","../../../node_modules/@types/history/createBrowserHistory.d.ts","../../../node_modules/@types/history/createHashHistory.d.ts","../../../node_modules/@types/history/createMemoryHistory.d.ts","../../../node_modules/@types/history/LocationUtils.d.ts","../../../node_modules/@types/history/PathUtils.d.ts","../../../node_modules/@types/history/index.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscription.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/types.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Operator.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/iif.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/throwError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Observable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/ConnectableObservable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/operators/groupBy.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/symbol/observable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/BehaviorSubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/ReplaySubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/AsyncSubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Scheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/Action.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncAction.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsapScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/asap.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/async.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/QueueScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/queue.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AnimationFrameScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/animationFrame.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/VirtualTimeScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Notification.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/pipe.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/noop.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/identity.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/isObservable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ArgumentOutOfRangeError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/EmptyError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ObjectUnsubscribedError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/UnsubscriptionError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/TimeoutError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindCallback.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindNodeCallback.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/InnerSubscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/OuterSubscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/combineLatest.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/concat.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/defer.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/empty.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/forkJoin.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/from.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEvent.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEventPattern.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/generate.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/interval.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/merge.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/never.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/of.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/onErrorResumeNext.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/pairs.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/partition.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/race.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/range.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/timer.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/using.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/zip.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/config.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/index.d.ts","../../../node_modules/@types/through/index.d.ts","../../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../../node_modules/@types/inquirer/lib/ui/baseUI.d.ts","../../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../../node_modules/@types/inquirer/index.d.ts","../../../node_modules/@types/interpret/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../node_modules/@types/koa__cors/index.d.ts","../../../node_modules/@types/liftoff/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/object.omit/index.d.ts","../../../node_modules/@types/object.pick/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/styled-components/index.d.ts","../../../node_modules/@types/throttle-debounce/index.d.ts","../../../node_modules/@types/triple-beam/index.d.ts","../../../node_modules/@types/use-sync-external-store/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"768f608e503420ced76b31220d064354b2716a32cd886ff7ff729fa26b41dd14","17e8da297e57074ced2feea0e7b715cfab39c69d399bff6ac8fb3a60af656a1c","1dbd4ccb85b2b59e41b58b65dec45707fcfb113794103ddd0417ea2d277dada2","bcf7fc4461b093495b24f0f6e5da06bddfc8389bdf260bcd01423cc39a38a93f","24fbf482cd04ecbdc463eb7fe7d808cad8f5318aabaf58fe8635704f3611a583","50cefdc520771bfd9194bc5fd11802f499ef73f79475c95a5da063fbbcfc62f8","5ba25269bcb2ab2f356eb9168e036c7a1acc5f93b17ed1bd3c8c3c1abe549d9c","c569d93ccaa3b37425001684f4419dd80f4b78a82230f860b49de3cfb115f236","84661f5f8ec9a89727bea128afd3fbdb3448ede24cbd62669620205ec37264ad","3b042eed0748e0c4e961091afbf9a8f32774d45a262626645af728617bf81ba2","91b415236c4cc0cd59bcbe00b9691d43f2821cd7b085fdfdc4de0eb51af21cf3","dacbeaff6fdfc414225ffc73433ecd559eaf2f7b6dddd9d8daa36e453879a0ee","2e8bab33b67b103495d1ccd44a297c49c99e34627c8a29d3b846f8c17822fe99","2e7b912e264e1d74609b1f5d1c6f6cc69a46e43de4f84c3d938f42f307d050de","0e75bc323074e76e4005fd380d05c5164b31b8947ce36e7bfae897559fbb4e67","0b34e1df3eea4ef18177a1881888553ea629aae3645a13384aa8738975200ecd","1fa73896b72938f1efbfdf2191122bb764ee95469ea85a67c3c1c8144dcf7ae3","58c95e853eaff318a63e1426a6e9ab4e52e8b9aa0eb751722d340908c2e87d4b","d3c95963544f25671c4f87016e70fe85772e29efb273d5cc76e73829af80aa46","6baad122dadc43d5ddafebf00daa3cf6d11ef229bf471a77aac10795094503c3","8d72f12cf9236d44cfa405a64875eb93099c4cdebd439b87c96197abb231886a","f1e5047596fbe9a39174c9c359d96cd3a820860cd0571e496d9cc7a98134d23c","625ec5ff0e26bc185a2adb78c5261224b9436199b948191a193b965e60db4ed2","1d0f0219a74a09196d270361c692c742f0d5174af8ddf9e8a7e6689ec464a805","6e03cad90f6de3e05c02fb317d7ae94fac4b690cb42c5712b2655693ebc72750","950e3cda9c2f8d382d0f0d4f7cbe1d46dcda44290e7134d409d226ad14b2186e","30e640b6bcb0a23f3f6c841715e7a94cbf45277854a29977cf9841ee3968bb8c","66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","204dbe6c72467fb14bbe8f06510b11fb541b6ce29580c6e10ebd3bdb2eb0c1f9","d8ff10c7c1f825a87b2b2a1cef499c7079d2d1b880323ce9edbb81282aceee8d","7c54c4b7f7752b0315f14b9ae63f00d7a3f39308e598c670d8a96afdcb8e0a4e","9f559e612c27cce4bc181decc88ba90b00e5be42b6ed7fe9316d6c61476d7439","03dfcf3d00c60a769e705eb5b080c3674cd59ae830ee7ad82aed8f1883f60f06","ca8cec5a09c4323e1fcd9e0f0f84727c9b0818802fabae4ecf7f42a380483037","92d06124389a259ec6f17fa490dd2da4a8aff8fd9055047036e63211793a556b","aa8c0e10f176c156cfea40f5acdbc08cb44a43ba5411c743be645743ed3b1c02","b1bf7de0413303c8bd9424cf4955b433606e90eb31339202c8bffdb1dec982e9","aa977c0c9bc4fa540acb6af1948fa65224e1b2b69a9e2ee73bd1917b3e9d89fb","ec982ebee52d26bdc7a7520612216c9c55e7a44e6fe0f654fb26e6ee41bc16c4","5cd778283c639771dfa30faed474a8c1e0ca6b00576cd65ece3131dffa4b275c","4fcfc6ec9d3381eb98e406468d79b21f7ccd5b32cbfd29d764100a579778c15d","a38237c7b52eb2a7e736cb0054e6d005bba2178cc8f1a7a96cbc7fff18bf248f","564ab54b128b0cfb2155b70685ccb47970a6151b9b69d8784cfd303144a737d0","b77cb7e2944de8093bcbc7ba648385062376a3c4cd0d31d79310424d43c83796","6f207b6bf970c743e3f8e6ccf2c699bf29632fde9c9686f60333138d02f1c621","bdd4d178202ef08e46237608a7f107a945ee9591a878917e874bcee38f7afde1","0f9c7164ff4b13f68b85eeb8cec74f5b088ec7e3536868cb7448c786d496c948","8ff44b098e8ebcdcda36a29fbc3680d12a014cf37f5971ef63af4558cee39549","c011f4474cc77cef6abfbcbd9d587933a85446b14c3bd80f60bd655a9618abed",{"version":"4d17c7665d8dde4e5967ca8df02f06f62180353c2b449dc94436ae4c2dffd627","affectsGlobalScope":true},"2dda41a14a80266478f5953239a362a08307bdbae242ca398e12bc0556c99ebd","0d760d280d2ea3427d5781b057864400d082fa55f9e4d1c59e9fefc0238e7dac","7dba9420d49900c74d5a1f58433ac14dd677159fab6ca2897832f24acd59f297","d4dccf4e7c53ea04efd3006e4fe82c986d621990ded3d0787677f9e8b50566f7","4f1e2aadd2d64df18a785d671609ddcc7dc9296ea8b137a08d9a58a94652b850","ddfaebce83524889a0f34618702fd80d1be736b3d9a7ff4e856246d20be5c553","548f57a46cd528abc0101e3c6b7d2f6af6b8c9aa2cecd54bea8c206db808ebdd","83ca5f716b1ee2c1263f5fb6d5aa72d631449515c515402d2d858bb3a1e7352d","64abcf9f93428f4db81a2481631149a946e7ffd2202c9a4c63429c4a0173d9b6","dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","dc204ca94127eab4c1f7dfeec8da86693586cfd591cc4eb0e91a8c4d67acc1a5","9c230a07d657b3c65ad79e819b0c362a8ebcc0730f9a3d552a26ea632e2bfd53","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","93b7325b49dfbf613d940ed0e471216657b2d77459dac34f1b5b1678f08f884c",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","6670e71d65610bd7b64aac5fdf58c21c545f7fa31e060f02a0dcd91763831eb8","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","a3ca095da123d2d556d663733932d71874e6c4b4874c76118463dedea4b0d2ad","ac9788076b6b9e4514ff1286de37bf90f8e2c1dd7a772c2e746232eaa4184233","49d41b881040e728bc28d463806cdff98b64c69e9da721adcf0ec34345f691b5","0623c302651761724ec920bb95a27d9d47ea71f7e6ef7e4d6f60bd05c86cf50c","b6e465de1852a328392b432b13ee8334b209f3493053e85aa8f0b5f78368d634","afc87a77703487af971af992374f59a6cc729411cd8498a492eb14cce49f092b","2c26ca5810ebbf0129a279811816d6fd703b79b087c1bd723e3dd9bfe75681da","6fd47c237d2efabe2e1259d21019ec85579a17f925ee47cb2db9c3a60d6f391f","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5cb0d591c5212eef7cd84241d0bfc1d37cc87f2fe4a76c5eacf26ade6571f72e","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","1d96568a72657f762763c920d3804868db48d638abd87ddcd82bcb200ef9625c","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d",{"version":"369dd7668d0e6c91550bce0c325f37ce6402e5dd40ecfca66fbb5283e23e559d","affectsGlobalScope":true},"2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77","80da0f61195385d22b666408f6cccbc261c066d401611a286f07dfddf7764017","06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","5d2651c679f59706bf484e7d423f0ec2d9c79897e2e68c91a3f582f21328d193","30d49e69cb62f350ff0bc5dda1c557429c425014955c19c557f101c0de9272e7","d3747dbed45540212e9a906c2fb8b5beb691f2cd0861af58a66dc01871004f38","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","933c42f6ed2768265dfb42faa817ce8d902710c57a21a1859a9c3fe5e985080e","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","bc6e433cb982bf63eaa523dbbbd30fe12960a09861b352d77baf77ad6dd8886d","9af64ab00918f552388252977c1569fe31890686ca1fdb8e20f58d3401c9a50c","3d3cc03b5c6e056c24aac76789f4bc67caee98a4f0774ab82bc8ba34d16be916","747ce36fa27a750a05096f3610e59c9b5a55e13defec545c01a75fd13d67b620","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","5573ce7aa683a81c9a727294ffdb47d82d7715a148bfe9f4ddcf2f6cdfef1f0a","2cd9edbb4a6411a9f5258237dd73323db978d7aa9ebf1d1b0ac79771ac233e24","65719ccb75af7676665ee5a6f4d21d6a5f494ba5da26a4fcdad3b0788121e5c8","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","488b0a139b5f35ded772136cf4b541f3babf22e4ce9056daf65736234e88355d","0f141d684b22a8ff995c19137ec8a90b297461154ad4212b4f45b7e8b10357b7","81af781a1d9eb264b8955538935874d6e60944e6285127d43ac07c6320d1d98f","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","19c816167e076e7c24f074389c6cf3ed87bdbb917d1ea439ca281f9d26db2439","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","30abc554c7ad13063a02ddd06757929b34357aea1f6fcf4ca39114cb0fc19384","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","7e61def8d1fd9b2db068256f056cfbcd9fb7f7a0f405115ddc048deffed2bceb","27c85ba7958ec4b82b87e7df50d41522d8cc64888ced56e12b6ef633173afbca","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","332c7ccf95426d3156ebedb7295979ef2435bd1c1a940024a4d068da3418718f","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da",{"version":"356701ea5df9eea3bf62b0f29857cb950d95eec9b9063f85c17be705926cdd2a","affectsGlobalScope":true},"4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","df5941f81d2d8a084c12b67bfa2a3a9fd2703ee68d75bd2299b15af3fa400d5e","61f41da9aaa809e5142b1d849d4e70f3e09913a5cb32c629bf6e61ef27967ff7","95c617b16c4765ff6de307629b6918181908bee82a59fca0b2c95f170a4be7ea","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9"],"root":[171,172],"options":{"esModuleInterop":true,"module":1,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"strict":false,"target":6},"fileIdsList":[[117,153,154,156,157],[117,154,155,158],[117,156],[117,158],[117,156,158],[117,143],[117],[117,143,168],[44,70,117,162],[117,163,167],[49,117],[50,117],[50,59,117],[49,50,117],[44,49,50,117],[44,50,117],[45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,117],[50,60,117],[44,45,46,47,48,69,117],[69,70,117,161],[44,69,117],[117,143,158,159,160],[117,159,160,161,164,165],[44,117,162,166],[90,117,124],[90,117,124,136],[81,117,124],[87,90,116,117,124,175,176,177],[116,117,124,131],[90,117,124,126,136,138],[117,181],[117,184,186],[117,183,184,185],[87,90,117,124,128,129,130],[117,130,131,135,137],[90,117,194],[87,117,194],[117,191],[105,117,124,189,190,191,192,193],[105,117,194],[87,88,117,124,196],[117,198],[117,206],[117,200,206],[117,201,202,203,204,205],[117,211],[87,90,92,95,105,116,117,124],[102,117,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,299,300],[117,301],[117,280,281,301],[102,117,278,283,301],[102,117,284,285,301],[102,117,284,301],[102,117,278,284,301],[102,117,290,301],[102,117,301],[117,279,295,301],[117,278,295,301],[102,117,278],[117,283],[102,117],[117,278,301],[117,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,234,235,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[117,215,217,222],[117,217,254],[117,216,221],[117,215,216,217,218,219,220],[117,216,217],[117,217,253],[117,215,216,217,222],[117,215,216,230],[117,215,216,217,218,221],[117,215,216],[117,216],[117,215,217,221,222],[117,216,217,218,221,254],[117,221],[117,221,261],[117,215,216,217,221],[117,216,217,218,221],[117,215,216,217,221,222],[117,278],[117,215,216,229],[117,231,232],[117,215,216,230,231],[117,215,216,229,230,232],[117,231],[117,215,216,231,232],[117,238],[117,233],[117,236],[117,215,221],[117,124],[87,117,124],[87,90,91,95,101,116,117,124,125,126,134,139,140,141,142],[87,117,124,188,302],[117,308,310,311,312,313,314,315,316,317,318,319,320],[117,308,309,311,312,313,314,315,316,317,318,319,320],[117,309,310,311,312,313,314,315,316,317,318,319,320],[117,308,309,310,312,313,314,315,316,317,318,319,320],[117,308,309,310,311,313,314,315,316,317,318,319,320],[117,308,309,310,311,312,314,315,316,317,318,319,320],[117,308,309,310,311,312,313,315,316,317,318,319,320],[117,308,309,310,311,312,313,314,316,317,318,319,320],[117,308,309,310,311,312,313,314,315,317,318,319,320],[117,308,309,310,311,312,313,314,315,316,318,319,320],[117,308,309,310,311,312,313,314,315,316,317,319,320],[117,308,309,310,311,312,313,314,315,316,317,318,320],[117,308,309,310,311,312,313,314,315,316,317,318,319],[117,133],[117,132],[71,117],[74,117],[75,80,108,117],[76,87,88,95,105,116,117],[76,77,87,95,117],[78,117],[79,80,88,96,117],[80,105,113,117],[81,83,87,95,117],[82,117],[83,84,117],[87,117],[85,87,117],[87,88,89,105,116,117],[87,88,89,102,105,108,117],[117,121],[83,87,90,95,105,116,117],[87,88,90,91,95,105,113,116,117],[90,92,105,113,116,117],[71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123],[87,93,117],[94,116,117],[83,87,95,105,117],[96,117],[97,117],[74,98,117],[99,115,117,121],[100,117],[101,117],[87,102,103,117],[102,104,117,119],[75,87,105,106,107,108,117],[75,105,107,117],[105,106,117],[108,117],[109,117],[105,117],[87,111,112,117],[111,112,117],[80,95,105,113,117],[114,117],[95,115,117],[75,90,101,116,117],[80,117],[105,117,118],[117,119],[117,120],[75,80,87,89,98,105,116,117,119,121],[105,117,122],[117,328],[117,329],[117,206,211,330],[117,206,211],[117,211,332],[117,332,333,334,335,336],[117,207,208,209,210],[90,105,117,124],[117,340,379],[117,340,364,379],[117,379],[117,340],[117,340,365,379],[117,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378],[117,365,379],[88,105,117,124,127],[88,117,138],[90,117,124,133,134],[117,208,211,212],[105,117,124],[87,90,92,105,113,116,117,122,124],[87,105,113,117,150,151,152],[117,145],[87,117,124,144,146,147],[117,148,149],[117,144],[117,169],[117,171],[117,168,170]],"referencedMap":[[158,1],[156,2],[155,3],[157,4],[154,5],[159,6],[160,7],[165,8],[163,9],[168,10],[164,8],[50,11],[51,12],[52,12],[60,13],[53,14],[46,12],[45,12],[54,12],[55,15],[68,12],[56,16],[57,12],[69,17],[58,12],[61,18],[62,18],[63,12],[64,15],[65,12],[59,12],[66,12],[47,12],[48,12],[67,15],[49,19],[162,20],[70,21],[161,22],[166,23],[167,24],[44,7],[125,25],[173,7],[137,26],[174,27],[178,28],[179,7],[180,29],[136,25],[142,7],[139,30],[182,31],[187,32],[183,7],[186,33],[184,7],[131,34],[138,35],[188,7],[189,36],[193,7],[191,37],[192,38],[194,39],[190,40],[195,7],[197,41],[199,42],[200,7],[204,43],[205,43],[201,44],[202,44],[203,44],[206,45],[212,46],[213,7],[140,7],[176,7],[134,7],[214,47],[301,48],[280,49],[282,50],[281,49],[284,51],[286,52],[287,53],[288,54],[289,52],[290,53],[291,52],[292,55],[293,53],[294,52],[295,56],[296,57],[297,58],[298,59],[285,60],[299,61],[283,61],[300,62],[278,63],[228,64],[226,64],[253,65],[241,66],[221,67],[218,68],[254,69],[227,70],[229,71],[222,72],[217,73],[215,74],[277,7],[223,75],[251,66],[252,66],[255,76],[256,66],[257,66],[258,66],[259,66],[260,66],[261,77],[262,78],[263,66],[219,66],[264,66],[265,66],[266,77],[267,66],[268,66],[269,79],[270,66],[271,76],[272,66],[220,66],[273,66],[274,66],[275,80],[224,81],[276,82],[230,83],[238,84],[233,84],[232,85],[231,86],[236,87],[240,88],[239,89],[234,90],[235,87],[237,91],[225,7],[216,92],[246,7],[247,7],[248,7],[250,7],[249,7],[244,7],[245,77],[243,7],[242,74],[302,93],[185,7],[303,7],[126,7],[304,94],[305,6],[141,6],[143,95],[306,6],[307,96],[309,97],[310,98],[308,99],[311,100],[312,101],[313,102],[314,103],[315,104],[316,105],[317,106],[318,107],[319,108],[320,109],[321,7],[322,42],[132,110],[133,111],[196,7],[323,7],[181,7],[71,112],[72,112],[74,113],[75,114],[76,115],[77,116],[78,117],[79,118],[80,119],[81,120],[82,121],[83,122],[84,122],[86,123],[85,124],[87,123],[88,125],[89,126],[73,127],[123,7],[90,128],[91,129],[92,130],[124,131],[93,132],[94,133],[95,134],[96,135],[97,136],[98,137],[99,138],[100,139],[101,140],[102,141],[103,141],[104,142],[105,143],[107,144],[106,145],[108,146],[109,147],[110,148],[111,149],[112,150],[113,151],[114,152],[115,153],[116,154],[117,155],[118,156],[119,157],[120,158],[121,159],[122,160],[324,7],[325,7],[326,7],[327,7],[329,161],[328,162],[209,7],[130,7],[129,7],[331,163],[330,164],[333,165],[335,46],[332,46],[334,165],[336,7],[337,166],[207,7],[211,167],[177,168],[338,7],[339,7],[210,7],[364,169],[365,170],[340,171],[343,171],[362,169],[363,169],[353,169],[352,172],[350,169],[345,169],[358,169],[356,169],[360,169],[344,169],[357,169],[361,169],[346,169],[347,169],[359,169],[341,169],[348,169],[349,169],[351,169],[355,169],[366,173],[354,169],[342,169],[379,174],[378,7],[373,173],[375,175],[374,173],[367,173],[368,173],[370,173],[372,173],[376,175],[377,175],[369,175],[371,175],[128,176],[127,7],[380,177],[135,178],[381,25],[382,179],[383,7],[279,180],[384,7],[198,7],[385,7],[386,7],[387,181],[208,7],[175,123],[153,182],[151,7],[152,7],[146,183],[148,184],[144,7],[147,183],[149,7],[150,185],[145,186],[42,7],[43,7],[9,7],[8,7],[2,7],[10,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[3,7],[4,7],[21,7],[18,7],[19,7],[20,7],[22,7],[23,7],[24,7],[5,7],[25,7],[26,7],[27,7],[28,7],[6,7],[32,7],[29,7],[30,7],[31,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[170,187],[169,7],[172,188],[171,189]],"exportedModulesMap":[[158,1],[156,2],[155,3],[157,4],[154,5],[159,6],[160,7],[165,8],[163,9],[168,10],[164,8],[50,11],[51,12],[52,12],[60,13],[53,14],[46,12],[45,12],[54,12],[55,15],[68,12],[56,16],[57,12],[69,17],[58,12],[61,18],[62,18],[63,12],[64,15],[65,12],[59,12],[66,12],[47,12],[48,12],[67,15],[49,19],[162,20],[70,21],[161,22],[166,23],[167,24],[44,7],[125,25],[173,7],[137,26],[174,27],[178,28],[179,7],[180,29],[136,25],[142,7],[139,30],[182,31],[187,32],[183,7],[186,33],[184,7],[131,34],[138,35],[188,7],[189,36],[193,7],[191,37],[192,38],[194,39],[190,40],[195,7],[197,41],[199,42],[200,7],[204,43],[205,43],[201,44],[202,44],[203,44],[206,45],[212,46],[213,7],[140,7],[176,7],[134,7],[214,47],[301,48],[280,49],[282,50],[281,49],[284,51],[286,52],[287,53],[288,54],[289,52],[290,53],[291,52],[292,55],[293,53],[294,52],[295,56],[296,57],[297,58],[298,59],[285,60],[299,61],[283,61],[300,62],[278,63],[228,64],[226,64],[253,65],[241,66],[221,67],[218,68],[254,69],[227,70],[229,71],[222,72],[217,73],[215,74],[277,7],[223,75],[251,66],[252,66],[255,76],[256,66],[257,66],[258,66],[259,66],[260,66],[261,77],[262,78],[263,66],[219,66],[264,66],[265,66],[266,77],[267,66],[268,66],[269,79],[270,66],[271,76],[272,66],[220,66],[273,66],[274,66],[275,80],[224,81],[276,82],[230,83],[238,84],[233,84],[232,85],[231,86],[236,87],[240,88],[239,89],[234,90],[235,87],[237,91],[225,7],[216,92],[246,7],[247,7],[248,7],[250,7],[249,7],[244,7],[245,77],[243,7],[242,74],[302,93],[185,7],[303,7],[126,7],[304,94],[305,6],[141,6],[143,95],[306,6],[307,96],[309,97],[310,98],[308,99],[311,100],[312,101],[313,102],[314,103],[315,104],[316,105],[317,106],[318,107],[319,108],[320,109],[321,7],[322,42],[132,110],[133,111],[196,7],[323,7],[181,7],[71,112],[72,112],[74,113],[75,114],[76,115],[77,116],[78,117],[79,118],[80,119],[81,120],[82,121],[83,122],[84,122],[86,123],[85,124],[87,123],[88,125],[89,126],[73,127],[123,7],[90,128],[91,129],[92,130],[124,131],[93,132],[94,133],[95,134],[96,135],[97,136],[98,137],[99,138],[100,139],[101,140],[102,141],[103,141],[104,142],[105,143],[107,144],[106,145],[108,146],[109,147],[110,148],[111,149],[112,150],[113,151],[114,152],[115,153],[116,154],[117,155],[118,156],[119,157],[120,158],[121,159],[122,160],[324,7],[325,7],[326,7],[327,7],[329,161],[328,162],[209,7],[130,7],[129,7],[331,163],[330,164],[333,165],[335,46],[332,46],[334,165],[336,7],[337,166],[207,7],[211,167],[177,168],[338,7],[339,7],[210,7],[364,169],[365,170],[340,171],[343,171],[362,169],[363,169],[353,169],[352,172],[350,169],[345,169],[358,169],[356,169],[360,169],[344,169],[357,169],[361,169],[346,169],[347,169],[359,169],[341,169],[348,169],[349,169],[351,169],[355,169],[366,173],[354,169],[342,169],[379,174],[378,7],[373,173],[375,175],[374,173],[367,173],[368,173],[370,173],[372,173],[376,175],[377,175],[369,175],[371,175],[128,176],[127,7],[380,177],[135,178],[381,25],[382,179],[383,7],[279,180],[384,7],[198,7],[385,7],[386,7],[387,181],[208,7],[175,123],[153,182],[151,7],[152,7],[146,183],[148,184],[144,7],[147,183],[149,7],[150,185],[145,186],[42,7],[43,7],[9,7],[8,7],[2,7],[10,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[3,7],[4,7],[21,7],[18,7],[19,7],[20,7],[22,7],[23,7],[24,7],[5,7],[25,7],[26,7],[27,7],[28,7],[6,7],[32,7],[29,7],[30,7],[31,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[170,187],[169,7],[172,188],[171,189]],"semanticDiagnosticsPerFile":[158,156,155,157,154,159,160,165,163,168,164,50,51,52,60,53,46,45,54,55,68,56,57,69,58,61,62,63,64,65,59,66,47,48,67,49,162,70,161,166,167,44,125,173,137,174,178,179,180,136,142,139,182,187,183,186,184,131,138,188,189,193,191,192,194,190,195,197,199,200,204,205,201,202,203,206,212,213,140,176,134,214,301,280,282,281,284,286,287,288,289,290,291,292,293,294,295,296,297,298,285,299,283,300,278,228,226,253,241,221,218,254,227,229,222,217,215,277,223,251,252,255,256,257,258,259,260,261,262,263,219,264,265,266,267,268,269,270,271,272,220,273,274,275,224,276,230,238,233,232,231,236,240,239,234,235,237,225,216,246,247,248,250,249,244,245,243,242,302,185,303,126,304,305,141,143,306,307,309,310,308,311,312,313,314,315,316,317,318,319,320,321,322,132,133,196,323,181,71,72,74,75,76,77,78,79,80,81,82,83,84,86,85,87,88,89,73,123,90,91,92,124,93,94,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,324,325,326,327,329,328,209,130,129,331,330,333,335,332,334,336,337,207,211,177,338,339,210,364,365,340,343,362,363,353,352,350,345,358,356,360,344,357,361,346,347,359,341,348,349,351,355,366,354,342,379,378,373,375,374,367,368,370,372,376,377,369,371,128,127,380,135,381,382,383,279,384,198,385,386,387,208,175,153,151,152,146,148,144,147,149,150,145,42,43,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,170,169,172,171]},"version":"5.0.4"} \ No newline at end of file diff --git a/packages/strapi-tiptap-editor/dist/server/bootstrap.js b/packages/strapi-tiptap-editor/dist/server/bootstrap.js deleted file mode 100644 index 51042e83..00000000 --- a/packages/strapi-tiptap-editor/dist/server/bootstrap.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = () => { - // bootstrap phase -}; diff --git a/packages/strapi-tiptap-editor/dist/server/config/index.js b/packages/strapi-tiptap-editor/dist/server/config/index.js deleted file mode 100644 index abd2118a..00000000 --- a/packages/strapi-tiptap-editor/dist/server/config/index.js +++ /dev/null @@ -1,6 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = { - default: {}, - validator() { }, -}; diff --git a/packages/strapi-tiptap-editor/dist/server/content-types/index.js b/packages/strapi-tiptap-editor/dist/server/content-types/index.js deleted file mode 100644 index 2367d855..00000000 --- a/packages/strapi-tiptap-editor/dist/server/content-types/index.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = {}; diff --git a/packages/strapi-tiptap-editor/dist/server/controllers/index.js b/packages/strapi-tiptap-editor/dist/server/controllers/index.js deleted file mode 100644 index bd6e051e..00000000 --- a/packages/strapi-tiptap-editor/dist/server/controllers/index.js +++ /dev/null @@ -1,9 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const settings_1 = __importDefault(require("./settings")); -exports.default = { - settingsController: settings_1.default, -}; diff --git a/packages/strapi-tiptap-editor/dist/server/controllers/settings.js b/packages/strapi-tiptap-editor/dist/server/controllers/settings.js deleted file mode 100644 index 3bebfcc1..00000000 --- a/packages/strapi-tiptap-editor/dist/server/controllers/settings.js +++ /dev/null @@ -1,22 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const defaults_1 = __importDefault(require("../../utils/defaults")); -exports.default = ({ strapi }) => ({ - async index(ctx) { - const savedSettings = await strapi.store({ type: 'plugin', name: 'strapi-tiptap-editor', key: 'settings' }).get(); - if (savedSettings !== null) { - ctx.send(savedSettings); - } - else { - ctx.send(defaults_1.default); - } - }, - async updateSettings(ctx) { - const newSettings = ctx.request.body; - await strapi.store({ type: 'plugin', name: 'strapi-tiptap-editor', key: 'settings' }).set({ value: newSettings }); - ctx.send({ res: 'ok' }); - }, -}); diff --git a/packages/strapi-tiptap-editor/dist/server/destroy.js b/packages/strapi-tiptap-editor/dist/server/destroy.js deleted file mode 100644 index c44e9d35..00000000 --- a/packages/strapi-tiptap-editor/dist/server/destroy.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = () => { - // destroy phase -}; diff --git a/packages/strapi-tiptap-editor/dist/server/index.js b/packages/strapi-tiptap-editor/dist/server/index.js deleted file mode 100644 index 2d8748b0..00000000 --- a/packages/strapi-tiptap-editor/dist/server/index.js +++ /dev/null @@ -1,27 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const bootstrap_1 = __importDefault(require("./bootstrap")); -const config_1 = __importDefault(require("./config")); -const content_types_1 = __importDefault(require("./content-types")); -const controllers_1 = __importDefault(require("./controllers")); -const destroy_1 = __importDefault(require("./destroy")); -const middlewares_1 = __importDefault(require("./middlewares")); -const policies_1 = __importDefault(require("./policies")); -const register_1 = __importDefault(require("./register")); -const routes_1 = __importDefault(require("./routes")); -const services_1 = __importDefault(require("./services")); -exports.default = { - register: register_1.default, - bootstrap: bootstrap_1.default, - destroy: destroy_1.default, - config: config_1.default, - controllers: controllers_1.default, - routes: routes_1.default, - services: services_1.default, - contentTypes: content_types_1.default, - policies: policies_1.default, - middlewares: middlewares_1.default, -}; diff --git a/packages/strapi-tiptap-editor/dist/server/middlewares/index.js b/packages/strapi-tiptap-editor/dist/server/middlewares/index.js deleted file mode 100644 index 2367d855..00000000 --- a/packages/strapi-tiptap-editor/dist/server/middlewares/index.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = {}; diff --git a/packages/strapi-tiptap-editor/dist/server/policies/index.js b/packages/strapi-tiptap-editor/dist/server/policies/index.js deleted file mode 100644 index 2367d855..00000000 --- a/packages/strapi-tiptap-editor/dist/server/policies/index.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = {}; diff --git a/packages/strapi-tiptap-editor/dist/server/register.js b/packages/strapi-tiptap-editor/dist/server/register.js deleted file mode 100644 index 30675269..00000000 --- a/packages/strapi-tiptap-editor/dist/server/register.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = () => { - // registeration phase -}; diff --git a/packages/strapi-tiptap-editor/dist/server/routes/index.js b/packages/strapi-tiptap-editor/dist/server/routes/index.js deleted file mode 100644 index 46fb874a..00000000 --- a/packages/strapi-tiptap-editor/dist/server/routes/index.js +++ /dev/null @@ -1,20 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = [ - { - method: 'GET', - path: '/', - handler: 'settingsController.index', - config: { - policies: [], - }, - }, - { - method: 'PUT', - path: '/update-settings', - handler: 'settingsController.updateSettings', - config: { - policies: [], - }, - }, -]; diff --git a/packages/strapi-tiptap-editor/dist/server/services/index.js b/packages/strapi-tiptap-editor/dist/server/services/index.js deleted file mode 100644 index 17229c74..00000000 --- a/packages/strapi-tiptap-editor/dist/server/services/index.js +++ /dev/null @@ -1,9 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const my_service_1 = __importDefault(require("./my-service")); -exports.default = { - myService: my_service_1.default, -}; diff --git a/packages/strapi-tiptap-editor/dist/server/services/my-service.js b/packages/strapi-tiptap-editor/dist/server/services/my-service.js deleted file mode 100644 index 66620727..00000000 --- a/packages/strapi-tiptap-editor/dist/server/services/my-service.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = () => ({ - getWelcomeMessage() { - return 'Welcome to Strapi 🚀'; - }, -}); diff --git a/packages/strapi-tiptap-editor/dist/tsconfig.server.tsbuildinfo b/packages/strapi-tiptap-editor/dist/tsconfig.server.tsbuildinfo deleted file mode 100644 index 0a8809bf..00000000 --- a/packages/strapi-tiptap-editor/dist/tsconfig.server.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../server/bootstrap.ts","../server/destroy.ts","../server/config/index.ts","../server/content-types/index.ts","../../../node_modules/@strapi/strapi/lib/types/utils.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/date.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/date-time.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/time.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/timestamp.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/utils.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/base.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/biginteger.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/boolean.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/component.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/decimal.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/dynamic-zone.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/enumeration.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/float.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/integer.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/string.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/common.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/json.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/media.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/password.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/relation.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/richtext.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/text.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/uid.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/email.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/attributes/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/schemas/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/accepts/index.d.ts","../../../node_modules/@types/keygrip/index.d.ts","../../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/cookies/index.d.ts","../../../node_modules/@types/http-assert/index.d.ts","../../../node_modules/@types/koa-compose/index.d.ts","../../../node_modules/@types/content-disposition/index.d.ts","../../../node_modules/@types/koa/index.d.ts","../../../node_modules/tarn/dist/PromiseInspection.d.ts","../../../node_modules/tarn/dist/utils.d.ts","../../../node_modules/tarn/dist/PendingOperation.d.ts","../../../node_modules/tarn/dist/Resource.d.ts","../../../node_modules/tarn/dist/Pool.d.ts","../../../node_modules/tarn/dist/TimeoutError.d.ts","../../../node_modules/tarn/dist/tarn.d.ts","../../../node_modules/knex/types/result.d.ts","../../../node_modules/knex/types/tables.d.ts","../../../node_modules/knex/types/index.d.ts","../../../node_modules/@strapi/database/lib/schema/index.d.ts","../../../node_modules/@strapi/database/lib/lifecycles/subscribers/index.d.ts","../../../node_modules/@strapi/database/lib/lifecycles/index.d.ts","../../../node_modules/@strapi/database/lib/migrations/index.d.ts","../../../node_modules/@strapi/database/lib/index.d.ts","../../../node_modules/@strapi/strapi/lib/core-api/controller/index.d.ts","../../../node_modules/@strapi/strapi/lib/core-api/service/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/strapi/index.d.ts","../../../node_modules/@strapi/strapi/lib/types/core/index.d.ts","../../../node_modules/@strapi/strapi/lib/global.d.ts","../../../node_modules/@strapi/strapi/lib/middlewares/index.d.ts","../../../node_modules/@strapi/strapi/lib/core/registries/policies.d.ts","../../../node_modules/@strapi/strapi/lib/types/factories.d.ts","../../../node_modules/@strapi/strapi/lib/types/index.d.ts","../../../node_modules/@strapi/strapi/lib/index.d.ts","../utils/defaults.ts","../server/controllers/settings.ts","../server/controllers/index.ts","../server/middlewares/index.ts","../server/policies/index.ts","../server/register.ts","../server/routes/index.ts","../server/services/my-service.ts","../server/services/index.ts","../server/index.ts","../../../node_modules/@types/argparse/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/clone/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/fined/index.d.ts","../../../node_modules/@types/formidable/Formidable.d.ts","../../../node_modules/@types/formidable/parsers/index.d.ts","../../../node_modules/@types/formidable/PersistentFile.d.ts","../../../node_modules/@types/formidable/VolatileFile.d.ts","../../../node_modules/@types/formidable/FormidableError.d.ts","../../../node_modules/@types/formidable/index.d.ts","../../../node_modules/@types/geojson/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/history/DOMUtils.d.ts","../../../node_modules/@types/history/createBrowserHistory.d.ts","../../../node_modules/@types/history/createHashHistory.d.ts","../../../node_modules/@types/history/createMemoryHistory.d.ts","../../../node_modules/@types/history/LocationUtils.d.ts","../../../node_modules/@types/history/PathUtils.d.ts","../../../node_modules/@types/history/index.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscription.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/types.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Operator.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/iif.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/throwError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Observable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/ConnectableObservable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/operators/groupBy.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/symbol/observable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/BehaviorSubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/ReplaySubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/AsyncSubject.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Scheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/Action.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncAction.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsapScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/asap.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/async.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/QueueScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/queue.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AnimationFrameScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/animationFrame.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/VirtualTimeScheduler.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Notification.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/pipe.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/noop.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/identity.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/isObservable.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ArgumentOutOfRangeError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/EmptyError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ObjectUnsubscribedError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/UnsubscriptionError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/TimeoutError.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindCallback.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindNodeCallback.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/InnerSubscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/OuterSubscriber.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/combineLatest.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/concat.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/defer.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/empty.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/forkJoin.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/from.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEvent.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEventPattern.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/generate.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/interval.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/merge.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/never.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/of.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/onErrorResumeNext.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/pairs.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/partition.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/race.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/range.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/timer.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/using.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/zip.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/internal/config.d.ts","../../../node_modules/@types/inquirer/node_modules/rxjs/index.d.ts","../../../node_modules/@types/through/index.d.ts","../../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../../node_modules/@types/inquirer/lib/ui/baseUI.d.ts","../../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../../node_modules/@types/inquirer/index.d.ts","../../../node_modules/@types/interpret/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../node_modules/@types/koa__cors/index.d.ts","../../../node_modules/@types/liftoff/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/object.omit/index.d.ts","../../../node_modules/@types/object.pick/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/styled-components/index.d.ts","../../../node_modules/@types/throttle-debounce/index.d.ts","../../../node_modules/@types/triple-beam/index.d.ts","../../../node_modules/@types/use-sync-external-store/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"85d549d7b4e9116b3946cae7a3a8e9280973eff3a5f5c0f6ae71c87877f0cf1b","770ac8403105d03ab74f658e797b85bfba6f28f544da145c8a3cc062c5e92466","3d033022ed0638504fc40fa11442c4a0b2642c2edaff5466bc4da5c554bb394e","450f0af4f4c1ecc4c7180f2e364c8a59bfed69dd350fb6b47bce8641c2a37786","768f608e503420ced76b31220d064354b2716a32cd886ff7ff729fa26b41dd14","17e8da297e57074ced2feea0e7b715cfab39c69d399bff6ac8fb3a60af656a1c","1dbd4ccb85b2b59e41b58b65dec45707fcfb113794103ddd0417ea2d277dada2","bcf7fc4461b093495b24f0f6e5da06bddfc8389bdf260bcd01423cc39a38a93f","24fbf482cd04ecbdc463eb7fe7d808cad8f5318aabaf58fe8635704f3611a583","50cefdc520771bfd9194bc5fd11802f499ef73f79475c95a5da063fbbcfc62f8","5ba25269bcb2ab2f356eb9168e036c7a1acc5f93b17ed1bd3c8c3c1abe549d9c","c569d93ccaa3b37425001684f4419dd80f4b78a82230f860b49de3cfb115f236","84661f5f8ec9a89727bea128afd3fbdb3448ede24cbd62669620205ec37264ad","3b042eed0748e0c4e961091afbf9a8f32774d45a262626645af728617bf81ba2","91b415236c4cc0cd59bcbe00b9691d43f2821cd7b085fdfdc4de0eb51af21cf3","dacbeaff6fdfc414225ffc73433ecd559eaf2f7b6dddd9d8daa36e453879a0ee","2e8bab33b67b103495d1ccd44a297c49c99e34627c8a29d3b846f8c17822fe99","2e7b912e264e1d74609b1f5d1c6f6cc69a46e43de4f84c3d938f42f307d050de","0e75bc323074e76e4005fd380d05c5164b31b8947ce36e7bfae897559fbb4e67","0b34e1df3eea4ef18177a1881888553ea629aae3645a13384aa8738975200ecd","1fa73896b72938f1efbfdf2191122bb764ee95469ea85a67c3c1c8144dcf7ae3","58c95e853eaff318a63e1426a6e9ab4e52e8b9aa0eb751722d340908c2e87d4b","d3c95963544f25671c4f87016e70fe85772e29efb273d5cc76e73829af80aa46","6baad122dadc43d5ddafebf00daa3cf6d11ef229bf471a77aac10795094503c3","8d72f12cf9236d44cfa405a64875eb93099c4cdebd439b87c96197abb231886a","f1e5047596fbe9a39174c9c359d96cd3a820860cd0571e496d9cc7a98134d23c","625ec5ff0e26bc185a2adb78c5261224b9436199b948191a193b965e60db4ed2","1d0f0219a74a09196d270361c692c742f0d5174af8ddf9e8a7e6689ec464a805","6e03cad90f6de3e05c02fb317d7ae94fac4b690cb42c5712b2655693ebc72750","950e3cda9c2f8d382d0f0d4f7cbe1d46dcda44290e7134d409d226ad14b2186e","30e640b6bcb0a23f3f6c841715e7a94cbf45277854a29977cf9841ee3968bb8c","66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","204dbe6c72467fb14bbe8f06510b11fb541b6ce29580c6e10ebd3bdb2eb0c1f9","d8ff10c7c1f825a87b2b2a1cef499c7079d2d1b880323ce9edbb81282aceee8d","7c54c4b7f7752b0315f14b9ae63f00d7a3f39308e598c670d8a96afdcb8e0a4e","9f559e612c27cce4bc181decc88ba90b00e5be42b6ed7fe9316d6c61476d7439","03dfcf3d00c60a769e705eb5b080c3674cd59ae830ee7ad82aed8f1883f60f06","ca8cec5a09c4323e1fcd9e0f0f84727c9b0818802fabae4ecf7f42a380483037","92d06124389a259ec6f17fa490dd2da4a8aff8fd9055047036e63211793a556b","aa8c0e10f176c156cfea40f5acdbc08cb44a43ba5411c743be645743ed3b1c02","b1bf7de0413303c8bd9424cf4955b433606e90eb31339202c8bffdb1dec982e9","aa977c0c9bc4fa540acb6af1948fa65224e1b2b69a9e2ee73bd1917b3e9d89fb","ec982ebee52d26bdc7a7520612216c9c55e7a44e6fe0f654fb26e6ee41bc16c4","5cd778283c639771dfa30faed474a8c1e0ca6b00576cd65ece3131dffa4b275c","4fcfc6ec9d3381eb98e406468d79b21f7ccd5b32cbfd29d764100a579778c15d","a38237c7b52eb2a7e736cb0054e6d005bba2178cc8f1a7a96cbc7fff18bf248f","564ab54b128b0cfb2155b70685ccb47970a6151b9b69d8784cfd303144a737d0","b77cb7e2944de8093bcbc7ba648385062376a3c4cd0d31d79310424d43c83796","6f207b6bf970c743e3f8e6ccf2c699bf29632fde9c9686f60333138d02f1c621","bdd4d178202ef08e46237608a7f107a945ee9591a878917e874bcee38f7afde1","0f9c7164ff4b13f68b85eeb8cec74f5b088ec7e3536868cb7448c786d496c948","8ff44b098e8ebcdcda36a29fbc3680d12a014cf37f5971ef63af4558cee39549","c011f4474cc77cef6abfbcbd9d587933a85446b14c3bd80f60bd655a9618abed",{"version":"4d17c7665d8dde4e5967ca8df02f06f62180353c2b449dc94436ae4c2dffd627","affectsGlobalScope":true},"2dda41a14a80266478f5953239a362a08307bdbae242ca398e12bc0556c99ebd","0d760d280d2ea3427d5781b057864400d082fa55f9e4d1c59e9fefc0238e7dac","7dba9420d49900c74d5a1f58433ac14dd677159fab6ca2897832f24acd59f297","d4dccf4e7c53ea04efd3006e4fe82c986d621990ded3d0787677f9e8b50566f7","4f1e2aadd2d64df18a785d671609ddcc7dc9296ea8b137a08d9a58a94652b850",{"version":"1b23287ca602c7c56c0b678c4a1131015c37bf40e151aeee878214d6d950eaa0","signature":"291eed66ba8744943856a0340a84661e465e5b8dc41423b0f15614a1690aa138"},{"version":"76d85993cf308cdfc49b2601112dd884c6beb8fccb60002b37472df05f7ed811","signature":"475238df4e3f52687db4b68533593406696d5225493c276b37783351d5319511"},{"version":"bfd0a633393c3bd160c1f3f822a787048e6b6280a99501ca0ae7cfab1de57234","signature":"4c28c8937264e353616539ab42a31e31915b3ce5fe4822321a310df73aec323f"},"450f0af4f4c1ecc4c7180f2e364c8a59bfed69dd350fb6b47bce8641c2a37786","450f0af4f4c1ecc4c7180f2e364c8a59bfed69dd350fb6b47bce8641c2a37786","a931a9c6e3a28a714f9d9154aff910fbabd72329e56e0bc7db78b35e679e5a74","284f90b428bde6db2ca8a32817a5de5a8959b6aeaed1291b005566beffc95b3e","124fed188583aa9eb3ea570544bd504e193b828214194209cd082f577286ea65","2aa02ccb0c78880de6e21283e107a72e3bd455b5fd39c56857a2aa143e895833",{"version":"ebba9df1bed8d1bc2eb7fd80a11112ca1f29a5813150ce42bd97d0d06106f48c","signature":"ff1c198a66a29ecb08d91ff3a852f077ac357b409be4f64fb8d4f12a9e11aee4"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","dc204ca94127eab4c1f7dfeec8da86693586cfd591cc4eb0e91a8c4d67acc1a5","9c230a07d657b3c65ad79e819b0c362a8ebcc0730f9a3d552a26ea632e2bfd53","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","93b7325b49dfbf613d940ed0e471216657b2d77459dac34f1b5b1678f08f884c",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","6670e71d65610bd7b64aac5fdf58c21c545f7fa31e060f02a0dcd91763831eb8","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","a3ca095da123d2d556d663733932d71874e6c4b4874c76118463dedea4b0d2ad","ac9788076b6b9e4514ff1286de37bf90f8e2c1dd7a772c2e746232eaa4184233","49d41b881040e728bc28d463806cdff98b64c69e9da721adcf0ec34345f691b5","0623c302651761724ec920bb95a27d9d47ea71f7e6ef7e4d6f60bd05c86cf50c","b6e465de1852a328392b432b13ee8334b209f3493053e85aa8f0b5f78368d634","afc87a77703487af971af992374f59a6cc729411cd8498a492eb14cce49f092b","2c26ca5810ebbf0129a279811816d6fd703b79b087c1bd723e3dd9bfe75681da","6fd47c237d2efabe2e1259d21019ec85579a17f925ee47cb2db9c3a60d6f391f","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5cb0d591c5212eef7cd84241d0bfc1d37cc87f2fe4a76c5eacf26ade6571f72e","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","1d96568a72657f762763c920d3804868db48d638abd87ddcd82bcb200ef9625c","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d",{"version":"369dd7668d0e6c91550bce0c325f37ce6402e5dd40ecfca66fbb5283e23e559d","affectsGlobalScope":true},"2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77","80da0f61195385d22b666408f6cccbc261c066d401611a286f07dfddf7764017","06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","5d2651c679f59706bf484e7d423f0ec2d9c79897e2e68c91a3f582f21328d193","30d49e69cb62f350ff0bc5dda1c557429c425014955c19c557f101c0de9272e7","d3747dbed45540212e9a906c2fb8b5beb691f2cd0861af58a66dc01871004f38","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","933c42f6ed2768265dfb42faa817ce8d902710c57a21a1859a9c3fe5e985080e","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","bc6e433cb982bf63eaa523dbbbd30fe12960a09861b352d77baf77ad6dd8886d","9af64ab00918f552388252977c1569fe31890686ca1fdb8e20f58d3401c9a50c","3d3cc03b5c6e056c24aac76789f4bc67caee98a4f0774ab82bc8ba34d16be916","747ce36fa27a750a05096f3610e59c9b5a55e13defec545c01a75fd13d67b620","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","5573ce7aa683a81c9a727294ffdb47d82d7715a148bfe9f4ddcf2f6cdfef1f0a","2cd9edbb4a6411a9f5258237dd73323db978d7aa9ebf1d1b0ac79771ac233e24","65719ccb75af7676665ee5a6f4d21d6a5f494ba5da26a4fcdad3b0788121e5c8","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","488b0a139b5f35ded772136cf4b541f3babf22e4ce9056daf65736234e88355d","0f141d684b22a8ff995c19137ec8a90b297461154ad4212b4f45b7e8b10357b7","81af781a1d9eb264b8955538935874d6e60944e6285127d43ac07c6320d1d98f","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","19c816167e076e7c24f074389c6cf3ed87bdbb917d1ea439ca281f9d26db2439","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","30abc554c7ad13063a02ddd06757929b34357aea1f6fcf4ca39114cb0fc19384","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","7e61def8d1fd9b2db068256f056cfbcd9fb7f7a0f405115ddc048deffed2bceb","27c85ba7958ec4b82b87e7df50d41522d8cc64888ced56e12b6ef633173afbca","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","332c7ccf95426d3156ebedb7295979ef2435bd1c1a940024a4d068da3418718f","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da",{"version":"356701ea5df9eea3bf62b0f29857cb950d95eec9b9063f85c17be705926cdd2a","affectsGlobalScope":true},"4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","df5941f81d2d8a084c12b67bfa2a3a9fd2703ee68d75bd2299b15af3fa400d5e","61f41da9aaa809e5142b1d849d4e70f3e09913a5cb32c629bf6e61ef27967ff7","95c617b16c4765ff6de307629b6918181908bee82a59fca0b2c95f170a4be7ea","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9"],"root":[[44,47],[174,182]],"options":{"esModuleInterop":true,"module":1,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"strict":false,"target":6},"fileIdsList":[[121,157,158,160,161],[121,158,159,162],[121,160],[121,162],[121,160,162],[121,147],[121],[121,147,172],[48,74,121,166],[121,167,171],[53,121],[54,121],[54,63,121],[53,54,121],[48,53,54,121],[48,54,121],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,121],[54,64,121],[48,49,50,51,52,73,121],[73,74,121,165],[48,73,121],[121,147,162,163,164],[121,163,164,165,168,169],[48,121,166,170],[94,121,128],[94,121,128,140],[85,121,128],[91,94,120,121,128,185,186,187],[120,121,128,135],[94,121,128,130,140,142],[121,191],[121,194,196],[121,193,194,195],[91,94,121,128,132,133,134],[121,134,135,139,141],[94,121,204],[91,121,204],[121,201],[109,121,128,199,200,201,202,203],[109,121,204],[91,92,121,128,206],[121,208],[121,216],[121,210,216],[121,211,212,213,214,215],[121,221],[91,94,96,99,109,120,121,128],[106,121,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,306,307,308,309,310],[121,311],[121,290,291,311],[106,121,288,293,311],[106,121,294,295,311],[106,121,294,311],[106,121,288,294,311],[106,121,300,311],[106,121,311],[121,289,305,311],[121,288,305,311],[106,121,288],[121,293],[106,121],[121,288,311],[121,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,244,245,247,249,250,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287],[121,225,227,232],[121,227,264],[121,226,231],[121,225,226,227,228,229,230],[121,226,227],[121,227,263],[121,225,226,227,232],[121,225,226,240],[121,225,226,227,228,231],[121,225,226],[121,226],[121,225,227,231,232],[121,226,227,228,231,264],[121,231],[121,231,271],[121,225,226,227,231],[121,226,227,228,231],[121,225,226,227,231,232],[121,288],[121,225,226,239],[121,241,242],[121,225,226,240,241],[121,225,226,239,240,242],[121,241],[121,225,226,241,242],[121,248],[121,243],[121,246],[121,225,231],[121,128],[91,121,128],[91,94,95,99,105,120,121,128,129,130,138,143,144,145,146],[91,121,128,198,312],[121,318,320,321,322,323,324,325,326,327,328,329,330],[121,318,319,321,322,323,324,325,326,327,328,329,330],[121,319,320,321,322,323,324,325,326,327,328,329,330],[121,318,319,320,322,323,324,325,326,327,328,329,330],[121,318,319,320,321,323,324,325,326,327,328,329,330],[121,318,319,320,321,322,324,325,326,327,328,329,330],[121,318,319,320,321,322,323,325,326,327,328,329,330],[121,318,319,320,321,322,323,324,326,327,328,329,330],[121,318,319,320,321,322,323,324,325,327,328,329,330],[121,318,319,320,321,322,323,324,325,326,328,329,330],[121,318,319,320,321,322,323,324,325,326,327,329,330],[121,318,319,320,321,322,323,324,325,326,327,328,330],[121,318,319,320,321,322,323,324,325,326,327,328,329],[121,137],[121,136],[75,121],[78,121],[79,84,112,121],[80,91,92,99,109,120,121],[80,81,91,99,121],[82,121],[83,84,92,100,121],[84,109,117,121],[85,87,91,99,121],[86,121],[87,88,121],[91,121],[89,91,121],[91,92,93,109,120,121],[91,92,93,106,109,112,121],[121,125],[87,91,94,99,109,120,121],[91,92,94,95,99,109,117,120,121],[94,96,109,117,120,121],[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127],[91,97,121],[98,120,121],[87,91,99,109,121],[100,121],[101,121],[78,102,121],[103,119,121,125],[104,121],[105,121],[91,106,107,121],[106,108,121,123],[79,91,109,110,111,112,121],[79,109,111,121],[109,110,121],[112,121],[113,121],[109,121],[91,115,116,121],[115,116,121],[84,99,109,117,121],[118,121],[99,119,121],[79,94,105,120,121],[84,121],[109,121,122],[121,123],[121,124],[79,84,91,93,102,109,120,121,123,125],[109,121,126],[121,338],[121,339],[121,216,221,340],[121,216,221],[121,221,342],[121,342,343,344,345,346],[121,217,218,219,220],[94,109,121,128],[121,350,389],[121,350,374,389],[121,389],[121,350],[121,350,375,389],[121,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],[121,375,389],[92,109,121,128,131],[92,121,142],[94,121,128,137,138],[121,218,221,222],[109,121,128],[91,94,96,109,117,120,121,126,128],[91,109,117,121,154,155,156],[121,149],[91,121,128,148,150,151],[121,152,153],[121,148],[121,174],[121,172,173],[44,45,46,47,121,175,176,177,178,179,181],[121,180],[172]],"referencedMap":[[162,1],[160,2],[159,3],[161,4],[158,5],[163,6],[164,7],[169,8],[167,9],[172,10],[168,8],[54,11],[55,12],[56,12],[64,13],[57,14],[50,12],[49,12],[58,12],[59,15],[72,12],[60,16],[61,12],[73,17],[62,12],[65,18],[66,18],[67,12],[68,15],[69,12],[63,12],[70,12],[51,12],[52,12],[71,15],[53,19],[166,20],[74,21],[165,22],[170,23],[171,24],[48,7],[129,25],[183,7],[141,26],[184,27],[188,28],[189,7],[190,29],[140,25],[146,7],[143,30],[192,31],[197,32],[193,7],[196,33],[194,7],[135,34],[142,35],[198,7],[199,36],[203,7],[201,37],[202,38],[204,39],[200,40],[205,7],[207,41],[209,42],[210,7],[214,43],[215,43],[211,44],[212,44],[213,44],[216,45],[222,46],[223,7],[144,7],[186,7],[138,7],[224,47],[311,48],[290,49],[292,50],[291,49],[294,51],[296,52],[297,53],[298,54],[299,52],[300,53],[301,52],[302,55],[303,53],[304,52],[305,56],[306,57],[307,58],[308,59],[295,60],[309,61],[293,61],[310,62],[288,63],[238,64],[236,64],[263,65],[251,66],[231,67],[228,68],[264,69],[237,70],[239,71],[232,72],[227,73],[225,74],[287,7],[233,75],[261,66],[262,66],[265,76],[266,66],[267,66],[268,66],[269,66],[270,66],[271,77],[272,78],[273,66],[229,66],[274,66],[275,66],[276,77],[277,66],[278,66],[279,79],[280,66],[281,76],[282,66],[230,66],[283,66],[284,66],[285,80],[234,81],[286,82],[240,83],[248,84],[243,84],[242,85],[241,86],[246,87],[250,88],[249,89],[244,90],[245,87],[247,91],[235,7],[226,92],[256,7],[257,7],[258,7],[260,7],[259,7],[254,7],[255,77],[253,7],[252,74],[312,93],[195,7],[313,7],[130,7],[314,94],[315,6],[145,6],[147,95],[316,6],[317,96],[319,97],[320,98],[318,99],[321,100],[322,101],[323,102],[324,103],[325,104],[326,105],[327,106],[328,107],[329,108],[330,109],[331,7],[332,42],[136,110],[137,111],[206,7],[333,7],[191,7],[75,112],[76,112],[78,113],[79,114],[80,115],[81,116],[82,117],[83,118],[84,119],[85,120],[86,121],[87,122],[88,122],[90,123],[89,124],[91,123],[92,125],[93,126],[77,127],[127,7],[94,128],[95,129],[96,130],[128,131],[97,132],[98,133],[99,134],[100,135],[101,136],[102,137],[103,138],[104,139],[105,140],[106,141],[107,141],[108,142],[109,143],[111,144],[110,145],[112,146],[113,147],[114,148],[115,149],[116,150],[117,151],[118,152],[119,153],[120,154],[121,155],[122,156],[123,157],[124,158],[125,159],[126,160],[334,7],[335,7],[336,7],[337,7],[339,161],[338,162],[219,7],[134,7],[133,7],[341,163],[340,164],[343,165],[345,46],[342,46],[344,165],[346,7],[347,166],[217,7],[221,167],[187,168],[348,7],[349,7],[220,7],[374,169],[375,170],[350,171],[353,171],[372,169],[373,169],[363,169],[362,172],[360,169],[355,169],[368,169],[366,169],[370,169],[354,169],[367,169],[371,169],[356,169],[357,169],[369,169],[351,169],[358,169],[359,169],[361,169],[365,169],[376,173],[364,169],[352,169],[389,174],[388,7],[383,173],[385,175],[384,173],[377,173],[378,173],[380,173],[382,173],[386,175],[387,175],[379,175],[381,175],[132,176],[131,7],[390,177],[139,178],[391,25],[392,179],[393,7],[289,180],[394,7],[208,7],[395,7],[396,7],[397,181],[218,7],[185,123],[157,182],[155,7],[156,7],[150,183],[152,184],[148,7],[151,183],[153,7],[154,185],[149,186],[42,7],[43,7],[9,7],[8,7],[2,7],[10,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[3,7],[4,7],[21,7],[18,7],[19,7],[20,7],[22,7],[23,7],[24,7],[5,7],[25,7],[26,7],[27,7],[28,7],[6,7],[32,7],[29,7],[30,7],[31,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[44,7],[46,7],[47,7],[175,187],[174,188],[45,7],[182,189],[176,7],[177,7],[178,7],[179,7],[181,190],[180,7],[173,7]],"exportedModulesMap":[[162,1],[160,2],[159,3],[161,4],[158,5],[163,6],[164,7],[169,8],[167,9],[172,10],[168,8],[54,11],[55,12],[56,12],[64,13],[57,14],[50,12],[49,12],[58,12],[59,15],[72,12],[60,16],[61,12],[73,17],[62,12],[65,18],[66,18],[67,12],[68,15],[69,12],[63,12],[70,12],[51,12],[52,12],[71,15],[53,19],[166,20],[74,21],[165,22],[170,23],[171,24],[48,7],[129,25],[183,7],[141,26],[184,27],[188,28],[189,7],[190,29],[140,25],[146,7],[143,30],[192,31],[197,32],[193,7],[196,33],[194,7],[135,34],[142,35],[198,7],[199,36],[203,7],[201,37],[202,38],[204,39],[200,40],[205,7],[207,41],[209,42],[210,7],[214,43],[215,43],[211,44],[212,44],[213,44],[216,45],[222,46],[223,7],[144,7],[186,7],[138,7],[224,47],[311,48],[290,49],[292,50],[291,49],[294,51],[296,52],[297,53],[298,54],[299,52],[300,53],[301,52],[302,55],[303,53],[304,52],[305,56],[306,57],[307,58],[308,59],[295,60],[309,61],[293,61],[310,62],[288,63],[238,64],[236,64],[263,65],[251,66],[231,67],[228,68],[264,69],[237,70],[239,71],[232,72],[227,73],[225,74],[287,7],[233,75],[261,66],[262,66],[265,76],[266,66],[267,66],[268,66],[269,66],[270,66],[271,77],[272,78],[273,66],[229,66],[274,66],[275,66],[276,77],[277,66],[278,66],[279,79],[280,66],[281,76],[282,66],[230,66],[283,66],[284,66],[285,80],[234,81],[286,82],[240,83],[248,84],[243,84],[242,85],[241,86],[246,87],[250,88],[249,89],[244,90],[245,87],[247,91],[235,7],[226,92],[256,7],[257,7],[258,7],[260,7],[259,7],[254,7],[255,77],[253,7],[252,74],[312,93],[195,7],[313,7],[130,7],[314,94],[315,6],[145,6],[147,95],[316,6],[317,96],[319,97],[320,98],[318,99],[321,100],[322,101],[323,102],[324,103],[325,104],[326,105],[327,106],[328,107],[329,108],[330,109],[331,7],[332,42],[136,110],[137,111],[206,7],[333,7],[191,7],[75,112],[76,112],[78,113],[79,114],[80,115],[81,116],[82,117],[83,118],[84,119],[85,120],[86,121],[87,122],[88,122],[90,123],[89,124],[91,123],[92,125],[93,126],[77,127],[127,7],[94,128],[95,129],[96,130],[128,131],[97,132],[98,133],[99,134],[100,135],[101,136],[102,137],[103,138],[104,139],[105,140],[106,141],[107,141],[108,142],[109,143],[111,144],[110,145],[112,146],[113,147],[114,148],[115,149],[116,150],[117,151],[118,152],[119,153],[120,154],[121,155],[122,156],[123,157],[124,158],[125,159],[126,160],[334,7],[335,7],[336,7],[337,7],[339,161],[338,162],[219,7],[134,7],[133,7],[341,163],[340,164],[343,165],[345,46],[342,46],[344,165],[346,7],[347,166],[217,7],[221,167],[187,168],[348,7],[349,7],[220,7],[374,169],[375,170],[350,171],[353,171],[372,169],[373,169],[363,169],[362,172],[360,169],[355,169],[368,169],[366,169],[370,169],[354,169],[367,169],[371,169],[356,169],[357,169],[369,169],[351,169],[358,169],[359,169],[361,169],[365,169],[376,173],[364,169],[352,169],[389,174],[388,7],[383,173],[385,175],[384,173],[377,173],[378,173],[380,173],[382,173],[386,175],[387,175],[379,175],[381,175],[132,176],[131,7],[390,177],[139,178],[391,25],[392,179],[393,7],[289,180],[394,7],[208,7],[395,7],[396,7],[397,181],[218,7],[185,123],[157,182],[155,7],[156,7],[150,183],[152,184],[148,7],[151,183],[153,7],[154,185],[149,186],[42,7],[43,7],[9,7],[8,7],[2,7],[10,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[3,7],[4,7],[21,7],[18,7],[19,7],[20,7],[22,7],[23,7],[24,7],[5,7],[25,7],[26,7],[27,7],[28,7],[6,7],[32,7],[29,7],[30,7],[31,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[44,7],[46,7],[47,7],[175,191],[174,191],[45,7],[182,191],[176,7],[177,7],[178,7],[179,7],[181,190],[180,7]],"semanticDiagnosticsPerFile":[162,160,159,161,158,163,164,169,167,172,168,54,55,56,64,57,50,49,58,59,72,60,61,73,62,65,66,67,68,69,63,70,51,52,71,53,166,74,165,170,171,48,129,183,141,184,188,189,190,140,146,143,192,197,193,196,194,135,142,198,199,203,201,202,204,200,205,207,209,210,214,215,211,212,213,216,222,223,144,186,138,224,311,290,292,291,294,296,297,298,299,300,301,302,303,304,305,306,307,308,295,309,293,310,288,238,236,263,251,231,228,264,237,239,232,227,225,287,233,261,262,265,266,267,268,269,270,271,272,273,229,274,275,276,277,278,279,280,281,282,230,283,284,285,234,286,240,248,243,242,241,246,250,249,244,245,247,235,226,256,257,258,260,259,254,255,253,252,312,195,313,130,314,315,145,147,316,317,319,320,318,321,322,323,324,325,326,327,328,329,330,331,332,136,137,206,333,191,75,76,78,79,80,81,82,83,84,85,86,87,88,90,89,91,92,93,77,127,94,95,96,128,97,98,99,100,101,102,103,104,105,106,107,108,109,111,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,334,335,336,337,339,338,219,134,133,341,340,343,345,342,344,346,347,217,221,187,348,349,220,374,375,350,353,372,373,363,362,360,355,368,366,370,354,367,371,356,357,369,351,358,359,361,365,376,364,352,389,388,383,385,384,377,378,380,382,386,387,379,381,132,131,390,139,391,392,393,289,394,208,395,396,397,218,185,157,155,156,150,152,148,151,153,154,149,42,43,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,44,46,47,175,174,45,182,176,177,178,179,181,180,173]},"version":"5.0.4"} \ No newline at end of file diff --git a/packages/strapi-tiptap-editor/dist/utils/defaults.js b/packages/strapi-tiptap-editor/dist/utils/defaults.js deleted file mode 100644 index 40b1b917..00000000 --- a/packages/strapi-tiptap-editor/dist/utils/defaults.js +++ /dev/null @@ -1,44 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = { - headings: ['h1', 'h2', 'h3', 'h4', 'h4', 'h5', 'h6'], - bold: true, - italic: true, - strikethrough: true, - underline: true, - code: false, - blockquote: true, - highlight: false, - align: ['left', 'center', 'right'], - lists: ['ol', 'ul'], - disableOrderedListShorthand: false, - columns: ['two', 'three'], - table: true, - hardbreak: true, - horizontal: true, - links: { - enabled: true, - autolink: false, - openOnClick: false, - linkOnPaste: true, - relAttribute: false, - HTMLAttributes: { - rel: '', - }, - }, - image: { - enabled: true, - inline: true, - allowBase64: false, - }, - other: { - wordcount: false, - language: true, - saveJson: false, - }, - youtube: { - enabled: true, - height: 480, - width: 640, - }, -}; diff --git a/packages/upl/dist/build/UPL-actueel.d.ts b/packages/upl/dist/build/UPL-actueel.d.ts deleted file mode 100644 index 499affe1..00000000 --- a/packages/upl/dist/build/UPL-actueel.d.ts +++ /dev/null @@ -1,13863 +0,0 @@ -export declare const uplActueel: { - head: { - vars: string[]; - }; - results: { - bindings: ({ - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - type: string; - value: string; - "xml:lang"?: undefined; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Subsidie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Bedrijf?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Burger?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Gemeente?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Dienstenwet: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Provincie: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Waterschap: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - Melding: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Burger?: undefined; - Verplichting?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Grondslag?: undefined; - Grondslaglabel?: undefined; - Grondslaglink?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - DigiDMacht: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Medebewind?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Gemeente: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Autonomie: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Medebewind: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Rijk?: undefined; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Verplichting?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Aanvraag?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - } | { - UniformeProductnaam: { - "xml:lang": string; - type: string; - value: string; - }; - URI: { - type: string; - value: string; - }; - Grondslag: { - type: string; - value: string; - }; - Grondslaglabel: { - "xml:lang": string; - type: string; - value: string; - }; - Grondslaglink: { - type: string; - value: string; - }; - Rijk: { - type: string; - value: string; - }; - Burger: { - type: string; - value: string; - }; - Bedrijf: { - type: string; - value: string; - }; - Aanvraag: { - type: string; - value: string; - }; - Verplichting: { - type: string; - value: string; - }; - SDG: { - type: string; - value: string; - }; - Provincie?: undefined; - Waterschap?: undefined; - Gemeente?: undefined; - Medebewind?: undefined; - Melding?: undefined; - Autonomie?: undefined; - Dienstenwet?: undefined; - Subsidie?: undefined; - DigiDMacht?: undefined; - })[]; - }; -}; diff --git a/packages/upl/dist/build/UPL-actueel.js b/packages/upl/dist/build/UPL-actueel.js deleted file mode 100644 index d6f96383..00000000 --- a/packages/upl/dist/build/UPL-actueel.js +++ /dev/null @@ -1,53644 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.uplActueel = void 0; -exports.uplActueel = { - "head": { - "vars": [ - "UniformeProductnaam", - "URI", - "Rijk", - "Provincie", - "Waterschap", - "Gemeente", - "Burger", - "Bedrijf", - "Dienstenwet", - "SDG", - "Autonomie", - "Medebewind", - "Aanvraag", - "Subsidie", - "Melding", - "Verplichting", - "DigiDMacht", - "Grondslag", - "Grondslaglabel", - "Grondslaglink" - ] - }, - "results": { - "bindings": [ - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "UPL-naam nog niet beschikbaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UPL-naam_nog_niet_beschikbaar" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aangifte vertrek buitenland" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AangifteVertrekBuitenland" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_43" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.43 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=5&artikel=2.43" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanleunwoning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanleunwoning" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanpassing zelfgebouwd vliegtuig melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanpZelfbVliegtMeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegAmLuchtv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Regeling amateurbouwluchtvaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013494&Paragraaf=4&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanschrijving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_125" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 125 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=125" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanschrijving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_122" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 122 Provinciewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005645&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=122" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanschrijving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_61" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 61 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=III&hoofdstuk=IX&Paragraaf=4&artikel=61" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aansprakelijkstelling overheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aansprStOverh" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_6_art_162" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 162 Burgerlijk Wetboek Boek 6" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005289&boek=6&titeldeel=3&afdeling=1&artikel=162" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanvullende beurs kwijtschelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanvBeursKwijtsch" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_6_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.2 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=6&Paragraaf=6.1&artikel=6.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanvullende inkomensvoorziening ouderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanvInkVzOuder" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_47a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 47a Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=5&Paragraaf=5.4&artikel=47a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanwijzing inzamelaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanwInzam" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aanzegtermijn" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aanzegtermijn" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_668" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 668 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=10&afdeling=9&artikel=668" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aardbevingsbestendige nieuwbouw groningen vergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aardbevb_nwbw_gron_vergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Beleidsr_verg_kn_aardbb_nwb_Gron_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Beleidsregel vergoeding kosten aardbevingsbestendige nieuwbouw Groningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0043755&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aardgasvrije huurwoning subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aardgasvrijeHuurwSubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/StimregAardgvrHuurw_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Stimuleringsregeling aardgasvrije huurwoningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043307&hoofdstuk=2&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "accijns" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/accijns" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WA_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de accijns" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005251&hoofdstuk=I&afdeling=1&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4;L2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "achternaam gebruiksbeëindiging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/achternGebrBeeind" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=2&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "achternaamwijziging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/achternaamwijziging" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=2&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adoptie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adoptie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_227" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 227 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=12&artikel=227" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adoptie aangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adoptie_aangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_38" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.38 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=5&artikel=2.38" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adoptie- of pleegzorguitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adoptiePleegzUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_3_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:9 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=3&afdeling=2&Paragraaf=1&artikel=3:9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adoptieherroeping" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adoptieherroeping" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_231" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 231 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=12&artikel=231" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adr bestuurderscertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adrbestcert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Eur_ovk_ADR" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Europese overeenkomst voor het internationale vervoer van gevaarlijke goederen over de weg (ADR), artikel 8.2.1.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "adresonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/adresonderzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_60" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.60 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.60" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "affectieschade" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/affectieschade" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_6_art_107" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 107 Burgerlijk Wetboek Boek 6 " - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005289&boek=6&titeldeel=1&afdeling=10&artikel=107" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afgezette gebieden betreden ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afgezette_gebieden_betreden_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:1 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aflosbedrag inburgeringslening verlaging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aflosbedrInburglenVerlag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BI_art_4_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.9 Besluit inburgering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020674&hoofdstuk=4&Paragraaf=2&artikel=4.9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aflosbedrag inburgeringslening verlaging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aflosbedrInburglenVerlag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_inb_2021_art_6_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.10 Besluit inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045555&hoofdstuk=6&afdeling=2&artikel=6.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aflosbedrag studieschuld verlaging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aflosbedrStuSchldVerlag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_6_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.12 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=6&Paragraaf=6.1&artikel=6.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalbeheersbijdrage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvbehbijdr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_beheer_verpakk_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Besluit beheer verpakkingen 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035711&Paragraaf=5&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalbeheersbijdrage vlakglas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvbehbijdrvlhgl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ovk_verwijdbijdr_vlakglas" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Overeenkomst inzake de verwijderingsbijdrage voor vlakglas (Stcrt. 2016, 34134)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://zoek.officielebekendmakingen.nl/stcrt-2016-34134.html" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalcontainer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalcontainer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzamelaarslijst" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzlst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Biaf_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit inzamelen afvalstoffen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0016530&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling blik" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzBlik" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling chemisch afval" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_chemisch_afval" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling glas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_glas" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling grofvuil" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_grofvuil" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling oud papier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_oud_papier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling plastic" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_plastic" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling plastic metaal drankenkartons" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalInzPMDK" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzameling textiel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_textiel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalinzamelstation" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalinzamelstation" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.22 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.4&artikel=10.22" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalkalender" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalkalender" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalpas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalpas" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalstoffenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalstbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbm_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Wet belastingen op milieugrondslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007168&hoofdstuk=IV&afdeling=2&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalstoffenheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalstoffenheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WM_art_15_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15.33 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=15&titeldeel=15.9&artikel=15.33" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalstortontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvalstortontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bssaf_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Besluit stortplaatsen en stortverboden afvalstoffen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009094&Paragraaf=1&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "afvalvervoerskennisgeving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/afvvervkg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1013_2006_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 1013/2006 van het Europees Parlement en de raad van 14 juni 2006 betreffende de overbrenging van afvalstoffen, artikel 4" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32006R1013&from=NL#d1e4346-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "akte van de burgerlijke stand" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/akte_van_de_burgerlijke_stand" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_23b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23b Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=8&artikel=23b" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "alarmsirene" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/alarmsirene" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvr_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Wet veiligheidsregio's" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027466&Paragraaf=4&artikel=25" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "alcoholvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/alcoholvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Alcoholwet_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Alcoholwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002458&Paragraaf=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "algemene periodieke keuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/apk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_72" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 72 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=V&Paragraaf=2&artikel=72" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "algemene periodieke keuring bezwaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/apkBezw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_90" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 90 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=V&Paragraaf=6&artikel=90" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "algemene periodieke keuring bezwaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/apkBezw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_91" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 91 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=V&Paragraaf=6&artikel=91" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "alimentatie inning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/alimentatieInning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_408" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 408 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=17&afdeling=2&artikel=408" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "amateurkunstsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/amateurkunstsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "amateurkunstsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/amateurkunstsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ambtenaar burgerlijke stand" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ambtBurgStnd" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=1&artikel=16" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ambtshalve vermindering belastingaanslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ambtshVermBelAansl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AWR_art_65" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 65 Algemene wet inzake rijksbelastingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002320&hoofdstuk=VIII&afdeling=5&artikel=65" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "antenneregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/antenneregInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Frequentiebesluit_2013_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Frequentiebesluit 2013" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0032895&hoofdstuk=4&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "antenneregister registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/antenneregRegistr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Frequentiebesluit_2013_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Frequentiebesluit 2013" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0032895&hoofdstuk=4&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "antireclamesticker" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/antireclamesticker" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_15a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15a Model Afvalstoffenverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "antispeculatiebeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/antispeculatiebeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_6_art_91" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 91 Burgerlijk Wetboek Boek 6" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005289&boek=6&titeldeel=1&afdeling=9&Paragraaf=4&artikel=91" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "anw-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/anw-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Anw_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Algemene nabestaandenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007795&hoofdstuk=3&afdeling=I&Paragraaf=1&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aor financiële ondersteuning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aorFinOnd" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WUWVerzOorl_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet uitvoering wetten voor verzetsdeelnemers en oorlogsgetroffenen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027660&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "aow-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/aow-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AOW_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Algemene Ouderdomswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002221&hoofdstuk=III&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "arbeidsdeskundige-inschakeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/arbdeskinsch" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbo_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Arbeidsomstandighedenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010346&hoofdstuk=3&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "Q1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "arbeidsmiddelenkeuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/arbmiddkeur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbo_art_7_4a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.4a Arbeidsomstandighedenbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008498&hoofdstuk=7&afdeling=2&artikel=7.4a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "arbeidsplaatsvoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/arbeidsplaatsvoorziening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=4&Paragraaf=4.2&artikel=35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "arbeidsplaatsvoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/arbeidsplaatsvoorziening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=4&Paragraaf=4.2&artikel=35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "archeologische-vondstmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/archvndstmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_5_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.10 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=5&Paragraaf=5.4&artikel=5.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "archief inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/archiefInzage" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Aw_1995_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Archiefwet 1995" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007376&hoofdstuk=II&artikel=14" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "archiefbescheiden behoud voor raadpleging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/archiefbescheiden_behoud_voor_raadpleging" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Aw_1995_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Archiefwet 1995" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007376&hoofdstuk=II&artikel=13" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "architectenregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/architRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WArchTit_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Wet op de architectentitel" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004189&hoofdstuk=V&artikel=22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "asbestbevattende weg melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/asbestWegMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BeslAsbMilBeh_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Besluit asbestwegen milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011619&Paragraaf=2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "asbestslachtoffer tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/asbestsloTgmk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegTegAsb_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling tegemoetkoming asbestslachtoffers 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035006&hoofdstuk=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "asbestslachtoffer tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/asbestsloTgmk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegTegNLDSlaMesAsb_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling tegemoetkoming niet-loondienstgerelateerde slachtoffers van mesothelioom en asbestose" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022913&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "asbestverwijdering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/asbestverwijdering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bouwbesluit_2012_art_1_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.26 Bouwbesluit 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030461&hoofdstuk=1&Paragraaf=1.7&artikel=1.26" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "assurantiebelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/assurbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WBRV_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Wet op belastingen van rechtsverkeer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002740&hoofdstuk=III&afdeling=1&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "asverstrooiing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/asverstrooiing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_36" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:36 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "auto-aanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/auto-aanpassing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "autobandeninnameverplichting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/autobndinnverpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bbab_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Besluit beheer autobanden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0016038&Paragraaf=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "autohuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/autohuur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H7" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "autokinderzitje" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/autokinderzitje" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RVV_art_59" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 59 Reglement verkeersregels en verkeerstekens 1990" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004825&hoofdstuk=II&Paragraaf=27&artikel=59" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "automatische incasso of machtiging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/automatische_incasso_of_machtiging" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_3_art_60" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 60 Burgerlijk Wetboek Boek 3" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005291&boek=3&titeldeel=3&artikel=60" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "baatbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/baatbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_222" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 222 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=222" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "backpay-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/backpayUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UitkRegBackp_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Uitkeringsregeling Backpay" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037426&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "badinrichting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/badinrichting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Whvbz_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Wet hygiëne en veiligheid badinrichtingen en zwemgelegenheden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002660&artikel=10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "badinrichting legionellapreventie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/badinrichting_legionellapreventie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BHVZ_art_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2a Besluit hygiëne en veiligheid badinrichtingen en zwemgelegenheden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003716&hoofdstuk=II&Paragraaf=1a&artikel=2a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "badinrichting ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/badinrichting_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Whvbz_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet hygiëne en veiligheid badinrichtingen en zwemgelegenheden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002660&artikel=5" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bag inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bagInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BAG_art_32" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 32 Wet basisregistratie adressen en gebouwen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023466&hoofdstuk=5&Paragraaf=1&artikel=32" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ballon oplaten bij vliegveld toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ballonOplVliegvToest" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegKabKlBal_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling kabelvliegers en kleine ballons" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007094&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ballon oplaten bij vliegveld toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ballonOplVliegvToest" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegKabKlBal_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Regeling kabelvliegers en kleine ballons" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007094&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bankierseed" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bankierseed" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_eed_fin_sec_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Regeling eed of belofte financiële sector 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0036152&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "basisschool klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/basisschKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=II&afdeling=1&Paragraaf=1&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "batterijen en accu's-inzamelverplichting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/battaccuinzplicht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_beheer_batt_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Regeling beheer batterijen en accu’s 2008" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024492&Paragraaf=3&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bebouwde kom vaststelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bebouwde_kom_vaststelling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wegw_art_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 27 Wegenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001948&hoofdstuk=V&Paragraaf=1&artikel=27" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedieningstijden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedieningstijden" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_78" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 78 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=III&hoofdstuk=X&artikel=78" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijf aan huis melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijf_aan_huis_melding" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalinzameling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalinzameling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Afv_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Model Afvalstoffenverordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalstoffenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrafvmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_40" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.40 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.6&Paragraaf=10.6.1&artikel=10.40" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalstoffenregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrafvreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_38" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.38 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.6&Paragraaf=10.6.1&artikel=10.38" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalwater en -slibverwerking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwater_en_slibverwerking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_6_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.2 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=6&Paragraaf=1&artikel=6.2" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalwaterlozingontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwaterlozingontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_47" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.47 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.6&Paragraaf=10.6.3&artikel=10.47" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsafvalwatermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwatermelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BesLozBuiInr_art_1_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.10 Besluit lozen buiten inrichtingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0029789&hoofdstuk=1&Paragraaf=1.2&artikel=1.10" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfshulpverleners aanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrHulpverlAanw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbo_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Arbeidsomstandighedenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010346&hoofdstuk=3&artikel=15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "Q1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsterrein huren of kopen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsterrein_huren_of_kopen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsterreinuitgifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsterreinuitgifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bedrijfsverzamelgebouw toewijzing en beheer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bedrijfsverzamelgebouw_toewijzing_en_beheer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beeldende kunstsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beeldende_kunstsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "begeleid werken" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/begWerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_10da" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10da Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10da" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "begeleiding schoolverlater" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/begSchoolverl" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beginseltoestemming adoptie buitenlands kind" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beginseltoestAdoptBuitKnd" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wobka_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet opneming buitenlandse kinderen ter adoptie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004447&hoofdstuk=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "begraafplaatsregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/begraafplaatsregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 27 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=III&Paragraaf=1&artikel=27" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beklag over niet-vervolgen strafbaar feit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beklagNtVervStrFeit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Eerste&titeldeel=I&afdeling=Vierde&artikel=12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bekwaamheid leraar vo erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bekwLeraarVOErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_7_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 7.11" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=7&Paragraaf=2&artikel=7.11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belasting hardheidsclausuleverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastHardhClVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AWR_art_63" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 63 Algemene wet inzake rijksbelastingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002320&hoofdstuk=VIII&afdeling=5&artikel=63" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belasting op leidingwater" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belleidwater" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbm_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Wet belastingen op milieugrondslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007168&hoofdstuk=III&afdeling=2&artikel=13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belasting zware motorrijtuigen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belzwmotrijt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbzm_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet belasting zware motorrijtuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007678&hoofdstuk=II&afdeling=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AWR_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Algemene wet inzake rijksbelastingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002320&hoofdstuk=II&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L1;B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingaanslag bezwaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingaanslag_bezwaar" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_7_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7:1 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=7&afdeling=7.1&artikel=7:1" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingaanslag kopie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingaanslag_kopie" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingbetaling uitstel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingbetUitst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IW_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Invorderingswet 1990" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004770&hoofdstuk=IV&afdeling=3&artikel=25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingbetalingsregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingbetalingsregeling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IW_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Invorderingswet 1990" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004770&hoofdstuk=IV&afdeling=3&artikel=26" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingkwijtschelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingkwijtschelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IW_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Invorderingswet 1990" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004770&hoofdstuk=IV&afdeling=3&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingrente" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingrente" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AWR_art_30f" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30f Algemene wet inzake rijksbelastingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002320&hoofdstuk=VA&artikel=30f" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "belastingteruggave" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/belastingteruggave" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beperkte milieutoets" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beperkte_milieutoets" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bor_art_2_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2a Besluit omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027464&hoofdstuk=2&Paragraaf=2.1&artikel=2.2a" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "berichtenbox" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/berichtenbox" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/DienstenReg_centr_loket_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Dienstenregeling centraal loket en interne markt informatiesysteem" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026766&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beroep" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beroep" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:1 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.1&afdeling=8.1.1&artikel=8:1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beroepskracht-kindratio" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/berkrkndrat" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_kwal_kinderopv_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Besluit kwaliteit kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039936&hoofdstuk=2&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beroepskwalificatie erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beroepskwalErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AlgWetEUBerKwal_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Algemene wet erkenning EU-beroepskwalificaties" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023066&hoofdstuk=2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beroepsonderwijs en volwasseneneducatie klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/berOndVolwEdKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_7_4_8a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.4.8a Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=7&titeldeel=4&Paragraaf=1&artikel=7.4.8a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beroepsopleiding aanmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/berOndAanm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_8_0_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.0.1. Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=8&titeldeel=0&artikel=8.0.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beschermde dieren ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beschermde_dieren_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.8 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.2&artikel=3.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beschermde leefomgeving aanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beschermde_leefomgeving_aanwijzing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beschermde leefomgeving schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beschermde_leefomgeving_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_6_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.3 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=6&artikel=6.3" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beschut werk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beschWerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_10b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10b Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10b" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "besmettelijke dierziektemeldingsplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/besmettelijke_dierziektemeldingsplicht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GWWD_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Gezondheids- en welzijnswet voor dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005662&hoofdstuk=II&afdeling=3&artikel=19" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bestelautotarief gehandicapten motorrijtuigenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bestAutGehMrb" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_24a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 24a Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=IV&afdeling=3&artikel=24a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bestemmingsplan inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bestemmingsplan_inzage" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.8 Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=3&afdeling=3.2&artikel=3.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "betogings- of demonstratiemelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/betogDemonsMld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:3 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beveiligingsmaatregelen na overval subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beveilMaatrOvervSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TRStimPrevMRWonBedOng_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke regeling stimulering preventieve maatregelen woning- en bedrijfsovervallen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038256&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bevoegdheidsbewijs luchtballonpiloot" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bevoegdBewLuchtbPiloot" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BBBLuchtv_art_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2a Besluit bewijzen van bevoegdheid voor de luchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010629&hoofdstuk=2&Paragraaf=1&artikel=2a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bevoegdheidsbewijs recreatief vlieger" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bevoegdBewRecrVlieger" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BBBLuchtv_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit bewijzen van bevoegdheid voor de luchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010629&hoofdstuk=2&Paragraaf=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bevoegdheidsbewijs zweefvliegtuigpiloot" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bevoegdBewZwVlPiloot" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BBBLuchtv_art_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2a Besluit bewijzen van bevoegdheid voor de luchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010629&hoofdstuk=2&Paragraaf=1&artikel=2a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bewaartermijn asbus ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bewTermAsbusOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_59" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 59 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=IV&afdeling=3&Paragraaf=1&artikel=59" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bewijs van in leven zijn (attestatie de vita)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bewijs_van_in_leven_zijn_(attestatie_de_vita)" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19k" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19k Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19k" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bewijs van nederlanderschap" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bewijs_van_nederlanderschap" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.55 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.55" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bewind" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bewind" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_431" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 431 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=19&artikel=431" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bezit beschermde dieren ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bezitBeschDierenOntheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_10_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.1 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=10&artikel=10.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bezit beschermde dieren ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bezitBeschDierenOntheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_10_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.1 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=10&artikel=10.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bezoekafspraak" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bezafspr" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bezwaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bezwaar" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_7_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7:1 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=7&afdeling=7.1&artikel=7:1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "beëindiging registratie kenteken bij uitvoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beeindRegistrKentekUitvoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 33 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=33" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "big-register buitenlands diploma-erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bigRegBuitDiplErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BIG_art_41" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 41 Wet op de beroepen in de individuele gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006251&hoofdstuk=VI&Paragraaf=1&artikel=41" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "big-register herinschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bigRegHerinschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BIG_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Wet op de beroepen in de individuele gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006251&hoofdstuk=II&Paragraaf=1&artikel=8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "big-register inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bigRegInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BIG_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet op de beroepen in de individuele gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006251&hoofdstuk=II&Paragraaf=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "big-register inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bigRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BIG_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Wet op de beroepen in de individuele gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006251&hoofdstuk=II&Paragraaf=1&artikel=12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijenhoudontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijenhoudonth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_64" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:64 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijstand" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijstand" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.2&artikel=11" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijstand tegenprestatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijstandTegenpr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=9" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijstand zelfstandigen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijstandZst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bbz_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit bijstandverlening zelfstandigen 2004" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015711&hoofdstuk=II&Paragraaf=1&artikel=2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijstandsverhaal" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijstandsverh" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_61" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 61 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=6&Paragraaf=6.5&artikel=61" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijvoeren wild ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijvoeren_wild_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_32" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.32 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.7&artikel=3.32" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzettingenregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzettingenregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_65" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 65 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=IV&afdeling=3&Paragraaf=2&artikel=65" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzonder transportontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzonder_transportontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_149" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 149 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VII&artikel=149" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzondere begraafplaats toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzondere_begraafplaats_toestemming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_40" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 40 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=III&Paragraaf=3&artikel=40" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzondere begraafplaats toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzondere_begraafplaats_toestemming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_41" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 41 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=III&Paragraaf=3&artikel=41" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzondere curator" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzCurator" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_212" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 212 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=6&artikel=212" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzondere curator" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzCurator" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_250" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 250 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=1&artikel=250" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzondere opsporingsdiensten klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzOpspoDnstKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbo_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet op de bijzondere opsporingsdiensten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019919&hoofdstuk=VI&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bijzonderebijstandsuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bijzBijstUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=4&Paragraaf=4.1&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bindend studieadvies beroep" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bindStudadvBeroep" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_8_1_7a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.1.7a Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=8&titeldeel=1&artikel=8.1.7a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "binnenschipcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/binSchipCert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Binnenvaartwet_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Binnenvaartwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023009&hoofdstuk=3&Paragraaf=1&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "biz-bijdrage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/biz-bijdrage" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WBIZ_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de bedrijveninvesteringszones" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035933&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bladkorf" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bladkorf" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "blijverslening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/blijverslening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_149" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 149 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=IX&artikel=149" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "blindengeleidehond" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/blindengeleidehond" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Rzv_art_2_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.13 Regeling zorgverzekering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018715&hoofdstuk=2&Paragraaf=1&sub-paragraaf=1.4&artikel=2.13" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bloedproductenin- en uitvoervergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bloedprodinuitvverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WBV_hfd_iv" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Hoofdstuk IV Wet inzake bloedvoorziening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009079&hoofdstuk=IV" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bloembollenteelteisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bloembteelteis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Landbouwkwaliteitsbesl_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Landbouwkwaliteitsbesluit 2007" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022535&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodembeschermingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodembeschermingsvergunning" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemonderzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mor_art_2_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.4 Regeling omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027471&hoofdstuk=2&Paragraaf=2.1&artikel=2.4" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemonderzoek schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemonderzoek_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbb_art_73" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikelen 73 en 74 Wet bodembescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003994&hoofdstuk=VII&Paragraaf=1&artikel=73" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemopslagvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemopslagvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mijnbouwwet_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Mijnbouwwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014168&hoofdstuk=3&Paragraaf=3.1&artikel=25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemsanering instemming saneringsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemsanering_instemming_saneringsplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbb_art_39" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 39 Wet bodembescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003994&hoofdstuk=IV&Paragraaf=3&artikel=39" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemsanering melding voornemen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemsanering_melding_voornemen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BesUniSan_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Besluit uniforme saneringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019511&Paragraaf=2&artikel=6" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2;N2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemsanering verkennend onderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemsanering_verkennend_onderzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bvbb_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Besluit verplicht bodemonderzoek bedrijfsterreinen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006155&artikel=4" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bodemverontreiniging melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bodemverontreiniging_melding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wbb_art_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 27 Wet bodembescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003994&hoofdstuk=IV&Paragraaf=1&artikel=27" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2;N2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "boedelregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/boedelregInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bbreg_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Besluit boedelregister" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014438&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "boete" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/boete" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WvSr_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Wetboek van Strafrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001854&boek=Eerste&titeldeel=II&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "borstprothesen transvrouwen subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brstprttranssub" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SRBorstprTrVr_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Subsidieregeling borstprothesen transvrouwen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0041856&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bouwgronduitgifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bouwgronduitgifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bouwplaninzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bouwplaninzage" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Woo_art_4_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.1 Wet open overheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045754&hoofdstuk=4&artikel=4.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bouwstoffenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bouwstoffenmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bbk_art_32" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 32 Besluit bodemkwaliteit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022929&hoofdstuk=3&artikel=32" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bouwwerk voltooiingsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bouwwerk_voltooiingsverklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bouwbesluit_2012_art_1_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.25 Bouwbesluit 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030461&hoofdstuk=1&Paragraaf=1.6&artikel=1.25" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bouwwerk werkzaamhedenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bouwwrkzhmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbobesluit_art_2_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.27 Arbeidsomstandighedenbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008498&hoofdstuk=2&afdeling=5&artikel=2.27" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bpm vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bpmvrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPM_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet op de belasting van personenauto's en motorrijwielen 1992" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005806&hoofdstuk=IV&afdeling=1&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4;C4;C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bpm-aangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bpmAangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPM_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet op de belasting van personenauto's en motorrijwielen 1992" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005806&hoofdstuk=III&afdeling=1&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4;C4;L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bpm-teruggaaf" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bpmTeruggaaf" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPM_art_14a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14a Wet op de belasting van personenauto's en motorrijwielen 1992" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005806&hoofdstuk=IV&afdeling=2&artikel=14a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4;C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "bpm-teruggaaf" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bpmTeruggaaf" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPM_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Wet op de belasting van personenauto's en motorrijwielen 1992" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005806&hoofdstuk=IV&afdeling=2&artikel=16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4;C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brandbeheersing aanvalsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brandbeheersing_aanvalsplan" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brandveiligheidadvies" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brandveiligheidadvies" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "briefadres" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/briefadres" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.23 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=3&artikel=2.23" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-adoptie-uitschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpAdoptUitschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_57" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.57 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.57" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-geheimhoudingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpGehhVzk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_59" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.59 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.59" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_38" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.38 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=5&artikel=2.38" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-inschrijving buitenlandse akte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpInschrBuitAkte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_38" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.38 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=5&artikel=2.38" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-inschrijving niet in leven zijnd kind" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpInschrOverlKind" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_56a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.56a Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.56a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-inzagerecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpInzRecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.55 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.55" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-inzagerecht gegevensverstrekking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpInzRechtGeg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_3_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.22 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=3&afdeling=2&artikel=3.22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-uittreksel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpUittr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.55 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.55" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-uittreksel met gezag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpUittrGezag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.55 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.55" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "brp-wijzigingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/brpWijzVzk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_58" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.58 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=6&artikel=2.58" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "btw-nummervermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/btwnrverm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_OB_art_35a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35a Wet op de omzetbelasting 1968" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002629&hoofdstuk=VI&afdeling=4&artikel=35a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "buitengewoon pensioen 1940-1945" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/buitGewPens4045" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WBP_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet buitengewoon pensioen 1940-1945" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002032&hoofdstuk=Eerste&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "buitengewoon pensioen indisch verzet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/buitGewPensIndischVerzet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIV_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet buitengewoon pensioen Indisch verzet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003968&hoofdstuk=Tweede&Paragraaf=1&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "buitengewoon pensioen zeelieden-oorlogsslachtoffers tweede wereldoorlog" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/buitGewPensZeelOorlSlachtWO2" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WbpZleOs_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet buitengewoon pensioen zeelieden-oorlogsslachtoffers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002035&hoofdstuk=Tweede&Paragraaf=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "buitenlands vermogen aangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/buitenlVermAang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AWR_art_67n" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 67n Algemene wet inzake rijksbelastingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002320&hoofdstuk=VIIIA&afdeling=2&artikel=67n" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "buitenlandse onderwijsbevoegdheid erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/buitenlOnderwBevErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AlgWetEUBerKwal_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Algemene wet erkenning EU-beroepskwalificaties" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023066&hoofdstuk=2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burger-oorlogsslachtoffers 1940 -1945 uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgOorlSlacht4045Uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WUBO_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet uitkeringen burger-oorlogsslachtoffers 1940-1945" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003664&hoofdstuk=II&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burgerinitiatief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GW_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Grondwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001840&hoofdstuk=1&artikel=5" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burgerinitiatief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo_burg_init" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening burgerinitiatief" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burgerinitiatief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_vo_burg_init" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale verordening burgerinitiatief" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burgerinitiatief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/w_vo_burg_init" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "waterschapsverordening burgerinitiatief" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "burgerservicenummer (bsn)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/burgerservicenummer_(bsn)" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_alg_bep_bsn_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet algemene bepalingen burgerservicenummer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022428&hoofdstuk=4&Paragraaf=2&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "calamiteitenbestrijding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/calamiteitenbestrijding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_5_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.29 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=5&Paragraaf=5&artikel=5.29" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "calamiteitenbestrijding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/calamiteitenbestrijding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvr_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet veiligheidsregio’s" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027466&Paragraaf=2&artikel=2" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "caravanparkeerontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/caravParkOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:6 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "carbidschietenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/carbidschietenmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "centraal archief overledenen inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/centrArchOverlInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_4_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.7 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=4&afdeling=2&Paragraaf=1&artikel=4.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "centraal insolventieregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/centrInsolvRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Fw_art_19a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19a Faillissementswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001860&titeldeel=I&afdeling=Eerste&artikel=19a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J7;H1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "centraal register uitsluiting kansspelen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cruks" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WKS_art_33h" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 33h Wet op de kansspelen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002469&titeldeel=VI&afdeling=3&artikel=33h" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "centraal testamentenregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/centrTestamRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wctr_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet op het centraal testamentenregister" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003080&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "certificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/certificaat" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cites-vergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/citesverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/CITES" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Overeenkomst inzake de internationale handel in bedreigde in het wild levende dier- en plantensoorten, Washington, 03-03-1973" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/BWBV0003833/" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cliëntenonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/clntonderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wwft_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet ter voorkoming van witwassen en financieren van terrorisme" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024282&hoofdstuk=2&Paragraaf=2.1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "collectevergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/collectevergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:13 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "collectief ontslagmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/collontslmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMCO_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet melding collectief ontslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003026&Paragraaf=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "collectieve arbeidsovereenkomst" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cao" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WCAO_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de collectieve arbeidsovereenkomst" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001937&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "collectieve en incidentele festiviteiten" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/collIncFest" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_4_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:1 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "collegegeld" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/collegegeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_43" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.43 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=3&Paragraaf=2&artikel=7.43" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "commenciële zendvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/commzndverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tw_art_3_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.10 Telecommunicatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009950&hoofdstuk=3&Paragraaf=3.5&artikel=3.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "commerciële-omroeptoestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/commomrtoest" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mediawet_2008_art_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.1 Mediawet 2008" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025028&hoofdstuk=3&titeldeel=3.1&artikel=3.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "compostvat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/compostvat" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "conformiteitsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/confverkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_EG_768_2008_bijl_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Besluit Nr. 768/2008/EG van het Europees Parlement en de Raad van 9 juli 2008 betreffende een gemeenschappelijk kader voor het verhandelen van producten en tot intrekking van Besluit 93/465/EEG van de Raad, Bijlage 1, Hoofdstuk R2" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32008D0768&from=NL#d1e215-89-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "consignatiekas-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/consignKasUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WConsGld_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Wet op de consignatie van gelden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003338&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cosmetische-productenvoorschriften" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cosmprdvrschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Warenwbesl_cosm_prod_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Warenwetbesluit cosmetische producten 2011" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0029746&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "covid-19 tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/covid19Tegm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Togs_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel tegemoetkoming ondernemers getroffen sectoren COVID-19" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043324&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "covid-19 werkgelegenheidssubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/covid19WerkgSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Now_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Tijdelijke noodmaatregel overbrugging voor behoud van werkgelegenheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043340&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crematoriumregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crematoriumregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_50" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 50 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=IV&afdeling=1&artikel=50" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisismaatregel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisismtrgl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvggz_art_7_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7:1 Wet verplichte geestelijke gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040635&hoofdstuk=7&Paragraaf=1&artikel=7:1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisisopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisisopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_6_1_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.1.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=6&Paragraaf=6.1&artikel=6.1.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisisopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisisopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlz_art_3_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.1.1 Wet langdurige zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035917&hoofdstuk=3&Paragraaf=1&artikel=3.1.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisisopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisisopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmo_art_2_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.3 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisisopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisisopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=3&Paragraaf=3.2&artikel=11" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "crisisplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/crisisplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvr_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Wet veiligheidsregio's" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027466&Paragraaf=3&artikel=16" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cultuur invoerverbod" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cultinvverb" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_6_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.3 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=6&Paragraaf=6.1&artikel=6.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cultuurgoedaanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cultuurgoedaanw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_3_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.7 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=3&Paragraaf=3.2&artikel=3.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cultuurgoederen uitvoervergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cultGoedUitvVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_4_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.22 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=4&Paragraaf=4.3&artikel=4.22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cultuursubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cultuursubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "curatele" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/curatele" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_378" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 378 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=16&artikel=378" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "curatele- en bewindregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/curateleBewReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_391" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 391 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=16&artikel=391" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cursusgeld" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cursusgeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LCW_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Les- en cursusgeldwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004188&hoofdstuk=III&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "cursusgeld terugbetaling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/cursusgeldTerugbet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LCW_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Les- en cursusgeldwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004188&hoofdstuk=III&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dagbesteding ouderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dagbestOuderen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_1_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=1&Paragraaf=2&artikel=1.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dagverzorging ouderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dagverzorging_ouderen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_1_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=1&Paragraaf=2&artikel=1.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "damu-leerling reiskostensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/damu-llReisksub" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subsreg_DAMU_PO_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Subsidieregeling reiskosten DAMU-leerlingen PO" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044620&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "damu-leerling reiskostensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/damu-llReisksub" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subsreg_DAMU_VO_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Subsidieregeling reiskosten DAMU-leerlingen VO" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0041167&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "deel onderwijsprogramma vo ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/deelOnderwProgrVOOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.178 Wet voortgezet onderwijs 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=2&artikel=2.18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "deel onderwijsprogramma vo ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/deelOnderwProgrVOOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.33 Wet voortgezet onderwijs 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=2&artikel=2.33" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "delfstoffenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/delfstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mijnbouwwet_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Mijnbouwwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014168&hoofdstuk=2&Paragraaf=2.1&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "depositogarantiestelsel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/depositogarantiestelsel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wft_art_3_259" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:259 Wet op het financieel toezicht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020368&titeldeel=3&hoofdstuk=3.5&afdeling=3.5.6&Paragraaf=3.5.6.1&artikel=3:259" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J7;H2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "detentie melding zorgverzekeraar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/detentieMeldZorgVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_24" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 24 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=3&Paragraaf=3.6&artikel=24" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "deurwaardersbenoeming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/deurwben" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GDW_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Gerechtsdeurwaarderswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012197&hoofdstuk=II&Paragraaf=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dienstplicht ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dienstplOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Kwd_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Kaderwet dienstplicht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008589&hoofdstuk=1&Paragraaf=5&artikel=13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dienstplicht uitstel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dienstplUitst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Kwd_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Kaderwet dienstplicht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008589&hoofdstuk=1&Paragraaf=5&artikel=12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dienstverlening op of aan de openbare weg vergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dienstverlening_op_of_aan_de_openbare_weg_vergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenhoudenontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenhOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_60" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:60 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_5_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Burgerlijk Wetboek Boek 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005288&boek=5&titeldeel=2&artikel=8" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenregistratiedocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenregDoc" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_id_reg_dieren" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Regeling identificatie en registratie van dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014538" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierententoonstellingsmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/diertentmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_houders_van_dieren_art_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.8 Besluit houders van dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035217&hoofdstuk=3&Paragraaf=2&artikel=3.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierentuinvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierentuinvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_houders_van_dieren_art_4_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.2 Besluit houders van dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035217&hoofdstuk=4&Paragraaf=1&artikel=4.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenvervoersdocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenvervDoc" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1_2005_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) n r. 1/2005 van de Raad van 22 december 2004 inzake de bescherming van dieren tijdens het vervoer en daarmee samenhangende activiteiten en tot wijziging van de Richtlijnen 64/432/EEG en 93/119/EG en van Verordening (EG) nr. 1255/97, art. 4" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/eli/reg/2005/1/2005-01-25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenvervoersvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenvervVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1_2005_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) n r. 1/2005 van de Raad van 22 december 2004 inzake de bescherming van dieren tijdens het vervoer en daarmee samenhangende activiteiten en tot wijziging van de Richtlijnen 64/432/EEG en 93/119/EG en van Verordening (EG) nr. 1255/97, art. 10 en art. 11" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/eli/reg/2005/1/2005-01-25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierenvervoersvoertuigcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierenvervVoertCert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1_2005_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) n r. 1/2005 van de Raad van 22 december 2004 inzake de bescherming van dieren tijdens het vervoer en daarmee samenhangende activiteiten en tot wijziging van de Richtlijnen 64/432/EEG en 93/119/EG en van Verordening (EG) nr. 1255/97, art. 18" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/eli/reg/2005/1/2005-01-25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "diergeneeskunderegister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/diergenRegister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_4_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.3 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=4&artikel=4.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dierproeven instellingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dierprinstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOD_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet op de dierproeven" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003081&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "digid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/digid" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_voorz_GDI_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling voorzieningen GDI" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037124&hoofdstuk=3&artikel=3" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "digid-machtiging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/digid_machtiging" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_voorz_GDI_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Regeling voorzieningen GDI" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037124&hoofdstuk=4&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "diplomabeschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/diplomabeschr" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "diplomaregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/diplomaregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_reg_onderw_deeln_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet register onderwijsdeelnemers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042012&hoofdstuk=2&Paragraaf=2.1&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "diplomaregister gegevensverstrekking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/diplRegGegVerstr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_reg_onderw_deeln_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet register onderwijsdeelnemers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042012&hoofdstuk=2&Paragraaf=2.1&artikel=5" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "discriminatie klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/discrKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WetCVDRM_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Wet College voor de rechten van de mens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030733&hoofdstuk=2&artikel=10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B7" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dividend bronbelastingvermindering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/divbrbelverm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_DB_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Wet op de dividendbelasting 1965" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002515&hoofdstuk=IV&artikel=11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dividendbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dividendbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_DB_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de dividendbelasting 1965" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002515&hoofdstuk=I&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dode-gezelschapsdierenopruiming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dodeGezelschDierenOpr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_3_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.5 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=3&Paragraaf=2&artikel=3.5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "donorgegevens kunstmatige bevruchting informatieverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/donorgegKunstmBevrInfoVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WDKB_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet donorgegevens kunstmatige bevruchting" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013642&Paragraaf=2&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "doodgeboren kind aangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/doodgeboren_kind_aangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19i" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19i Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19i" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "drinkwateraansluitingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/drwatAanslVerzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/DrinkwW_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Drinkwaterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026338&hoofdstuk=II&Paragraaf=2&artikel=8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "duur prestatiebeurs verlenging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/duurPrestBeursVerl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_5_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.2a Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=5&Paragraaf=5.1&artikel=5.2a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "duur prestatiebeurs verlenging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/duurPrestBeursVerl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_5_2c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.2c Wet studiefinanciering 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=5&Paragraaf=5.1&artikel=5.2c" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "duurzaamheidslening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/duurzhLening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dwangsom bij niet tijdig beslissen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dwangsomNietTijdBesl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_4_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:17 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=4&titeldeel=4.1&afdeling=4.1.3&Paragraaf=4.1.3.2&artikel=4:17" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dyslexieverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dyslexieverklaring" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "dyslexiezorg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/dyslexiezorg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=2&artikel=2.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "echtscheiding inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/echtscheiding_inschrijving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_163" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 163 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=9&afdeling=2&artikel=163" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1;G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "echtscheiding verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/echtschVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_150" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 150 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=9&afdeling=2&artikel=150" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "echtscheidingscertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/echtschCert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2019_1111_art_36" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 36 Verordening (EU) 2019/1111 van de Raad van 25 juni 2019 betreffende de bevoegdheid, de erkenning en tenuitvoerlegging van beslissingen in huwelijkszaken en inzake de ouderlijke verantwoordelijkheid, en betreffende internationale kinderontvoering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32019R1111&from=NL#d1e2305-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "economische ontwikkelingssubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/economische_ontwikkelingssubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eed-energieaudit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eedEnergieAudit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tijd_reg_impl_richtl_energie_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke regeling implementatie artikelen 8 en 14 Richtlijn energie-efficiëntie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0036841&Paragraaf=2&artikel=2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eenhoofdig gezag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eenhoofdigGezag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_251a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 251a Boek 1 Burgerlijk Wetboek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=2&Paragraaf=1&artikel=251a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eenmalige uitkering veteranen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eenmUitkVet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UitkTeg2tot5JDTVet_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Uitkeringswet tegemoetkoming twee tot vijfjarige diensttijd veteranen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009197&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eg-beroepskwalificaties erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/egBerKwalErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AlgWetEUBerKwal_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Algemene wet erkenning EU-beroepskwalificaties" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023066&hoofdstuk=2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eherkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eHerkenning" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "eindexamen vo aanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eindexVOAanp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UWVO_2020_art_3_54" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.54 Uitvoeringsbesluit WVO 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0045787&hoofdstuk=3&Paragraaf=6&artikel=3.54" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "elektriciteit programmaverantwoordelijkheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/elecprogverantw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Electriciteitswet_1998_art_31" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 31 Elektriciteitswet 1998" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009755&hoofdstuk=3&Paragraaf=5&artikel=31" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "elektriciteitsaansluitingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/elektrAanslVerzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ElektrW_1988_art_95b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 95b Elektriciteitswet 1988" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009755&hoofdstuk=8&Paragraaf=1a&artikel=95b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "emancipatiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/emancipatiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "emancipatiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/emancipatiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "energiebesparing eigen huis subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/energBespEigenHuisSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SREnergBespEH_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Subsidieregeling energiebesparing eigen huis" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038472&hoofdstuk=III&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "energielabel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/energielabel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegEnergGeb_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling energieprestatie gebouwen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020921&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "energiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/energiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "epidemiologie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/epidemiologie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet publieke gezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024705&hoofdstuk=II&Paragraaf=4&artikel=6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erfbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erfbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SW_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Successiewet 1956" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002226&hoofdstuk=I&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6;G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erfpacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erfpacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_5_art_85" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 85 Burgerlijk Wetboek Boek 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005288&boek=5&titeldeel=7&artikel=85" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erkenning kind" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erkenning_kind" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_203" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 203 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=3&artikel=203" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erkenning kind vernietiging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erkenKindVern" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_205" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 205 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=3&artikel=205" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erkenning kind vernietiging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erkenKindVern" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_205a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 205a Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=3&artikel=205a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "erkenning kind vervangende toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/erkenKindVervToest" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_204" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 204 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=3&artikel=204" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "europese erfrechtverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eurErfrechtVerklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_650_2012" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 62 Verordening (EU) nr. 650/2012 van het Europees Parlement en de Raad van 4 juli 2012 betreffende de bevoegdheid, ... van authentieke akten op het gebied van erfopvolging, alsmede betreffende de instelling van een Europese erfrechtverklaring" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32012R0650&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "europese sociale zekerheidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eusoczekverkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_987_2009_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 987/2009 van het Europees Parlement en de Raad van 16 september 2009 tot vaststelling van de wijze van toepassing van Verordening (EG) nr. 883/2004 betreffende de coördinatie van de socialezekerheidsstelsels, art. 19" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32009R0987&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "europese vuurwapenpas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/eu_vuurwapenpas" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Richtlijn_EU_2021_555_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Richtlijn (EU) 2021/555 van het Europees Parlement en de Raad van 24 maart 2021 inzake de controle op de verwerving en het voorhanden hebben van wapens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32021L0555&qid=1664446372771&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "europese ziekteverzekeringskaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/euziekteverzkrt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_987_2009_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 987/2009 van het Europees Parlement en de Raad van 16 september 2009 tot vaststelling van de wijze van toepassing van Verordening (EG) nr. 883/2004 betreffende de coördinatie van de socialezekerheidsstelsels, art. 25" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32009R0987&from=NL" - }, - "SDG": { - "type": "literal", - "value": "F3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "evc erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/evcErkenning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Stcrt_2016_59145" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Staatscourant 2016, 59145" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://zoek.officielebekendmakingen.nl/stcrt-2016-59145.html" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "evenementenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/evenementenmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_24" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.24 Model Algemene plaatselijke verordening" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "evenementenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/evenementenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPR_art_1_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.23 Binnenvaartpolitiereglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003628&deel=I&hoofdstuk=1&artikel=1.23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "evenementenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/evenementenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:25 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "examenonderdeel beroepsonderwijs vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/examenondBerOndVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ex_kwal_WEB_art_3b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3b Examen- en kwalificatiebesluit WEB" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027963&hoofdstuk=II&Paragraaf=1&artikel=3b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "examenvak vavo ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/examenvakVavoOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UWVO_2020_art_3_66" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.66 Uitvoeringsbesluit WVO 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0045787&hoofdstuk=3&Paragraaf=8&artikel=3.66" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "experiment gebruik meststoffen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/experiment_gebruik_meststoffen_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bgm_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Besluit gebruik meststoffen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009066&Paragraaf=5&artikel=8" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "expertisecentra onderwijsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/expertisecentra_onderwijsplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 81 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=IV&afdeling=2&artikel=81" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "extra onderwijsactiviteit basisschool vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/extrOnderwActBasisschVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_41" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 41 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=II&afdeling=1&Paragraaf=4&artikel=41" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "faillissement" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/faillismt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Fw_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Faillissementswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001860&titeldeel=I&afdeling=Eerste&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J7" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "faunabeheereenheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/faunabeheereenheid" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.12 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.4&artikel=3.12" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "faunabeheerplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/faunabeheerplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.12 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.4&artikel=3.12" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "fietsenregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/fietsenregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_70k" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 70k Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=IVA&artikel=70k" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "financiële hulp" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/financiële_hulp" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "financiële ondersteuning student bij bijzondere omstandigheden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/finOnderstStudBijzOmst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_51" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.51 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=3&Paragraaf=2a&artikel=7.51" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "forensenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/forensenbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_223" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 223 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "frequentiegebruik registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/frequentiegebrReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Frequentiebesluit_2013_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Frequentiebesluit 2013" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0032895&hoofdstuk=2&Paragraaf=2.2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "funderingsherstelsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/funderingsherstelsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "fytosanitair exportcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/fytsanexpcert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_2031" - }, - "Grondslaglabel": { - "type": "literal", - "value": "Artikel 71 Verordening (EU) 2016/2031 van het Europees Parlement en de Raad van 26 oktober 2016 betreffende beschermende maatregelen tegen plaagorganismen bij planten, tot wijziging van de Verordeningen (EU) nr. 228/2013, (EU) nr. 652/2014 en (EU) nr. 1143/2014 van het Europees Parlement en de Raad en tot intrekking van de Richtlijnen 69/464/EEG, 74/647/EEG, 93/85/EEG, 98/57/EG, 2000/29/EG, 2006/91/EG en 2007/33/EG van de Raad" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R2031&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "garantverklaring verblijf in nederland" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/garVerklVerblNL" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VB_art_2_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.11 Vreemdelingenbesluit 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011825&hoofdstuk=2&afdeling=4&artikel=2.11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gasaansluitingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gasAanslVerzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gaswet_art_44" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 44 Gaswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011440&hoofdstuk=5&Paragraaf=5.3&artikel=44" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gastouderbureaus kwaliteitseisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gastoudburkwaleis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_kwal_gastouderbur_enz" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Besluit kwaliteit gastouderbureaus, gastouders en voorzieningen voor gastouderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0031621" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gastouderopvang inrichtingseisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gastoudopvinrseis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_kwal_kinderopvang_enz_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Regeling kwaliteit kinderopvang en peuterspeelzalen 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0031613&Paragraaf=3&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gaswinning groningen schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gaswgrschverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tijd_wet_Gron_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke wet Groningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043252&hoofdstuk=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebiedsverbod" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebiedsverbod" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_172a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 172a Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=XI&artikel=172a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geboorteaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geboorteaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19e" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19e Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19e" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geboorteakte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geboorteakte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geboorteverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geboorteverlof" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_4_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:2 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=4&Paragraaf=1&artikel=4:2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebouw tijdelijkeverhuurvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebtijdverhverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Leegstw_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Leegstandwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003403&hoofdstuk=V&artikel=15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebruik autogordel en autokinderzitje ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebrAutogordelKinderzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RVV_art_88" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 88 Reglement verkeersregels en verkeerstekens 1990 (RVV 1990)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004825&hoofdstuk=VI&Paragraaf=2&artikel=88" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebruik gemeentelijke panden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebruik_gemeentelijke_panden" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebruiksmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebruiksmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bes_brvgeb_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Besluit brandveilig gebruik en basishulpverlening overige plaatsen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040068&hoofdstuk=2&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gebruiksmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gebruiksmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bouwbes_art_1_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.18 Bouwbesluit 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030461&hoofdstuk=1&Paragraaf=1.5&artikel=1.18" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedenkteken openbare weg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedenktekOpenbWeg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kst_29398_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Maatregelen verkeersveiligheid; Brief minister over gedenktekens voor verkeersslachtoffers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://zoek.officielebekendmakingen.nl/kst-29398-13.html" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedenkteken plaatsingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedenkteken_plaatsingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Behb_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Model Beheersverordening begraafplaatsen" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedoogbeslissing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedoogbeslissing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_125" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 125 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=125" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedoogbeslissing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedoogbeslissing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_122" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 122 Provinciewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005645&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=122" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedragscode natuurbescherming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedrcdnatbes" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_31" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.31 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.7&artikel=3.31&" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedwongen opname psychiatrische instelling klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedwOpnPsychInstKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvggz_art_10_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10:3 Wet verplichte geestelijke gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040635&hoofdstuk=10&Paragraaf=2&artikel=10:3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gedwongen opname psychiatrische instelling klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gedwOpnPsychInstKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wzd_art_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 55 Wet zorg en dwang psychogeriatrische en verstandelijk gehandicapte cliënten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040632&hoofdstuk=4&Paragraaf=4.2&artikel=55" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geen privégebruik auto verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geenPrivGebrAutoVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LB_art_13bis" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13bis Wet op de loonbelasting 1964" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002471&hoofdstuk=II&artikel=13bis" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerkaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_49" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 49 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=IV&artikel=49" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerkaart bestuurder" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_bestuurder" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_49" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 49 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=IV&artikel=49" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerkaart instellingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_instellingen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_49" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 49 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=IV&artikel=49" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerkaart passagier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_passagier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_49" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 49 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=IV&artikel=49" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerplaats" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerplaats" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=II&Paragraaf=4&artikel=12" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gehandicaptenparkeerplaats op kenteken" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerplaats_op_kenteken" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=II&Paragraaf=4&artikel=12" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geluidsbelasting grenswaarde" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geluidsbelasting_grenswaarde" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wgh_art_100a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 110a Wet geluidhinder" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003227&hoofdstuk=VIIIa&afdeling=1&artikel=110a" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geluidsontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geluidsontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_4_5b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:5b Model Algemene plaatselijke verordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geluidsruimteinformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geluidsruimteinformatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wgh_art_163" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 163 Wet geluidhinder" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003227&hoofdstuk=XIV&artikel=163" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeenschappelijke regelingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeenschappelijke_regelingen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WGR_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet gemeenschappelijke regelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003740&hoofdstuk=I&Paragraaf=1&artikel=1" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeenschappelijke regelingen geschilbeslechting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeenschappelijke_regelingen_geschilbeslechting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WGR_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Wet gemeenschappelijke regelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003740&hoofdstuk=I&afdeling=2&Paragraaf=4&artikel=28" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentefinanciën" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeentefinancien" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_191" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 191 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XIII&Paragraaf=1&artikel=191" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentegids" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeentegids" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentegrenscorrectie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeentegrenscorrectie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ARHI_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet algemene regels herindeling" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003718&hoofdstuk=II&Paragraaf=1&artikel=3" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke onderscheiding voordracht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gemeentelijke_onderscheiding_voordracht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneeskundige behandelingsovereenkomst" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geneeskbehover" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_446" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 446 Boek 7 Burgerlijk Wetboek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=7&afdeling=5&artikel=446" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneesmiddelen bijwerkingenregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/genbijwnreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gnw_art_78" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 78 Geneesmiddelenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021505&hoofdstuk=8&Paragraaf=3&artikel=78" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneesmiddelen-bijwerkingenmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/genbijwnmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gnw_art_78" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 78 Geneesmiddelenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021505&hoofdstuk=8&Paragraaf=3&artikel=78" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneesmiddelenbereidings- of -groothandelsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/genmidbergrhverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gnw_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Geneesmiddelenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021505&hoofdstuk=3&Paragraaf=1&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneesmiddeleninformatiebank inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geneesmInfoBankInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gnw_art_53" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 53 Geneesmiddelenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021505&hoofdstuk=4&Paragraaf=4&artikel=53" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geneesmiddelenrecept" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geneesmiddelenrecept" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Richtlijn_2011_24_EU" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Richtlijn 2011/24/EU van het Europees Parlement en de Raad van 9 maart 2011 betreffende de toepassing van de rechten van patiënten bij grensoverschrijdende gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32011L0024&from=NL#d1e1582-45-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gerechtsdeurwaardersregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gerechtsdeurwaardersregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GDW_art_1a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1a Gerechtsdeurwaarderswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012197&hoofdstuk=I&artikel=1a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geregistreerd partnerschap omzetting in huwelijk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschap_omzetting_in_huwelijk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_80g" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 80g Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5A&artikel=80g" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geregistreerd partnerschap ontbinding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschap_ontbinding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_80c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 80c Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5A&artikel=80c" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geregistreerd partnerschapaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschapaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_80a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 80a Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5A&artikel=80a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "geslachtswijzigingsaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/geslachtswijzigingsaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=13&artikel=28" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gesubsidieerde rechtsbijstand en mediation" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gesubsRechtsbijstMed" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WRB_art_33e" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 33e Wet op de rechtsbijstand" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006368&hoofdstuk=IVa&artikel=33e" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "getuige strafzaak onkostenvergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/getuige_strafz_onkvergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WTSZ_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet tarieven in strafzaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0002406&titeldeel=Eerste&Paragraaf=1&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gevonden of verloren voorwerp" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gevVerlVoorwerp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_5_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Burgerlijk Wetboek Boek 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005288&boek=5&titeldeel=2&artikel=12" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gewetensbezwaren militaire dienst erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gewBezwDPlErk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WGMD_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet gewetensbezwaren militaire dienst" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002386&hoofdstuk=II&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gewezen verdachte schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gewVerdSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_529" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 529 Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Vierde&titeldeel=VIa&artikel=529" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gezagsregister uittreksel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gezagsregUittr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek1_art_244" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 244 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=13&afdeling=4&artikel=244" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gezamenlijk gezag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gezGezag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_252" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 252 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=2&Paragraaf=1&artikel=252" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gezamenlijk gezag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gezGezag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_253t" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 253t Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=3A&Paragraaf=2&artikel=253t" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gezondheidsdienst" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gezondheidsdienst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet publieke gezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024705&hoofdstuk=IV&artikel=14" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gezondheidsopvoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gezondheidsopvoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet publieke gezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024705&hoofdstuk=II&Paragraaf=2&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ggo-vergunning ingeperkt gebruik" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ggovergingepgebr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_gen_gemod_org_art_2_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.35 Besluit genetisch gemodificeerde organismen milieubeheer 2013" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035090&hoofdstuk=2&titeldeel=2.2&afdeling=2.2.3&Paragraaf=2.2.3.1&artikel=2.35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ggo-vergunning introductie in milieu" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ggovergintrmil" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_gen_gemod_org_art_3_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.2 Besluit genetisch gemodificeerde organismen milieubeheer 2013" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035090&hoofdstuk=3&afdeling=3.1&artikel=3.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ggo-vergunning voeding en diervoeder" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ggovergvoeddierv" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1829_2003" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 1829/2003 van het Europees Parlement en de Raad van 22 september 2003 inzake genetisch gemodificeerde levensmiddelen en diervoeders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32003R1829&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gladheidbestrijding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gladheidbestrijding" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "graafmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/graafmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_inf_netw_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Wet informatie-uitwisseling bovengrondse en ondergrondse netten en netwerken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040728&hoofdstuk=4&artikel=8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grafonderhoud" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grafonderhoud" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Bverb_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Model Beheersverordening begraafplaatsen" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grafonderhoud" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grafonderhoud" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Bverb_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Model Beheersverordening begraafplaatsen" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grafrechten" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grafrechten" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_229" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 229 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=229" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grafuitgifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grafuitgifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Behb_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Model Beheersverordening begraafplaatsen" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "gratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gratw_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Gratiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004257&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "groenstroken en restgronden kopen of huren" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/groenstroken_en_restgronden_kopen_of_huren" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grondexploitatieovereenkomst" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grondexplOvereen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_6_4a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.4a Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=6&afdeling=6.1&artikel=6.4a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grondwaterheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grondwaterheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_7_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.7 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=7&Paragraaf=1&artikel=7.7" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grondwateronttrekking schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grondwateronttr_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_7_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.18 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=7&Paragraaf=3&artikel=7.18" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grondwateronttrekkingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grondwateronttrekkingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_6_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.4 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=6&Paragraaf=1&artikel=6.4" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "grondwateronttrekkingsvergunning registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grondwateronttr_registratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WaB_art_6_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.11 Waterbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026872&hoofdstuk=6&Paragraaf=5&artikel=6.11" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "groningen waardevermeerderingssubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gronWrdVermSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_waardev_won_gron_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling waardevermeerdering woningen gaswinning Groningenveld" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039336&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "groot pleziervaartbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grPlezVaartbew" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Binnenvaartgeregling_art_7_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.8 Binnenvaartregeling" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025958&hoofdstuk=7&Paragraaf=1&artikel=7.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "groot vaarbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/grootVaarbew" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Binnenvaartbesluit_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Binnenvaartbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025631&hoofdstuk=3&Paragraaf=3&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handelingen gemeentefunctionaris ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handelingen_gemeentefunctionaris_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=II&hoofdstuk=II&artikel=15" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handelsregister gegevensverstrekking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handRegGegVerstr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Hrw_2007_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Handelsregisterwet 2007" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021777&hoofdstuk=4&Paragraaf=4.1&artikel=21" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handelsregister inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handRegInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Hrw_2007_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Handelsregisterwet 2007" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021777&hoofdstuk=3&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handhavingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_125" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 125 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=125" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handhavingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_122" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 122 Provinciewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005645&titeldeel=III&hoofdstuk=VIII&Paragraaf=4&artikel=122" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "handhavingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_61" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 61 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=III&hoofdstuk=IX&Paragraaf=4&artikel=61" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "havenverordening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/havenverordening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "heffingskorting uitbetaling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hefKortUitbet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IB_art_8_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.9 Wet inkomstenbelasting 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011353&hoofdstuk=8&afdeling=8.1&artikel=8.9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "herbegraven of alsnog cremeren" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/herbegraven_of_alsnog_cremeren" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 29 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=III&Paragraaf=1&artikel=29" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "herbestemming monument subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/herbestMonSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_7_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.3 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=7&Paragraaf=7.1&artikel=7.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hergebruik overheidsinformatie verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hergebOvInfo" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_hergeb_ovinfo_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet hergebruik van overheidsinformatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0036795&hoofdstuk=II&artikel=3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hofleverancieraanvraag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hofleverancieraanvraag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Stcrt_1987_65" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Staatscourant 1987, 65" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hoger beroep tegen uitspraak bestuursrechter" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/HogBerUitsprBestRecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_104" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:104 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.5&artikel=8:104" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hoger onderwijs aanmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hogOndAanm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_31a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.31a Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=3&Paragraaf=1&artikel=7.31a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hondenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hondenbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_226" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 226 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=226" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hondenbesluit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hondenbesluit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_57" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:57 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hondenhoudersregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/honderhoudersregistratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_houders_dieren_art_3_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.29 Besluit houders van dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035217&hoofdstuk=3&Paragraaf=4&artikel=3.29" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1;A4;D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hoogspanningslijn objecten plaatsen onder" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hoogspanningslijn_objecten_plaatsen_onder" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:22 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hoorhulpmiddel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hoorhulpm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "horecabedrijf exploitatievergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/horecaExplVrg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:28 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "horecabedrijf inrichtingseisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hobedrinreis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Alcoholwet_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Alcoholwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002458&Paragraaf=2&artikel=10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "horecatijdenontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/horecatijdenontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:29 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "houthandelsverplichtingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/houthandverpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_995_2010" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EU) Nr. 995/2010 van het Europees Parlement en de Raad van 20 oktober 2010 tot vaststelling van de verplichtingen van marktdeelnemers die hout en houtproducten op de markt brengen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32010R0995&from=NL#d1e491-23-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hsl-zuid a-16 a-4 schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hslZdA16A4SchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GRSchVergHSLZA16A4_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Gemeenschappelijke regeling schadevergoedingsschap HSL-Zuid, A16 en A4" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038850&hoofdstuk=II&artikel=2" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huisdierenpaspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huisdierenpaspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_998_2003" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Verordening (EU) Nr. 576/2013 betreffende het niet-commerciële verkeer van gezelschapsdieren " - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32013R0576&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huishoudelijk afvalinzameling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huishoudelijk_afvalinzameling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.21 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.4&artikel=10.21" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huishoudelijk afvalwatermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huishoudelijk_afvalwatermelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Blah_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Besluit lozing afvalwater huishoudens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022910&hoofdstuk=4&Paragraaf=1&artikel=13" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huishoudelijke hulp" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huishHulp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huisnummertoekenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huisnummertoekenning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BAG_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet basisregistratie adressen en gebouwen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023466&hoofdstuk=1&artikel=6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huisvesting verblijfsgerechtigden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huisvVerblGer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=5&Paragraaf=1&artikel=28" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huisvestingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huisvestingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=2&Paragraaf=1&artikel=8" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "hulpmiddel voor traplopen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/hulpmTrapl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huurders groningen tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huurders_gron_tegemoetk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Beleidsr_teg_huurders_Gron_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel tegemoetkoming huurders van gereguleerde woningen van particuliere verhuurders in het aardbevingsgebied Groningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0046476&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huurtoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huurtoeslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHT_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet op de huurtoeslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008659&hoofdstuk=2&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwelijk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_30" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&artikel=30" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijk bij volmacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwelijkBijVolm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_66" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 66 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=4&artikel=66" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijksaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwelijksaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_44" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 44 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=2&artikel=44" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijksdispensatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwelijksdispensatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_41" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 41 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=1&artikel=41" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijksgoederenregister inschrijving huwelijkse voorwaarden of partnerschapsvoorwaarden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwGoedRegInsHuwPartVw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_116" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 116 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=8&afdeling=1&artikel=116" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "huwelijksgoederenregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/huwGoedRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_116" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 116 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=8&afdeling=1&artikel=116" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "identiteitsfraudemelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/identiteitsfraudemelding" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "identiteitskaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/identiteitskaart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_16a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16a Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=II&Paragraaf=3A&artikel=16a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "implantaat informatieverstrekking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ImplantaatInfoVerstr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WKKGZ_art_7b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7b Wet kwaliteit, klachten en geschillen zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037173&hoofdstuk=2&artikel=7b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inbewaringstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbewaringst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wzd_art_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 29 Wet zorg en dwang psychogeriatrische en verstandelijk gehandicapte cliënten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040632&hoofdstuk=3&Paragraaf=2&sub-paragraaf=2.5&artikel=29" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgeringsexamen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_2021_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044770&hoofdstuk=3&artikel=7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgeringsexamen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet inburgering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020611&hoofdstuk=2&artikel=7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen aanmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbExamAanmeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_inb_2021_art_3_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.6 Besluit inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045555&hoofdstuk=3&afdeling=3&Paragraaf=2&artikel=3.6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen aanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbExamAanpas" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_inb_2021_art_3_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.9 Besluit inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045555&hoofdstuk=3&afdeling=3&Paragraaf=2&artikel=3.9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbExamVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BI_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Besluit inburgering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020674&hoofdstuk=2&afdeling=2&artikel=2.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsexamen vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbExamVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_inb_2021_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Besluit inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045555&hoofdstuk=2&afdeling=2&artikel=2.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringslening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgeringslening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_2021_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Wet inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044770&hoofdstuk=6&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringslening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgeringslening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Wet inburgering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020611&hoofdstuk=5&artikel=16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsplicht ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgPlOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_2021_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044770&hoofdstuk=2&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsplicht ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgPlOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet inburgering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020611&hoofdstuk=2&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringsplicht vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inburgPlVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_2021_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044770&hoofdstuk=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inburgeringstermijn verlenging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inbTermVerl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wib_2021_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Wet inburgering 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044770&hoofdstuk=4&artikel=12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "incassoregisterinschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/increginschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wkwal_inc_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet kwaliteit incassodienstverlening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "individuele goedkeuring voertuig" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/indGoedkVoert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_98" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 98 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=V&Paragraaf=7&artikel=98" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "individuele inkomenstoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/indInkToesl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_36" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 36 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=4&Paragraaf=4.1&artikel=36" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "individuele studietoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/indStudToesl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_36b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 36b Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=4&Paragraaf=4.1&artikel=36b" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inkoop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inkoop" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_750" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 750 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=12&afdeling=1&artikel=750" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "inreisverbod opheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/inreisverbodOph" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_66b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 66b Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=6&afdeling=3&artikel=66b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "instandhouding monument subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/instHoudMonSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_7_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.3 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=7&Paragraaf=7.1&artikel=7.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "integratiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/integratiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "integriteitsbeoordeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/integriteitsbeoordeling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bibob_art_7a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7a Wet bevordering integriteitsbeoordelingen door het openbaar bestuur" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013798&hoofdstuk=2a&artikel=7a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "internationale diplomawaardering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/internatDiplWaard" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_7_4_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.4.7 Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=7&titeldeel=4&Paragraaf=1&artikel=7.4.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "internationale-kinderontvoeringsmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/intKindOntvMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verdrag_int_kind_ontv" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Verdrag betreffende de burgerrechtelijke aspecten van internationale ontvoering van kinderen, 's-Gravenhage, 25-10-1980" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBV0002010&hoofdstuk=III&artikel=8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "investeringssubsidie duurzame energie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/investSubsDuurzEner" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegNatEZSub_art_4_5_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.5.2 Regeling nationale EZ-subsidies" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035474&hoofdstuk=4&titeldeel=4.5&artikel=4.5.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "invoerrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/invoerrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_952_2013" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EU) Nr. 952/2013 van het Europees Parlement en de Raad van 9 oktober 2013 tot vaststelling van het douanewetboek van de Unie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32013R0952&qid=1529398347735&from=NL#d1e3875-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "invoerrechten vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/invoerrechten_vrijstelling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1186_2009_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Verordening (EG) Nr. 1186/2009 van de raad van 16 november 2009 betreffende de instelling van een communautaire regeling inzake douanevrijstellingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:02009R1186-20091230&qid=1664445286268&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "invorderingsrente" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/invorderingsrente" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IW_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Invorderingswet 1990" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004770&hoofdstuk=V&artikel=28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ioaw-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ioaw-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IOAW_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet inkomensvoorziening oudere en gedeeltelijk arbeidsongeschikte werkloze werknemers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004044&hoofdstuk=II&Paragraaf=1&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ioaz-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ioaz-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IOAZ_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet inkomensvoorziening oudere en gedeeltelijk arbeidsongeschikte gewezen zelfstandigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004163&hoofdstuk=II&Paragraaf=1&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "iow-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/iowUitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IOW_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet inkomensvoorziening oudere werklozen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024394&hoofdstuk=2&Paragraaf=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jachtakte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jachtakte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.28 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.6&artikel=3.28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdgezondheidszorg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdgezondheidszorg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet publieke gezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024705&hoofdstuk=II&Paragraaf=2&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdhulp" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdhulp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=2&artikel=2.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdhulp klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdhulpKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_4_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.2.1 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=4&Paragraaf=4.2&sub-paragraaf=4.2.a&artikel=4.2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdhulpdossier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdhulpdossier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_7_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.3.8 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=7&Paragraaf=7.3&artikel=7.3.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdige bijrijder vrachtauto verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdBijrVrAutoVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ATB_vervoer_art_2_7_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.7:4 Arbeidstijdenbesluit vervoer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009386&hoofdstuk=2&Paragraaf=2.7&artikel=2.7:4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jeugdsportsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jeugdsportsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "jongeren met een handicap onderwijsvoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/jongHandicOndVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOOS_art_19a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19a Wet overige OCW-subsidies" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009458&Paragraaf=2&artikel=19a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kabels- en leidingenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kabels-_en_leidingenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Ver_wkl_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Model Verordening werkzaamheden kabels en leidingen" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kabels- en leidingenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kabels-_en_leidingenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_vw_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale (vaar)wegenverordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kadastrale gegevens kopie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kadastrale_gegevens_kopie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Kadw_art_99" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 99 Kadasterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004541&hoofdstuk=7&titeldeel=1&afdeling=1&artikel=99" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kalksteenwinningsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kalkstwinverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mijnbouwbesluit_art_146" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 146 Mijnbouwbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014394&hoofdstuk=10&Paragraaf=10.2&artikel=146" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kampeerautotarief motorrijtuigenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kampAutTatMrb" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_23a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23a Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=IV&afdeling=2&artikel=23a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kampeerontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kampeeronth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_4_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:18 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kansspelautomaatvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kansspelautomaatvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WKS_art_30b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30b Wet op de kansspelen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002469&titeldeel=VA&Paragraaf=2&artikel=30b" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kansspelvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kansspelvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WKS_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet op de kansspelen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002469&titeldeel=I&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kentekenbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kentekenbewijs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=17" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kentekenoverschrijving bij overdracht particulieren" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kentekOverschOverdrPart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kentekenoverschrijving bij overlijden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kentekOverschOverl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 29 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=29" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kentekenregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kentekRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=3&artikel=10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kentekenschorsing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kentekenschorsing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_50" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 50 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=7&artikel=50" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "keur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/keur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_78" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 78 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=III&hoofdstuk=X&artikel=78" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "keurmerk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/keurmerk" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kiezerspas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kiezerspas" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_K_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel K 1 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=K&artikel=K_1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kinderbijslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kinderbijslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AKW_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Algemene Kinderbijslagwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002368&hoofdstuk=III&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kindercentrum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kindercentrum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wko_art_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.1 Wet kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017017&hoofdstuk=1&afdeling=1&artikel=1.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kinderdagopvang inrichtingseisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kindopvinreis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_kwal_kinderopvang_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Besluit kwaliteit kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039936&hoofdstuk=2&Paragraaf=1&artikel=10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kinderdagverblijf medisch" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kinderdagverblijf_medisch" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=2&artikel=2.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kinderopvangtoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kinderopvangtoeslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wko_art_1_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.5 Wet kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017017&hoofdstuk=1&afdeling=2&Paragraaf=2&artikel=1.5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1;E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kinderopvangtoeslag tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KinderOpvToeslagTegemoetk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wko_art_1_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.13 Wet kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017017&hoofdstuk=1&afdeling=2&Paragraaf=4&artikel=1.13" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1;E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kindgebonden budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kindGebBud" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_KB_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet op het kindgebonden budget" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022751&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_9_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9:1 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=9&titeldeel=9.1&afdeling=9.1.1&artikel=9:1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht ombudsman" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klacht_ombudsman" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_9_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9:18 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=9&titeldeel=9.2&afdeling=9.2.1&artikel=9:18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht vergunninghouder interlandelijke adoptie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klachtVerghInterlAdopt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wobka_art_24a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 24a Wet opneming buitenlandse kinderen ter adoptie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004447&hoofdstuk=5A&artikel=24a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht zorgaanbieder" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klachtZorgaanbieder" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wkkgz_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Wet kwaliteit, klachten en geschillen zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037173&hoofdstuk=3&Paragraaf=1&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht zorgaanbieder" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klachtZorgaanbieder" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wkkgz_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Wet kwaliteit, klachten en geschillen zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037173&hoofdstuk=3&Paragraaf=2&artikel=21" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klacht zorgverlener" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klachtZorgverlener" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BIG_art_65" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 65 Wet op de beroepen in de individuele gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006251&hoofdstuk=VII&Paragraaf=4&artikel=65" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "klein vaarbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/klVaarbew" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Binnenvaartbesluit_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Binnenvaartbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025631&hoofdstuk=3&Paragraaf=3&artikel=16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kleine landschapselementensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kleine_landschapselementensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kleine landschapselementensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kleine_landschapselementensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "koninklijk predicaataanvraag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/koninklijk_predicaataanvraag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Richtl_Pred_Kon" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Richtlijnen voor de toekenning van het recht tot het voeren van het predikaat Koninklijk" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "koninklijke onderscheiding voordracht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/koninklijke_onderscheiding_voordracht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegOrdNedLee" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Reglement op de Orde van de Nederlandse Leeuw en de Orde van Oranje-Nassau" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007391" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "koolwaterstoffenwinning-afdracht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/koolwaterstoffenwinning_afdracht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mijnbouwwet_art_76" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 76 Mijnbouwwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014168&hoofdstuk=5&afdeling=5.1.2&artikel=76" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "koop registergoed inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/koopRegGdInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "koopzondageninformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/koopzondageninformatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Winkeltijdenwet_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Winkeltijdenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007952&artikel=3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kostentoedeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kostentoedeling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_120" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 120 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=IV&hoofdstuk=XVII&artikel=120" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kunstkoopregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kunstkoopreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KunstKoopregeling" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "KunstKoopregeling" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013322" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "kunstzinnige vormingsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/kunstzinnige_vormingsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "laadpaalverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/laadpaalverzoek" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "landgoed-aanmerking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/landgoedAanmerking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Nsw_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Natuurschoonwet 1928" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001939&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "landinrichtingsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/landinrichtingsplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wilg_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Wet inrichting landelijk gebied" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020748&hoofdstuk=4&artikel=17" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lange duur vakantieproduct" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/langduurvakpr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_50a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 50a Boek 7 Burgerlijk Wetboek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1a&artikel=50a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leeftijdsgrenzen speciaal onderwijs ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leeftijdsgrSpecOndOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_39" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 39 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=II&afdeling=1&Paragraaf=3&artikel=39" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerlingenvervoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=I&artikel=4" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerlingenvervoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=I&artikel=4" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerlingenvervoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet op het voortgezet onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002399&titeldeel=I&artikel=4" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerlinggebonden financiering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerlinggebonden_financiering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tw_Reg_bekost_pers_PO" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Tweede Regeling bekostiging personeel PO 2021–2022 en vaststelling bedragen voor ondersteuning van leerlingen in het PO en VO 2021–2022" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045350" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerplichtverzuimmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerplichtverzuimmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LPW_art_21a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21a Leerplichtwet 1969" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002628&Paragraaf=4&artikel=21a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerplichtvrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerplichtvrijstelling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LPW_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Leerplichtwet 1969" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002628&Paragraaf=3&artikel=11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leerwegondersteunend onderwijs toelating" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leerwegonderstOndToel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_42" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, artikel 2.42" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=4&artikel=2.42" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "legalisatie document" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/legalisatie_document" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BesBuiDoc_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit vaststelling gedragslijn beoordeling buitenlandse documenten door middel van legalisatie en verificatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019727&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "legalisatie document" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/legalisatie_document" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Uw_HLVd_art_I" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel I Uitvoeringswet Verdrag tot afschaffing vereiste legalisatie buitenlandse openbare akten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002482&artikel=I" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "legalisatie handtekening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/legalisatie_handtekening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leges" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leges" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_229" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 229 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=229" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leges" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leges" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_223" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 223 Provinciewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005645&titeldeel=IV&hoofdstuk=XV&Paragraaf=2&artikel=223" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leges" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/leges" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_115" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 115 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=IV&hoofdstuk=XVI&artikel=115" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "leraren promotiebeurs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lerarenPromBeurs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/NWO_subreg_2017" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "NWO Subsidieregeling 2017" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039531" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lerarenbeurs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lerarenbeurs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subs_reg_Lerarenb" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Subsidieregeling lerarenbeurs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039319&hoofdstuk=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lerarenbeurs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lerarenbeurs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TRLerBeuSch_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke regeling lerarenbeurs voor scholing" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024246&Paragraaf=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lesgeld" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lesgeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LCW_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Les- en cursusgeldwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004188&hoofdstuk=II&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lesgeld buiteninvorderingstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lesgeldBuitInvSt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LCW_art_9b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9b van de Les- en cursusgeldwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004188&hoofdstuk=IV&artikel=9b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lesgeld terugbetaling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lesgeldTerBet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LCW_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Les- en cursusgeldwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004188&hoofdstuk=II&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "levenlanglerenkrediet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/levenlanglerenkrediet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.1 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=3&Paragraaf=3.1&artikel=3.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "levensmiddelenbedrijferkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/levmiddbedrerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Warenwetreg_proc_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Warenwetregeling procedures registratie en erkenning van levensmiddelenbedrijven" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019442&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "levensmiddelenbedrijfregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/levmiddbedrreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Warenwetreg_proc_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Warenwetregeling procedures registratie en erkenning van levensmiddelenbedrijven" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019442&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lichaamsmateriaaldonortestvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lichmatdontstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvkl_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Wet veiligheid en kwaliteit lichaamsmateriaal" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014682&hoofdstuk=III&artikel=12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lichaamsmateriaalerkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lichmaterk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvkl_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Wet veiligheid en kwaliteit lichaamsmateriaal" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014682&hoofdstuk=III&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ligplaatsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ligplaatsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "liquide middelen aangifte bij binnenkomst of verlaten EU" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/liqMiddAangBinnenkVerlEU" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1889_2005_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Verordening (EG) nr. 1889/2005 van het europees parlement en de raad van 26 oktober 2005 betreffende de controle van liquide middelen die de Gemeenschap binnenkomen of verlaten" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://eur-lex.europa.eu/eli/reg/2005/1889/oj" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "logeerhuis" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/logeerhuis" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "lokale omroepsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/lokale_omroepsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mediawet_art_2_170b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.170b Mediawet 2008" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025028&hoofdstuk=2&titeldeel=2.6&afdeling=2.6.5&artikel=2.170b" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loon premie volksverzekering inhouding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loonpvvinh" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wfsv_art_58" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 58 Wet financiering sociale verzekeringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017745&hoofdstuk=4&Paragraaf=1&artikel=58" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loon premie werknemersverzekering inhouding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loonpwvinh" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wfsv_art_59" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 59 Wet financiering sociale verzekeringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017745&hoofdstuk=4&Paragraaf=1&artikel=59" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loonbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loonbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_LB_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de loonbelasting 1964" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002471&hoofdstuk=I&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loonkostensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loonkostSub" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_10d" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10d Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10d" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loonsuppletie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loonsuppl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WAO_art_65c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 65c Wet op de arbeidsongeschiktheidsverzekering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002524&hoofdstuk=IIB&artikel=65c" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "loophulpmiddel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/loophulpmiddel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtkwaliteit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtkwaliteit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_5_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.6 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=5&titeldeel=5.2&Paragraaf=5.2.1&artikel=5.6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaart geluidscertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvGeluidscert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_luchtv_2008_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Besluit luchtvaartuigen 2008" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023922&hoofdstuk=5&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaart geluidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvGeluidsverklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_luchtv_2008_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Besluit luchtvaartuigen 2008" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023922&hoofdstuk=5&artikel=15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaart voorvalmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvVoorvalMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_mld_voorv_burgerlv_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling melden voorvallen in de burgerluchtvaart 2019" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042397&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaart voorvalmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvVoorvalMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_376_2014_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Verordening (EU) nr. 376/2014 van het Europees Parlement en de Raad van 3 april 2014 inzake het melden, onderzoeken en opvolgen van voorvallen in de burgerluchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32014R0376&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaartregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvaartregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WLV_art_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3 Wet luchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005555&hoofdstuk=3&titeldeel=3.1&artikel=3.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "luchtvaartuig teboekstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvaartuig_teboekstelling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Kadw_art_92" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 92 Kadasterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0004541&hoofdstuk=6&titeldeel=1&artikel=92" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "maaltijdservice" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/maaltijdservice" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "maatregel eindexamen beroep" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/maatrEindexBer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_63" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 2.63" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=5&artikel=2.63" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "maatschappelijke dienstverleningsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/maatschappelijke_dienstverleningsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "maatschappelijke zorgsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/maatschappelijke_zorgsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "machtiging voorlopig verblijf" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/machtVoorlVerbl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_2p" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2p Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=1a&afdeling=2&Paragraaf=1&artikel=2p" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1;D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mantelzorgcompliment" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mantelzorgcompliment" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_1_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1.6 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=1&artikel=2.1.6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mantelzorgondersteuning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mantelzorgondersteuning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2.2 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=2&artikel=2.2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "marktgelden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/marktgelden" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_229" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 229 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=229" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "marktmanipulatie of handel met voorwetenschap melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mrktmanhandvwsmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_596_2014_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EU) Nr. 596/2014 van het Europees Parlement en de Raad van 16 april 2014 betreffende marktmisbruik (Verordening marktmisbruik), art.16" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32014R0596&from=EN#d1e2464-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "marktvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/marktvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Marktv_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Model Marktverordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mbo-studentenfonds" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mboStudFonds" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_8_1_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.1.5 Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=8&titeldeel=1&artikel=8.1.5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mbo-verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mboVerklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_7_4_6a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.4.6a Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=7&titeldeel=4&Paragraaf=1&artikel=7.4.6a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mededelingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mededelingen" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medicijnen mee op reis verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medicOpReisVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Opw_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Opiumwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001941&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4;F2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medisch dossier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medischDossier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_456" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 456 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=7&afdeling=5&artikel=456" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medisch haalbaarheidsonderzoek letselschade subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medischHaalbOndLetSchSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegSubsMedHaalbLets_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling subsidiëring medische haalbaarheidsonderzoeken in letselschadezaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018592&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medisch specialistentitel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medspectitel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_specialisten_geneeskunst_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Regeling specialisten geneeskunst" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009878&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medisch vervoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medVervoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=3&Paragraaf=3.1&artikel=10" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medische hulpmiddelen eisen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medhlpmiddeis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bmh" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Besluit medische hulpmiddelen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007307" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "medische keuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/medKeur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmk_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de medische keuringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008819&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "meerderjarigheidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/meerderjarigheidsverklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_253ha" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 253ha Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=2&Paragraaf=2a&artikel=253ha" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "meldcode huiselijk geweld en kindermishandeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mldcdhuisgewkndmis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Stb_2013_142" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "verplichte meldcode huiselijk geweld en kindermishandeling" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://zoek.officielebekendmakingen.nl/stb-2013-142.html" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "melding gemeentelijke antidiscriminatievoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/discrMeldGemVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_gem_antidiscr_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet gemeentelijke antidiscriminatievoorzieningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026168&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "melding openbare ruimte (algemeen)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(algemeen)" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "melding openbare ruimte (groenvoorziening)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(groenvoorziening)" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "melding openbare ruimte (straatmeubilair)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(straatmeubilair)" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "melding openbare ruimte (straatverlichting)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(straatverlichting)" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "meldpunt algemeen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/meldpuntAlg" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "meldpunt zorgfraude" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/meldpuntZorgfraude" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmg_art_74" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 74 Wet marktordening gezondheidszorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020078&hoofdstuk=6&Paragraaf=6.1&artikel=74" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mentorschap" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mentorschap" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_450" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 450 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=20&artikel=450" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "meubelaanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/meubelaanp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "middelbare school klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/middSchKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_3_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 3.35" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=3&Paragraaf=9&artikel=3.35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "middeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/middeling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IB_art_3_154" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.154 Wet inkomstenbelasting 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011353&hoofdstuk=3&afdeling=3.14&artikel=3.154" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mijnbouw schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mijnbSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mijnbouwwet_art_114" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 114 Mijnbouwwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014168&hoofdstuk=6&Paragraaf=6.2&artikel=114" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "milieu provinciale subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/milieu_provinciale_subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "milieuinformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/milieuinformatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_19_1b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19.1b Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=19&artikel=19.1b" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "milieuontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/milieuontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pro_mil_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale milieuverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "milieuverslag bedrijf" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/milieuverslag_bedrijf" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_166_2005" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 166/2005 van het Europees Parlement en de Raad van 18 januari 2006 betreffende de instelling van een Europees register inzake de uitstoot en overbrenging van verontreinigende stoffen, artikel 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/eli/reg/2006/166/oj" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "milieuvriendelijk bouwsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/milieuvriendelijk_bouwsubsidie" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "militair invaliditeitspensioen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/militInvalPens" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BeslBijzMilPens_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit bijzondere militaire pensioenen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012222&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "minderhedensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/minderhedensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "minimumloon" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/minimumloon" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wml_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet minimumloon en minimumvakantiebijslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002638&hoofdstuk=II&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mobiele puinbreker gebruiksmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mobPuinbrGebr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besl_mob_breken_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Besluit mobiel breken bouw- en sloopafval" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0016292&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "mobiele-communicatievergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mobCommVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tw_art_3_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.10 Telecommunicatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009950&hoofdstuk=3&Paragraaf=3.5&artikel=3.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "modelovereenkomst arbeidsrelatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/modOvereenkArbRel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/IB_art_3_90" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.90 Wet op de inkomstenbelasting 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011353&hoofdstuk=3&afdeling=3.4&Paragraaf=3.4.1&artikel=3.90" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "moederschapsontkenning verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/moederschOntkVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_202a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 202a Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=2a&artikel=202a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "monumentaanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/monumentaanwijzing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Erfgvo_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Model Erfgoedverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "monumentensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/monumentensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "monumentensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/monumentensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/motorrijtuigenbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=I&afdeling=1&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4;L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting overgangsregeling oudere voertuigen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRBelOvergRegOudereVtgn" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_84a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 84a Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=Xa&artikel=84a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting vrijstelling buitenlands kenteken" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstBuitKent" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_73" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 73 Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=VIII&artikel=73" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting vrijstelling invaliditeit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstInvaliditeit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UbVrijstMrbInv_art_I" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel I Uitvoeringsbeschikking vrijstelling van motorrijtuigenbelasting wegens invaliditeit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003578&artikel=I" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting vrijstelling oldtimer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstOldtimer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_72" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 72 Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=VIII&artikel=72" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting vrijstelling rolstoelinstallatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstRolstoelinst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=IV&afdeling=1&artikel=22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "motorrijtuigenbelasting vrijstelling tijdelijk verblijf nederland" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/mrbVrijstTVNL" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/MRB_art_73" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 73 Wet op de motorrijtuigenbelasting 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006324&hoofdstuk=VIII&artikel=73" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "museumsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/museumsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "naamgebruik verzoek aanduiding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naamgebruik_verzoek_aanduiding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.25 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=3&artikel=2.25" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "naamskeuzeverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naamskeuzeverklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=2&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nachtregisterplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nachtregpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WvSr_art_438" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 438 Wetboek van Strafrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001854&boek=Derde&titeldeel=II&artikel=438" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nadeelcompensatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nadeelcompensatie" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nalatenschap verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nalatenschVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_4_art_190" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 190 Burgerlijk Wetboek Boek 4" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002761&boek=4&titeldeel=6&afdeling=2&artikel=190" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nationale accreditatie-instantie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/natAccInst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_aanw_mat_accred_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet aanwijzing nationale accreditatie-instantie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026591&hoofdstuk=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M8;M3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "naturalisatieceremonie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naturalisatieceremonie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BvvN_art_60a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 60a Besluit verkrijging en verlies Nederlanderschap" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013605&hoofdstuk=IIIA&artikel=60a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "naturalisatieoptie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naturalOptie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RWN_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Rijkswet op het Nederlanderschap" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003738&hoofdstuk=3&artikel=6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "naturalisatieverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naturalisatieverzoek" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RWN_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Rijkswet op het Nederlanderschap" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003738&hoofdstuk=4&artikel=7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "natuur- en landschapsbeheer subsidiestelsel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/natuur-_en_landschapsbeheer_subsidiestelsel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "natuurbeheer provinciale subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/natuurbeheer_provinciale_subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "natuurgebied aanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/natuurgebied_aanwijzing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "natuurgebied vergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/natuurgebied_vergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_2_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.7 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=2&Paragraaf=2.3&artikel=2.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nazi-roofkunst restitutieverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/naziRoofkunstRestVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BesAdvCieRestCultWO2_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit adviescommissie restitutieverzoeken cultuurgoederen en Tweede Wereldoorlog" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022833&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nederlandse titel aanvraag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nederlTitelAanvraag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.23 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=1&Paragraaf=4&artikel=7.23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nietigverklaring huwelijk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_69" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 69 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=5&artikel=69" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nietigverklaring huwelijk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_70" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 70 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=5&artikel=70" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "nietigverklaring huwelijk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_71" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 71 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=5&artikel=71" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "no-riskpolis" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/noRiskPolis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ZW_art_29b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 29b Ziektewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001888&afdeling=Tweede&hoofdstuk=II&artikel=29b" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "noodreisdocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/noodreisdocument" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=II&Paragraaf=3&artikel=16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "notarisbenoeming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/notarisben" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WN_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet op het notarisambt" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010388&titeldeel=II&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "objectvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/objectvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:10 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "objectvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/objectvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/modelkeur_art_3_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.2 modelkeur 2013" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "objectvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/objectvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_omg_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale omgevingsverordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "octrooi" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/octrooi" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ROW_1995_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Rijksoctrooiwet 1995" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007118&hoofdstuk=2&Paragraaf=1&artikel=17" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "octrooiregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/octrooiregister" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ROW_1995_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Rijksoctrooiwet 1995" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007118&hoofdstuk=2&Paragraaf=1&artikel=19" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "olietank melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/olietankMld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning aanleg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_aanleg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning aanleg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_aanleg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning afwijking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_afwijking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning alarminstallatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_alarminstallatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning bouw" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_bouw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning brandveilig gebruik" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgVgBrvGebr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning kap" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_kap" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning milieu" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning milieu revisie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu_revisie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.6 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.6" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning milieu verandering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu_verandering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning monument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_monument" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning monument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_monument" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning natuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgVergNat" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning opslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_opslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning reclame" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_reclame" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning ruimtelijke ordening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_ruimtelijke_ordening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.12 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.3&artikel=2.12" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning sloop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_sloop" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.1 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.1&artikel=2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning uitweg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgVgUitweg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:12 Model Algemene plaatselijke verordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omgevingsvergunning uitweg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omgVgUitweg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_w_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale wegenverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omzetbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omzetbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_OB_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de omzetbelasting 1968" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002629&hoofdstuk=I&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "omzetbelasting kleine ondernemersregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/omzetbelKOR" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_OB_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Wet op de omzetbelasting 1968" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002629&hoofdstuk=V&afdeling=1&artikel=25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onbemand frequentiegebruik vergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onbemFreqGebrVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tw_art_3_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.10 Telecommunicatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009950&hoofdstuk=3&Paragraaf=3.5&artikel=3.10" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onbemand-luchtvaartuigsysteem exploitantregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysExplReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_onbem_luchtv_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Regeling onbemande luchtvaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044598&hoofdstuk=3&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onbemand-luchtvaartuigsysteem exploitantregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysExplReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2019_247_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Uitvoeringsverordening (EU) 2019/947 van de commissie van 24 mei 2019 inzake de regels en procedures voor de exploitatie van onbemande luchtvaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32019R0947&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onbemand-luchtvaartuigsysteem vaardigheidsbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysVaardigheidsb" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2019_247_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Uitvoeringsverordening (EU) 2019/947 van de commissie van 24 mei 2019 inzake de regels en procedures voor de exploitatie van onbemande luchtvaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32019R0947&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderhoud infrastructuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderhoud_infrastructuur" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderhoud rijksmonument lening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderhRijksmonLen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_7_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.8 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=7&Paragraaf=7.3&artikel=7.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderhoudsplan vve" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondhPlVve" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_5_art_126" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 126 Burgerlijk Wetboek Boek 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005288&boek=5&titeldeel=9&afdeling=2&artikel=126" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ondersteuningsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondrstverkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_H_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel H 4 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=H&artikel=H_4" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ondersteuningsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondrstverkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_R_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel R 2 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=III&hoofdstuk=R&artikel=R_2" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijsactiviteit speciaal onderwijs vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderwActSpecOndVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_46" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 46 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=II&afdeling=1&Paragraaf=3&artikel=46" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijsbijdrage en schoolkosten deeltijders vo en vavo tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderwBijdSchKstDtVoVavoTgk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WTOS_art_5_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.11 Wet tegemoetkoming onderwijsbijdrage en schoolkosten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012438&hoofdstuk=5&afdeling=5.2&Paragraaf=5.2.3&artikel=5.11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijsbijdrage en schoolkosten vo tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderwBijdSchKstVoTgk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WTOS_art_4_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.8 Wet tegemoetkoming onderwijsbijdrage en schoolkosten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012438&hoofdstuk=4&Paragraaf=4.3&artikel=4.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijshuisvestingsverordening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_100" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 100 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=IV&afdeling=3&artikel=100" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijshuisvestingsverordening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_102" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 102 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=IV&afdeling=3&artikel=102" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijshuisvestingsverordening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_art_76m" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 76m Wet op het voortgezet onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002399&titeldeel=III&afdeling=IA&hoofdstuk=I&artikel=76m" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijsmaster tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderwMastTgk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegTegStudKstOndMastOpl_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling tegemoetkoming studiekosten onderwijsmasteropleidingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038481&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onderwijssubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onderwijssubsidie" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "oneerlijke handelspraktijkenverbod" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/oneerlHandPrakVerb" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Whc_art_8_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.8 Wet handhaving consumentenbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020586&hoofdstuk=8&artikel=8.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ongebruikelijke-transactiemelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ongebrtransmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wwft_art_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16 Wet ter voorkoming van witwassen en financieren van terrorisme" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024282&hoofdstuk=3&Paragraaf=3.2&artikel=16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ongediertebestrijding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ongediertebestrijding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wonw_art_1a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1a Woningwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005181&hoofdstuk=I&artikel=1a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ongewenstverklaring opheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ongewVerklOph" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_68" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 68 Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=6&afdeling=4&artikel=68" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ongewoon voorvalmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ongewVoorvalmeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_17_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17.2 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=17&titeldeel=17.1&artikel=17.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onkruidbestrijding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onkruidbestrijding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wonw_art_1a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1a Woningwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005181&hoofdstuk=I&artikel=1a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onrechtmatig besluit schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onrmBeslSchadeverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_88" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:88 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.4&artikel=8:88" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onrechtmatige opname psychiatrische instelling schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onrmOpnPsInstSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BOPZ_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Wet bijzondere opnemingen in psychiatrische ziekenhuizen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005700&hoofdstuk=II&Paragraaf=3&artikel=28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onrechtmatige opname psychiatrische instelling schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onrmOpnPsInstSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BOPZ_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Wet bijzondere opnemingen in psychiatrische ziekenhuizen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005700&hoofdstuk=II&Paragraaf=5&artikel=35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaak gebruiksbeperking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_gebruiksbeperking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wkpboz_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet kenbaarheid publiekrechtelijke beperkingen onroerende zaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0016876&Paragraaf=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaak huur pacht koop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=1&afdeling=1&artikel=1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaak huur pacht koop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaak huur pacht koop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_311" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 311 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=5&afdeling=1&artikel=311" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaakbelasting (ozb)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaakbelasting_(ozb)" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_220" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 220 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=2&artikel=220" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2;L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onroerendezaakbelasting (ozb) kopie aanslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onroerendezaakbelasting_(ozb)_kopie_aanslag" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontgronding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontgronding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_ontgr_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale ontgrondingsverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontgrondingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontgrondingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ontgrw_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Ontgrondingenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002505&hoofdstuk=I&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontgrondingsvergunning schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontgrondingsvergunning_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ontgrw_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Ontgrondingenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002505&hoofdstuk=V&artikel=26" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontheffing internationale sanctie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onthefIntSanctie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sanctiewet_1977_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Sanctiewet 1977" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003296&afdeling=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontheffing verbod balseming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onthVerbBalseming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_71" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 71 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=VI&artikel=71" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontleding stoffelijk overschot toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontleding_stoffelijk_overschot_toestemming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_67" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 67 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=V&artikel=67" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontmoetingsruimte ouderenhuisvesting subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontmoetingsrOuderenhuisvSubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Stimreg_ontmr_ouderenhuisv_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Stimuleringsregeling ontmoetingsruimten in ouderenhuisvesting" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045929&hoofdstuk=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontslagregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontslagreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_667" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 667 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=10&afdeling=9&artikel=667" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onttrekking weg aan het verkeer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onttrekking_weg_aan_het_verkeer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wegw_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Wegenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001948&hoofdstuk=II&artikel=8" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ontwikkeladvies stap subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ontw_advies_stap_subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tijd_SubsReg_OntwAdv_STAP_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Tijdelijke subsidieregeling ontwikkeladvies STAP" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0046473&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onveilig productmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onvprodmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Warenwbesl_alg_prod_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Warenwetbesluit algemene productveiligheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006158&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onveilig voedingsmiddel of diervoedermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onvvoeddiervmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_178_2002_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) Nr. 178/2002 van het Europees Parlement en de Raad van 28 januari 2002 tot vaststelling van de algemene beginselen en voorschriften van de levensmiddelenwetgeving, tot oprichting van een Europese Autoriteit voor voedselveiligheid en tot vaststelling van procedures voor voedselveiligheidsaangelegenheden, art. 19 en 20" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/PDF/?uri=CELEX:32002R0178&from=EN" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "onverwijldebijstandvoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/onverwBijstVrz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 81 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=8&artikel=81" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "oorlogsgetroffenen motorrijtuigenbelasting vergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/oorlGetrMrBelVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bvvmrbo_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Besluit vaststelling vergoeding motorrijtuigenbelasting oorlogsgetroffenen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003681&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "openbare geestelijke gezondheidszorg (oggz)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/openbare_geestelijke_gezondheidszorg_(oggz)" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmo_art_2_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=2&artikel=2.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opgravingscertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opgravingscert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_5_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.1 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=5&Paragraaf=5.1&artikel=5.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opheffing school expertisecentra melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opheffing_school_expertisecentra_melding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besluit_bekostiging_WEC_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Besluit bekostiging WEC" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004259&hoofdstuk=I&titeldeel=II&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opheffing school voortgezet onderwijs melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opheffing_school_voortgezet_onderwijs_melding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bekostigingsbesluit_WVO_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Bekostigingsbesluit WVO" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005672&hoofdstuk=1&titeldeel=1&artikel=2" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opiumontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opiumontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Opw_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Opiumwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001941&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opkopersregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opkoperreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sr_art_437" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 437 Wetboek van Strafrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001854&boek=Derde&titeldeel=II&artikel=437" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opleidingsvergoeding werklozen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opleidingsvergoeding_werklozen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_10a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10a Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "opvoedingsondersteuning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/opvoedingsondersteuning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=2&artikel=2.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "orgaandonatie bij leven onkostenvergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/orgaandonLevenOnkVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SRDonBijLev_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Subsidieregeling donatie bij leven" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025870&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "orgaandonor registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/orgaandonReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOD_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Wet op de orgaandonatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008066&hoofdstuk=3&Paragraaf=1&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ouderschapsvaststelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ouderschapsvaststelling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_207" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 207 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=4&artikel=207" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ouderschapsverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ouderschapsverlof" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_6_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6:1 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=6&Paragraaf=1&artikel=6:1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ov-begeleiderskaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ov-begeleiderskaart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegOVBegKrt_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling OV-begeleiderskaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035366&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overbruggingsuitkering aow" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overbrugUitkAow" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TROverbUitkAOW_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Tijdelijke regeling overbruggingsuitkering AOW" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033498&Paragraaf=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overdrachtsbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overdrachtsbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WBRV_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet op belastingen van rechtsverkeer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002740&hoofdstuk=II&afdeling=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overheidseigendom schademelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overhEigSchMld" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijden vermist persoon verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlVermPersVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_426" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 426 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=18&afdeling=3&artikel=426" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensaangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlijdensaangifte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19h" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19h Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19h" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensakte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlijdensakte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_19f" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19f Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=4&afdeling=4&artikel=19f" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlijdensuitkering" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensuitkering anw" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlUitkAnw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Anw_art_51" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 51 Algemene nabestaandenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007795&hoofdstuk=3&afdeling=III&artikel=51" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensuitkering aow" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlUitkAow" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AOW_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Algemene Ouderdomswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002221&hoofdstuk=III&Paragraaf=2&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensuitkering wajong" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlUitkWajong" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wajong_art_2_56" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:56 Wet arbeidsongeschiktheidsvoorziening jonggehandicapten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008657&hoofdstuk=2&afdeling=8&Paragraaf=2&artikel=2:56" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "overlijdensuitkering wia" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/overlUitkWia" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_74" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 74 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=8&Paragraaf=8.2&artikel=74" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "paardachtigen identificatie en registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/paardachtIdentRegistr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_429" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 114 Verordening (EU) 2016/429 van het Europees Parlement en de Raad van 9 maart 2016 betreffende overdraagbare dierziekten en tot wijziging en intrekking van bepaalde handelingen op het gebied van diergezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0429&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "paardachtigen identificatie en registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/paardachtIdentRegistr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_429" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 143 Verordening (EU) 2016/429 van het Europees Parlement en de Raad van 9 maart 2016 betreffende overdraagbare dierziekten en tot wijziging en intrekking van bepaalde handelingen op het gebied van diergezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0429&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "paardachtigen identificatiedocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/paardachtIdentDocument" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2021_963" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Uitvoeringsverordening (EU) 2021/963 van de Commissie van 10 juni 2021" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32021R0963&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "pakketreis" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pakketreis" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_500" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 500 Boek 7 Burgerlijk Wetboek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=7A&afdeling=1&artikel=500" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "palliatieve zorg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/palliatieve_zorg" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_225" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 225 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=225" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1;B4;C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RVV_art_87" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 87 Reglement verkeersregels en verkeerstekens 1990 (RVV 1990)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004825&hoofdstuk=VI&Paragraaf=1&artikel=87" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerontheffing autobedrijven" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_autobedrijven" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:2 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerontheffing blauwe zone" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_blauwe_zone" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RVV_art_87" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 87 Reglement verkeersregels en verkeerstekens 1990 (RVV 1990)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004825&hoofdstuk=VI&Paragraaf=1&artikel=87" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerontheffing grote voertuigen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_grote_voertuigen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:8 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeerontheffing reclamevoertuig" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_reclamevoertuig" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:7 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "parkeervergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/parkeervergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_225" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 225 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=225" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "particuliere elektrische personenauto subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/partElPersauSubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subs_reg_el_persau_part_art_1_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.3 Subsidieregeling elektrische personenauto’s particulieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043600&hoofdstuk=I&artikel=1.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "paspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/paspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=IV&Paragraaf=1&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "paspoort tweede" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/paspTweede" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_30" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30 Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=IV&Paragraaf=1&artikel=30" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "peilbesluit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/peilbesluit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_5_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.2 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=5&Paragraaf=1&artikel=5.2" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "pensioenregister inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pensRegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_51" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 51 Pensioenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020809&hoofdstuk=4&Paragraaf=4.1&artikel=51" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "personenalarmering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/personenalarmering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "personenvervoerconcessie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/personenvervoerconcessie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wp_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Wet personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011470&hoofdstuk=II&Paragraaf=2&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "P1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bzv_art_2_15a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.15a Besluit zorgverzekering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018492&hoofdstuk=2&Paragraaf=1a&artikel=2.15a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_8_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.1.1 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=8&Paragraaf=8.1&artikel=8.1.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlz_art_3_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3.3 Wet langdurige zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035917&hoofdstuk=3&Paragraaf=3&artikel=3.3.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmo_art_2_3_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.6 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget jeugdwet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pgbJeugdwet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_8_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.1.1 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=8&Paragraaf=8.1&artikel=8.1.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget wlz" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pgbWlz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlz_art_3_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3.3 Wet langdurige zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035917&hoofdstuk=3&Paragraaf=3&artikel=3.3.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget wmo" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pgbWmo" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmo_art_2_3_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.6 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgebonden budget zorgverzekering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pgbZorgverz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bzv_art_2_15a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.15a Besluit zorgverzekering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018492&hoofdstuk=2&Paragraaf=1a&artikel=2.15a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgegevens inlichtingen- en veiligheidsdiensten inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persGegIVDInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wiv_2017_art_76" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 76 Wet op de inlichtingen- en veiligheidsdiensten 2017" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039896&hoofdstuk=5&Paragraaf=5.2&artikel=76" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgegevens verklaring onder eed of belofte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persoonsgegevens_verklaring_onder_eed_of_belofte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.8 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=3&artikel=2.8" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "persoonsgegevensverwerking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/persgegverw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_679_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Verordening (EU) 2016/679 van het Europees Parlement en de Raad van 27 april 2016 betreffende de bescherming van natuurlijke personen in verband met de verwerking van persoonsgegevens en betreffende het vrije verkeer van die gegevens en tot intrekking van Richtlijn 95/46/EG (algemene verordening gegevensbescherming)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0679&from=NL#d1e1369-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "planschade" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/planschade" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_6_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.1 Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=6&afdeling=6.1&artikel=6.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "plantenpaspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/plantenpaspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_invoer_planten_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Regeling invoer, uitvoer en verkeer van planten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005997&Paragraaf=2&artikel=6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "plantsoenen betreden ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/plantsnBetrOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_45" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:45 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "pleegvergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pleegvergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Jw_art_5_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.3 Jeugdwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0034925&hoofdstuk=5&artikel=5.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "pleziervaartuigcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/plezierVaartCertificaat" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Convenant_ICP" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Convenant ter bevordering van de afgifte van het Internationaal Certificaat voor Pleziervaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://zoek.officielebekendmakingen.nl/stcrt-2018-36436.html" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "podiumkunstensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/podiumkunstensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "podiumkunstensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/podiumkunstensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politie klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/politieKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Politiewet_2012_art_71" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 71 Politiewet 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0031788&hoofdstuk=7&artikel=71" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politiegegevens inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/politiegegInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Wet politiegegevens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022463&Paragraaf=4&artikel=25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politiekegroeperingsregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/polgrpreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_G_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel G 1 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=G&artikel=G_1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politiekegroeperingsregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/polgrpreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_G_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel G 2 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=G&artikel=G_2" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politiekegroeperingsregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/polgrpreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_G_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel G 2a Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=G&artikel=G_2a" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "politiekegroeperingsregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/polgrpreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_G_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel G 3 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=G&artikel=G_3" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "postdienst aansprakelijkheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/postdnstAanspr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Postwet_2009_art_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 29 Postwet 2009" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025572&hoofdstuk=4&Paragraaf=4.6&artikel=29" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5;H6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "praktijkonderwijs toelating" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/praktOndToel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_30" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 2.30" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=2&artikel=2.30" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "precariobelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/precariobelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_228" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 228 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=228" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs in gift omzetting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursGiftOmz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_4_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.13 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=4&afdeling=4.1&Paragraaf=4.1.2&artikel=4.13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs in gift omzetting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursGiftOmz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_5_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.15 Wet studiefinanciering 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=5&Paragraaf=5.7&artikel=5.15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_4_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.12 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=4&afdeling=4.1&Paragraaf=4.1.2&artikel=4.12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_4_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.14 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=4&afdeling=4.1&Paragraaf=4.1.2&artikel=4.14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_5_16" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.16 Wet studiefinanciering 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=5&Paragraaf=5.7&artikel=5.16" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "prestatiebeurs voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_5_2b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.2b Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=5&Paragraaf=5.1&artikel=5.2b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "primair onderwijs aanmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/poAanm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_40" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 40 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=II&afdeling=1&Paragraaf=4&artikel=40" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "processtukken inzage benadeelde partij strafzaak" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/processtInzBenPartStrafz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_51ac" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 51ac Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Eerste&titeldeel=IIIA&afdeling=Tweede&artikel=51ac" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "proefplaatsing ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/proefplWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_76a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 76a Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=VI&artikel=76a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "project waterstaatswerk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/project_waterstaatswerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_5_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.5 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=5&Paragraaf=2&artikel=5.5" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciaal inpassingsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/provinciaal_inpassingsplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_3_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.26 Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=3&afdeling=3.5&Paragraaf=3.5.1&artikel=3.26" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale financiën" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/provinciale_financien" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_194" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 194 Provinciewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005645&titeldeel=IV&hoofdstuk=XIII&Paragraaf=1&artikel=194" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale ruimtelijke verordeningontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/provRuimVerordOnt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_4_1a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.1a Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=4&afdeling=4.1&artikel=4.1a" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "psychotherapie voor naoorlogse generatie vergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/psychotherNaoorlGenVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TRPsyTheNOor_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke vergoedingsregeling psychotherapie na-oorlogse generatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006957&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "q-koortstegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/qkoortstegem" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Beleidsreg_tegm_qkoorts_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel tegemoetkoming Q-koorts 2019" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042403&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "raad voor de kinderbescherming klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/raadKindBesKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_239" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 239 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=13&afdeling=3&artikel=239" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "raadsstukken" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/raadsstuk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=II&hoofdstuk=II&artikel=19" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rampbestrijder nabestaandenuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rampbestrNabestUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_RPVRB_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Wet rechtspositionele voorzieningen rampbestrijders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005643&hoofdstuk=IV&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rampbestrijder nabestaandenuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rampbestrNabestUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_RPVRB_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Wet rechtspositionele voorzieningen rampbestrijders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005643&hoofdstuk=IV&artikel=22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rampbestrijder uitkering ziekte of invaliditeit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rampbestrUitkZiekInva" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WRPVRB_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet rechtspositionele voorzieningen rampbestrijders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005643&hoofdstuk=II&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9;F4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rampbestrijdingsplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rampbestrPlan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvr_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Wet veiligheidsregio’s" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027466&Paragraaf=3&artikel=17" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rampen en zware ongevallen informatieplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rampen_en_zware_ongevallen_informatieplicht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Brzo_2015_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Besluit risico's zware ongevallen 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0036791&Paragraaf=2&artikel=6" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "re-integratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/re-integratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=1&Paragraaf=1.2&artikel=7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "re-integratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/re-integratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=4&Paragraaf=4.2&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "re-integratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/re-integratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=4&Paragraaf=4.2&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rechterlijke organisatie klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rechtOrgKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RO_art_13a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13a Wet op de rechterlijke organisatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001830&hoofdstuk=2&afdeling=1a&artikel=13a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rechterlijke organisatie klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rechtOrgKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RO_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Wet op de rechterlijke organisatie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001830&hoofdstuk=2&afdeling=2&Paragraaf=2&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rechtmatigheidsformulier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rechtmatigheidsformulier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 17 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.3&artikel=17" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rechtshulp" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rechtshulp" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rechtstreeks beroep" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rechtstrBeroep" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_7_1a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7:1a Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=7&afdeling=7.1&artikel=7:1a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reclamebelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reclamebelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_227" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 227 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=227" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reclamemateriaalverspreiding ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reclamemateriaalverspreiding_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.6 Model Algemene plaatselijke verordening" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reclassering klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reclassKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_1995_art_30" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30 Reclasseringsregeling 1995" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007120&hoofdstuk=5&artikel=30" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "recreatiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/recreatiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rectificatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rectificatie" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "referendum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/referendum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_ref_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke referendumverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "regiotaxi" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regiotaxi" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "register arbeidsbeperkten inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regArbBepIns" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wfsv_art_38d" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 38d Wet financiering sociale verzekeringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017745&hoofdstuk=3&afdeling=4&Paragraaf=4a&artikel=38d" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B7;B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "register gemeenschappelijke regelingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/register_gemeenschappelijke_regelingen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WGR_art_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 27 Wet gemeenschappelijke regelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003740&hoofdstuk=I&afdeling=2&Paragraaf=4&artikel=27" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "register kinderopvang en peuterspeelzalen inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regKindOpvPeutSpZlInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wko_art_1_47b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.47b Wet kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017017&hoofdstuk=1&afdeling=3&Paragraaf=1&artikel=1.47b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1;E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "register kinderopvang inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/register_kinderopvang_inschrijving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wko_art_1_46" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.46 Wet kinderopvang" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017017&hoofdstuk=1&afdeling=3&Paragraaf=1&artikel=1.46" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "register niet-bekostigde educatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regNietBekostEducatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_6a_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6a.1.1 Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=6a&titeldeel=1&artikel=6a.1.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "registratie instellingen en opleidingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regInstEnOpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_6_4_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.4.1 Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=6&titeldeel=4&artikel=6.4.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "registratie instellingen en opleidingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regInstEnOpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_6_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.13 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=6&titeldeel=3&artikel=6.13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "registratienummer toeristische woonruimteverhuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/regnr_toer_woonruimteverhuur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_23a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23a Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=4&Paragraaf=1a&artikel=23a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reinigingsrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reinigingsrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_229" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 229 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=229" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reisdocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reisdocument" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reiskostenvergoeding ziekenbezoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reiskostenvergoeding_ziekenbezoek" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reisservice van valys" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reisSrvValys" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reizen met minderjarige toestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reizMJToest" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "remigratie-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/remigrUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Rw_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Remigratiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010424&hoofdstuk=II&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "reprorecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/reprorecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Aw_art_16h" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 16h Auteurswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001886&hoofdstuk=I&Paragraaf=6&artikel=16h" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "restauratie rijksmonument subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/restRijkmonSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SubsReg_rest_rijksmon_2019_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Subsidieregeling restauratie rijksmonumenten 2019–2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042214&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewijs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_107" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 107 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=1&artikel=107" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs aanvragen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbAanvraag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=II&Paragraaf=1&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs buitenlands omwisseling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewijs_buitenlands_omwisseling" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_45" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 45 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=II&Paragraaf=2&artikel=45" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs echtheidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewEchthVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_127" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 127 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=8&artikel=127" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs echtheidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewEchthVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_128" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 128 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=8&artikel=128" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs gezondheidsverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbGezVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_100" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 100 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=IV&Paragraaf=2&artikel=100" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs internationaal" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewijs_internationaal" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_117" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 117 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=5&artikel=117" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs teruggaveverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbTerugVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_164" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 164 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=IX&artikel=164" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs verklaring van geschiktheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewijs_verklaring_van_geschiktheid" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_101" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 101 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=IV&Paragraaf=2&artikel=101" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs verklaring van rijvaardigheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbverklrijv" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_50" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 50 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=III&Paragraaf=1&artikel=50" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijs verlengen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbVerlengen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RR_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Reglement rijbewijzen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008074&hoofdstuk=II&Paragraaf=2&artikel=35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijsaanvraag na ongeldigverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewAanvrNaOngVerkl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_123b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 123b Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=7&artikel=123b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijsregister uittreksel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewRegUittr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_127" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 127 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=8&artikel=127" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijbewijsregister uittreksel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijbewRegUittr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_128" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 128 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VI&afdeling=8&artikel=128" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijden in natuurgebied ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijdNatuurOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:33 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijksmonumentenregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijksMonumReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=3&Paragraaf=3.1&artikel=3.3&" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rijksvisum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rijksvisum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Rijksvisumwet_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Rijksvisumwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038494&hoofdstuk=II&Paragraaf=1&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rioolaansluitingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rioolaansluitingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_149" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 149 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=IX&artikel=149" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rioolheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rioolheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_228a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 228a Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=228a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rioolonderhoud" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rioolonderhoud" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rioolwaterzuivering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rioolwaterzuivering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.8 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=3&Paragraaf=2&artikel=3.8" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "risicokaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/risicokaart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvr_art_45" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 45 Wet veiligheidsregio’s" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0027466&Paragraaf=10&artikel=45" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rni inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rniInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_66" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.66 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=2&Paragraaf=2&artikel=2.66" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "roerenderuimtebelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/roerenderuimtebelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_221" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 221 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=221" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "rolstoel en scootmobiel" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/rolstSctMob" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "routeplichtontheffing vervoer gevaarlijke stoffen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/routeplichtontheffing_vervoer_gevaarlijke_stoffen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVGS_art_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 27 Wet vervoer gevaarlijke stoffen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007606&hoofdstuk=IIIa&artikel=27" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schade bij rampen tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schadeBijRampenTegemoetkoming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wts_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet tegemoetkoming schade bij rampen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009637&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schadefonds geweldsmisdrijven uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schadefGewMisdrUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSFG_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet schadefonds geweldsmisdrijven" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002979&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schadevergoeding benadeelde partij strafzaak" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schadevergBenPartStrZk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_51f" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 51f Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Eerste&titeldeel=IIIA&afdeling=Tweede&artikel=51f" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "scheiding van tafel en bed inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/scheidTafelBedInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_173" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 173 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=10&afdeling=1&artikel=173" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "scheiding van tafel en bed verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/scheidTafelBedVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_169" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 169 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=10&afdeling=1&artikel=169" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "scheidingsmelding pensioenfonds" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/scheidMeldPensFnds" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvps_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet verevening pensioenrechten bij scheiding" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006641&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schengenvisum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schengenvisum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=3&afdeling=1&artikel=9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schenkbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schenkbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SW_art_37" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 37 Successiewet 1956" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002226&hoofdstuk=IV&artikel=37" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schenkbelasting kwijtschelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schenkbelKwijtsch" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SW_art_67" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 67 Successiewet 1956" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002226&hoofdstuk=XI&artikel=67" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6;G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schenking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schenking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_175" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 175 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=3&artikel=175" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schip teboekstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schipTeboekstel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Kadw_art_85" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 85 Kadasterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004541&hoofdstuk=5&titeldeel=1&artikel=85" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "scholingsvoucher ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/scholingsvouchWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TRSubsSchRichtKansber_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke regeling subsidie scholing richting een kansberoep" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037912&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schoolzwemmensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schoolzwemmensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldhulpverlening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schuldhulpverlening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_gem_schuldh_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet gemeentelijke schuldhulpverlening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0031331&artikel=3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldkwijtschelding wajong" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schKwijtsWajong" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wajong_art_2_59" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:59 Wet arbeidsongeschiktheidsvoorziening jonggehandicapten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008657&hoofdstuk=2&afdeling=8&Paragraaf=2&artikel=2:59" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldkwijtschelding wia" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schKwijtsWia" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_77" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 77 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=8&Paragraaf=8.2&artikel=77" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldkwijtschelding ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schKwijtsWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_36" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 36 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=II&Paragraaf=3&artikel=36" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldkwijtschelding ziektewet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schKwijtsZw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ZW_art_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 33 Ziektewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001888&afdeling=Tweede&hoofdstuk=II&artikel=33" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "schuldsanering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/schuldsan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Fw_art_284" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 284 Faillissementswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001860&titeldeel=III&afdeling=Eerste&artikel=284" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "seksbedrijf exploitatievergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/seksbedrijf_exploitatievergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:3 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "seniorenwoning bijdrage bouwkosten" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/senWonBijdBwkst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "slachtoffer geweld jeugdzorg tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/finTegSlachtoffJeugdz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tijd_reg_slachtof_jeugdz_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Tijdelijke regeling financiële tegemoetkoming voor slachtoffers van geweld in de jeugdzorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044414&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "snelheidsbegrenzer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/snelhbegr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_voertuigen_art_5_3_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.3.15 Regeling voertuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025798&hoofdstuk=5&afdeling=3&Paragraaf=4&artikel=5.3.15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "snelle motorboot registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/snelMbootReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPR_art_8_01" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.01 Binnenvaartpolitiereglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003628&deel=I&hoofdstuk=8&artikel=8.01" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "snuffelmarktvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/snuffelmarktvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:23 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sociaal-cultureel werksubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sociaal-cultureel_werksubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sociale werkvoorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sociale_werkvoorziening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSW_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet sociale werkvoorziening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008903&hoofdstuk=2&artikel=2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sollicitatieplichtontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sollicitatieplichtontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=9" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sollicitatieplichtontheffing ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/solliPlOnthWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_24" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 24 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=II&Paragraaf=2&artikel=24" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speciaal bewijs van luchtwaardigheid zelfgebouwd vliegtuig" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/specBewLuchtwZelfgebVliegt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegAmLuchtv_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Regeling amateurbouwluchtvaartuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013494&Paragraaf=3&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speciaal onderwijs klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/specOndKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=II&afdeling=1&Paragraaf=1&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speciaal onderwijs toelating" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/specOndToel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_40" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 40 Wet op de expertisecentra" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=II&afdeling=1&Paragraaf=3&artikel=40" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speelautomaat exploitatievergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/speelautomaat_exploitatievergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WKS_art_30h" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 30h Wet op de kansspelen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002469&titeldeel=VA&Paragraaf=3&artikel=30h" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speelautomatenhal exploitatievergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/speelautomatenhal_exploitatievergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "speelvoorziening kinderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/speelvoorziening_kinderen" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sportaccommodatieverhuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sportaccommodatieverhuur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sportactiviteitensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sportactiviteitensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sportactiviteitensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sportactiviteitensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sportmotoren geluidsontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sportmotoren_geluidsontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bgps_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Besluit geluidproduktie sportmotoren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007578&artikel=3" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "sportpatent" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/sportpatent" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Rsp_art_7_03" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.03 Reglement betreffende het scheepvaartpersoneel op de Rijn (RSP)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030215&deel=III&hoofdstuk=7&Paragraaf=1&sub-paragraaf=1&artikel=7.03" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "staatsexamen nt2 aanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/staatsexamenNt2Aanp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/StExBeslNL2eTaal_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Staatsexamenbesluit Nederlands als tweede taal" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006192&hoofdstuk=VI&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "staatsexamen toelating" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/staatsexamenToel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_2_72" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 2.72" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=2&Paragraaf=7&artikel=2.72" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "staatsexamen vo aanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/staatsexamenVoAanp" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UWVO_2020_art_4_34" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.34 Uitvoeringsbesluit WVO 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0045787&hoofdstuk=4&Paragraaf=7&artikel=4.34" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stadspas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stadspas" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "standplaatsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/standplaatsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:18 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stap-budget" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/STAPbudget" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subs_reg_STAP_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Subsidieregeling STAP-budget" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045419&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "starten particuliere basisschool melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strtpartbaschlmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=I&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "starten particuliere school voortgezet onderwijs melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strtpartschvomld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_art_54" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 54 Wet op het voortgezet onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002399&titeldeel=II&afdeling=II&artikel=54" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "startend ondernemerschapsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/startend_ondernemerschapsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "starterskrediet ondernemer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/starterskrediet_ondernemer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bbz_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Besluit bijstandverlening zelfstandigen 2004" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015711&hoofdstuk=II&Paragraaf=5&artikel=14" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "starterslening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/starterslening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_149" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 149 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=IX&artikel=149" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "startkwalificatieplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/startkwalPlicht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LPW_art_4b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4b Leerplichtwet 1969" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002628&Paragraaf=2a&artikel=4b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemmen per brief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemmen_per_brief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_D_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel D 3 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=D&artikel=D_3" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stempas" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stempas" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_J_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel J 7 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=J&Paragraaf=2&artikel=J_7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_B_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel B 1 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=B&artikel=B_1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_B_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel B 2 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=B&artikel=B_2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_B_2a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel B 2a Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=B&artikel=B_2a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_B_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel B 3 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=B&artikel=B_3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stemrecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stemrecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_Y_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel Y 2 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=V&hoofdstuk=Y&Paragraaf=2&artikel=Y_2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stiltegebiedontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stiltegebiedontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_omg_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale omgevingsverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stookontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stookonth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_63" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.63 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.8&artikel=10.63" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "storing draadloze apparatuur melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/storDraadlAppMeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegStoMel_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling storingsmeldingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026550&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "straatartiestoptreden ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strArtOptrOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_2_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:9 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "straatnaamgeving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/straatnaamgeving" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BAG_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet basisregistratie adressen en gebouwen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023466&hoofdstuk=1&artikel=6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafbaar feit aangifte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafbFeitAang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_161" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 161 Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Tweede&titeldeel=I&afdeling=Vierde&artikel=161" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafbeschikking verzet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafbesVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_257e" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 257e Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Tweede&titeldeel=IVa&afdeling=Vijfde&artikel=257e" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafblad inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafbladInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WJG_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Wet justitiële en strafvorderlijke gegevens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014194&titeldeel=2&afdeling=3&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafblad inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafbladInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WJG_art_39i" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 39i Wet justitiële en strafvorderlijke gegevens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014194&titeldeel=2A&afdeling=3&artikel=39i" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafblad inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafbladInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WJG_art_43" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 43 Wet justitiële en strafvorderlijke gegevens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014194&titeldeel=3&artikel=43" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "strafzaak herzieningsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/strafzHerzVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_457" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 457 Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Derde&hoofdstuk=B&titeldeel=VIII&afdeling=Eerste&artikel=457" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "stralingsartsen en deskundigen registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/stralingsartsDeskReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KEW_art_69" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 69 Kernenergiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002402&hoofdstuk=IX&artikel=69" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1;B2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "structuurvisie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/structuurvisie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3 Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=2&artikel=2.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studenten ov-vergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studOvVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_3_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.7 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=3&Paragraaf=3.2&artikel=3.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studentenreisproduct schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studReisprodSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_3_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.29 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=3&Paragraaf=3.7&artikel=3.29" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studiefinanciering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studiefinanciering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_2_13a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.13a Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=2&Paragraaf=2.4&artikel=2.13a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studiefinanciering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studiefinanciering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_2_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.14 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=2&Paragraaf=2.4&artikel=2.14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studiefinanciering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studiefinanciering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_2_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.4 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=2&Paragraaf=2.2&artikel=2.4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studiefinanciering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studiefinanciering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_2_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.8 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=2&Paragraaf=2.3&artikel=2.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "studiekosten leraren tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/studiekstLerTeg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WTOS_art_5_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.5 Wet tegemoetkoming onderwijsbijdrage en schoolkosten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012438&hoofdstuk=5&afdeling=5.1&Paragraaf=5.1.3&artikel=5.5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_4_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:21 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=4&titeldeel=4.2&afdeling=4.2.1&artikel=4:21" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_78" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 78 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=III&hoofdstuk=X&artikel=78" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "surceance van betaling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/surcbet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Fw_art_214" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 214 Faillissementswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001860&titeldeel=II&afdeling=Eerste&artikel=214" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J7" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "t100-bus goedkeuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/t100busgoedk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_voertuigen_art_6_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.6 Regeling voertuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025798&hoofdstuk=6&Paragraaf=2&artikel=6.6" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tapontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tapontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Alcoholwet_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Alcoholwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002458&Paragraaf=5&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tatoeage- of piercingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tatoeagevergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Warenwetbesl_tato_pier_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Warenwetbesluit tatoeëren en piercen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0021605&artikel=3" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxi chauffeurskaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxichkrt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bp_art_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 81 Besluit personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011982&hoofdstuk=6&Paragraaf=3&artikel=81" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxi goedkeuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxgk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_voertuigen_art_3_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.12 Regeling voertuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025798&hoofdstuk=3&afdeling=6&artikel=3.12" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxi ondernemerskaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxiondkrt" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bp_art_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 81 Besluit personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011982&hoofdstuk=6&Paragraaf=3&artikel=81" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxi-informatiekaart" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxiInfokaart" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_maxtar_taxiv_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling maximumtarief en bekendmaking tarieven taxivervoer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010998&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "M7" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxichauffeur getuigschrift" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxichgetschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bp_art_82" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 82 Besluit personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011982&hoofdstuk=6&Paragraaf=3&artikel=82" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxivergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxivergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxivervoer klacht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxivervoerKlacht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wp_art_77" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 77 Wet personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011470&hoofdstuk=V&Paragraaf=2&artikel=77" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "taxivervoersvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/taxivervoersvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wp_art_76" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 76 Wet personenvervoer 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0011470&hoofdstuk=V&Paragraaf=1&artikel=76" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "telecommunicatiewet geschilbeslechting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/telecomWetGeschBesl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tw_art_12_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12.9 Telecommunicatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009950&hoofdstuk=12&Paragraaf=12.2&sub-paragraaf=12.2.2&artikel=12.9" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "terrasvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/terrasvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:10 Model Algemene plaatselijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "terugbetaling studiefinanciering opschorting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/terugbetStuFiOpsch" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WSF_art_6_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.7 Wet studiefinanciering 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011453&hoofdstuk=6&Paragraaf=6.1&artikel=6.7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "terugkeervisum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/terugkeervisum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_2w" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2w Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=1a&afdeling=3&artikel=2w" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tewerkstellingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tewerkstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wav_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet arbeid vreemdelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007149&Paragraaf=II&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tewerkstellingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tewerkstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wav_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet arbeid vreemdelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007149&Paragraaf=II&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tewerkstellingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tewerkstverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wav_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Wet arbeid vreemdelingen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007149&Paragraaf=II&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "thuiswerkvergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/thuiswerkvergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LB_art_31a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 31a Wet op de loonbelasting 1964" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002471&hoofdstuk=V&afdeling=1&artikel=31a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "thuiszorg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/thuiszorg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tijdelijk en incidenteel werken in gereglementeerd beroep melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tijdIncWerkGeregBerMeld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AlgWetEUBerKwal_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Algemene wet erkenning EU-beroepskwalificaties" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023066&hoofdstuk=3&artikel=22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tijdelijk huisverbod" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tijdHuisverbod" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wth_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet tijdelijk huisverbod" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024649&artikel=2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tijdelijk luchtvaartterrein ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tijdelijk_luchtvaartterrein_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WLV_art_8a_51" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8a.51 Wet luchtvaart" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005555&hoofdstuk=8a&titeldeel=8A.5&artikel=8a.51" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tijdelijke opheffing geschorst kenteken" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tijdOphGeschKent" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tijdelijke opheffing geschorst kenteken bij evenement" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tijdOphGeschKentEven" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 23 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=23" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tillift" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tillift" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "toerismesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/toerismesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "toeristenbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/toeristenbelasting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_224" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 224 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=IV&hoofdstuk=XV&Paragraaf=3&artikel=224" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5;A2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "toeristenvisum" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/toeristenvisum" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VB_art_3_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3 Vreemdelingenbesluit 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011825&hoofdstuk=3&afdeling=1&artikel=3.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "toeslag toeslagenwet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/toeslagToeslagenwet" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/TW_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Toeslagenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004043&hoofdstuk=II&Paragraaf=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tolk" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tolk" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tolkvoorziening bij auditieve beperking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tolkvoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/PW_art_10g" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10g Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10g" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F4;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "transitokentekenbewijs" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/transitokent" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "trekhondenverbod ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/trekhondenverbod_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_10_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.1 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=10&artikel=10.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "trekhondenverbod ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/trekhondenverbod_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_dieren_art_10_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.1 Wet dieren" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0030250&hoofdstuk=10&artikel=10.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "trouwlocatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/trouwlocatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_63" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 63 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=5&afdeling=4&artikel=63" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "tweede lerarenopleiding subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/tweedeLerarenOplSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subsreg_tweede_lerarenopl_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Subsidieregeling tweede lerarenopleiding" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043210&hoofdstuk=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitkering vervolgingsslachtoffers 1940-1945" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitkVervSlchtoff4045" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WUV_art_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7 Wet uitkeringen vervolgingsslachtoffers 1940-1945" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002844&hoofdstuk=II&Paragraaf=1&artikel=7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitlening gemeentelijke materialen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitlening_gemeentelijke_materialen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7A_art_1777" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1777 Burgerlijk Wetboek Boek 7A" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006000&boek=7a&titeldeel=Dertiende&afdeling=Eerste&artikel=1777" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitspraak bestuursrechter herzieningsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitsprBestRechtHerzVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_119" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:119 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.6&artikel=8:119" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitspraak huurcommissie verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitsprHuurcommVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Uw_HW_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Uitvoeringswet huurprijzen woonruimte" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014315&hoofdstuk=II&Paragraaf=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitspraak huurcommissie verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitsprHuurcommVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Uw_HW_art_4a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4a Uitvoeringswet huurprijzen woonruimte" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014315&hoofdstuk=II&Paragraaf=2&artikel=4a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitspraken huurcommisie inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitsprhuurcommInz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Uw_HW_art_3i" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3i Uitvoeringswet huurprijzen woonruimte" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014315&hoofdstuk=II&Paragraaf=1&artikel=3i" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uitvliegontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uitvlOntheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_63" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:63 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "urgentiebewijs woning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/urgBewWoning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_12" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 12 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=2&Paragraaf=2&artikel=12" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uwv reiskostenvergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uwvReiskVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BRKostVergUWV_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel kostenvergoeding UWV" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0028578&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "uwv-inzagerecht en correctieverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/uwvInzRechtCorrVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_inz_corr_UWV_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Regeling inzage- en correctierecht UWV 2018" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040934&Paragraaf=2&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "I1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vaarvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vaarvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vaarweggebruik" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vaarweggebruik" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BPR_art_1_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.21 Binnenvaartpolitiereglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003628&deel=I&hoofdstuk=1&artikel=1.21" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vacature" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vacature" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vaderschapsontkenning verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vaderschapsontkenning_verklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_200" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 200 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=11&afdeling=2&artikel=200" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vakantiemelding ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vakMldWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UitkReglWW2015_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Uitkeringsreglement WW 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0036710&Paragraaf=3&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vakantierecht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vakantierecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_634" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 634 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=10&afdeling=3&artikel=634" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6;K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vakbekwaamheid certificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vakbekwCert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbo_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Arbeidsomstandighedenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010346&hoofdstuk=4&artikel=20" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3;H5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vakbekwaamheidseis" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vakbekwEis" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "valkeniersakte" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/valkeniersakte" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_3_30" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.30 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=3&Paragraaf=3.6&artikel=3.30" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vennootschapsbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vennootschapsbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Vpb_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de vennootschapsbelasting 1969" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002672&hoofdstuk=I&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ventontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ventonth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:15 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ventvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ventvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "veranderen weg vergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/veranderen_weg_vergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_w_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale wegenverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verblijfsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verblijfsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=3&afdeling=2&artikel=13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verblijfsvergunning regulier voor bepaalde tijd" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verblvergregbeptijd" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VW_art_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 14 Vreemdelingenwet 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011823&hoofdstuk=3&afdeling=3&Paragraaf=1&artikel=14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verbod op permanente nachtarbeid ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verbodPermNachtarbOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ATW_art_5_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:14 Arbeidstijdenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007671&hoofdstuk=5&Paragraaf=5.4&artikel=5:14" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verbruiksbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verbruiksbel" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wvad_art_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1 Wet op de verbruiksbelasting van alcoholvrije dranken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005802&hoofdstuk=I&artikel=1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "L2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verduurzaming en onderhoud huurwoning subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verduurzOnderhoudHuurwSubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Subsreg_verduurz_huurw_art_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8 Subsidieregeling Verduurzaming en Onderhoud Huurwoningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0046234&artikel=8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verduurzaming verenigingen van eigenaars subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verduurzVveSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SubsidieregVerduurzVVE_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Subsidieregeling Verduurzaming voor Verenigingen van Eigenaars" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0047596&hoofdstuk=I&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vereisten benoeming leraar vo ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vereisBenLerVoOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_7_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, art. 7.11" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=7&Paragraaf=2&artikel=7.11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vereniging stamboekvee erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verstamverk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_1012_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EU) 2016/1012 van het Europees Parlement en de Raad van 8 juni 2016 betreffende de zoötechnische en genealogische voorwaarden voor het fokken van, de handel in en de binnenkomst in de Unie van raszuivere fokdieren, hybride fokvarkens en levende producten daarvan en tot wijziging van Verordening (EU) nr. 652/2014, de Richtlijnen 89/608/EEG en 90/425/EEG van de Raad en tot intrekking van bepaalde handelingen op het gebied van dierfokkerij (Fokkerijverordening), art. 4" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R1012&from=NL#d1e1610-66-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verhuismelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verhuismelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_BRP_art_2_39" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.39 Wet basisregistratie personen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0033715&hoofdstuk=2&afdeling=1&Paragraaf=5&artikel=2.39" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verhuurdersverklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verhuurdersverklaring" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeersbesluit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeersbesluit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=II&Paragraaf=2&artikel=18" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeersbesluit milieuzone" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeersbesluitMilieuzone" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=II&Paragraaf=2&artikel=18" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeersboete" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeersboete" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wahv_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet administratiefrechtelijke handhaving verkeersvoorschriften" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004581&hoofdstuk=II&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeersbrigadier" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeersbrigadier" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_56" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 56 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=V&artikel=56" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeerscirculatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeerscirculatie" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verkeersregelaar" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verkeersregelaar" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BABW_art_56" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 56 Besluit administratieve bepalingen inzake het wegverkeer (BABW)" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004826&hoofdstuk=V&artikel=56" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring afgelegd examen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklAfgelExamen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UWVO_2020_art_3_51" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.51 Uitvoeringsbesluit WVO 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0045787&hoofdstuk=3&Paragraaf=5&artikel=3.51" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring afgelegd examen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklAfgelExamen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/UWVO_2020_art_4_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.33 Uitvoeringsbesluit WVO 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0045787&hoofdstuk=4&Paragraaf=6&artikel=4.33" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring omtrent gedrag (vog)" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklaring_omtrent_gedrag_(vog)" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wjsg_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Wet justitiële en strafvorderlijke gegevens" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0014194&titeldeel=2&afdeling=5&artikel=28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;B8" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring positie molukkers" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklaring_positie_molukkers" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPosMol_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Wet betreffende de positie van Molukkers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003052&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring van afstand nederlandse nationaliteit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklaring_van_afstand_nederlandse_nationaliteit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RWN_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Rijkswet op het Nederlanderschap" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003738&hoofdstuk=5&artikel=15" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verklaring van huwelijksbevoegdheid" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verklaring_van_huwelijksbevoegdheid" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ovk_verkl_huwbev" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Overeenkomst betreffende de afgifte van een verklaring van huwelijksbevoegdheid, München, 05-09-1980" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBV0003766&z=1985-02-01&g=1985-02-01" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verlof tot begraven" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verlBegraven" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlb_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Wet op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005009&hoofdstuk=II&Paragraaf=2&artikel=11" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vermoeden van besmetting melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vermoeden_van_besmetting_melding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wpg_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Wet publieke gezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024705&hoofdstuk=V&Paragraaf=2&artikel=22" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verontreinigingsheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verontreinigingsheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_7_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.2 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=7&Paragraaf=1&artikel=7.2" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verordening gemeentefunctionaris goedkeuring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verordening_gemeentefunctionaris_goedkeuring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_99" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 99 Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=II&hoofdstuk=VI&artikel=99" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verslavingszorg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verslavingszorg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wmo_art_2_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=2&artikel=2.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "versterking gebouwen groningen subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verst_geb_gron_subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SubsReg_verst_geb_Gron_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Subsidieregeling versterking gebouwen Groningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044145&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verstrekking overheidsinformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verstrekking_overheidsinformatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Woo_art_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.1 Wet open overheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045754&hoofdstuk=3&artikel=3.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vervangend kentekenbewijs of tenaamstellingscode" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vervKentBewTenStCode" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 55 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=IV&Paragraaf=4b&artikel=55" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vervangend opleidingsdocument" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vervOplDoc" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_11a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.11a Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=1&Paragraaf=1&artikel=7.11a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vervangende leerplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vervangende_leerplicht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/LPW_art_3a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3a Leerplichtwet 1969" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002628&Paragraaf=2&artikel=3a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vervoersdocumenten stoffelijk overschot" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vervoersdocumenten_stoffelijk_overschot" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Blb_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Besluit op de lijkbezorging" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0009080&Paragraaf=6&artikel=11" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vervreemding erfgoed zienswijze" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vervrErfgoedZiensw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Erfgoedwet_art_4_17" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.17 Erfgoedwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037521&hoofdstuk=4&Paragraaf=4.2&artikel=4.17" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verwerking dierlijke bijproducten erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verwdierlbijproderk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1069_2009_art_24" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) nr. 1069/2009 van het Europees Parlement en de Raad van 21 oktober 2009 tot vaststelling van gezondheidsvoorschriften inzake niet voor menselijke consumptie bestemde dierlijke bijproducten en afgeleide producten en tot intrekking van Verordening (EG) nr. 1774/2002 (verordening dierlijke bijproducten), art. 24" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32009R1069&from=NL#d1e3022-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verwerking dierlijke bijproducten melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verwdierlbijprodmld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_1069_2009_art_23" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EG) nr. 1069/2009 van het Europees Parlement en de Raad van 21 oktober 2009 tot vaststelling van gezondheidsvoorschriften inzake niet voor menselijke consumptie bestemde dierlijke bijproducten en afgeleide producten en tot intrekking van Verordening (EG) nr. 1774/2002 (verordening dierlijke bijproducten), art. 23" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32009R1069&from=NL#d1e3022-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verwerking persoonsgegevens verantwoordingsplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verwpersgegverantwpl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_679_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Verordening (EU) 2016/679 van het Europees Parlement en de Raad van 27 april 2016 betreffende de bescherming van natuurlijke personen in verband met de verwerking van persoonsgegevens en betreffende het vrije verkeer van die gegevens en tot intrekking van Richtlijn 95/46/EG (algemene verordening gegevensbescherming), art. 5" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0679&from=NL#d1e1369-1-1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "J11" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verwijdering asbestdaken subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verwAsbestdakSubs" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/SRVerwAsb_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Subsidieregeling verwijderen asbestdaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037274&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzekeringsplicht sociale verzekeringen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzekPlSocVerzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wsfv_art_64" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 64 Wet financiering sociale verzekeringen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0017745&hoofdstuk=5&artikel=64" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzekeringsplicht volksverzekeringen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bkvv_1999_art_21a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21a Besluit uitbreiding en beperking kring verzekerden volksverzekeringen 1999" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010182&Paragraaf=3&artikel=21a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzekeringsplicht volksverzekeringen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bkvv_1999_art_21b" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21b Besluit uitbreiding en beperking kring verzekerden volksverzekeringen 1999" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010182&Paragraaf=3&artikel=21b" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzekeringsplicht volksverzekeringen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bkvv_1999_art_21c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21c Besluit uitbreiding en beperking kring verzekerden volksverzekeringen 1999" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010182&Paragraaf=3&artikel=21c" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzekeringsplicht volksverzekeringen ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Bkvv_1999_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Besluit uitbreiding en beperking kring verzekerden volksverzekeringen 1999" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010182&Paragraaf=3&artikel=22" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzet tegen uitspraak bestuursrechter" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzetUitsprBestRecht" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_55" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:55 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.2&afdeling=8.2.4&artikel=8:55" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzoek overheidsinformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzoek_overheidsinformatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Woo_art_4_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.1 Wet open overheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045754&hoofdstuk=4&artikel=4.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzoek overheidsinformatie inlichtingen- en veiligheidsdiensten" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzoek_overheidsinformatie_IenVD" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wiv_2017_art_80" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 80 Wet op de inlichtingen- en veiligheidsdiensten 2017" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0039896&hoofdstuk=5&Paragraaf=5.3&artikel=80" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "verzoekschrift" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/verzoekschrift" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/GW_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Grondwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001840&hoofdstuk=1&artikel=5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "veterinair exportcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vetexpcert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_429" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 114 Verordening (EU) 2016/429 van het Europees Parlement en de Raad van 9 maart 2016 betreffende overdraagbare dierziekten en tot wijziging en intrekking van bepaalde handelingen op het gebied van diergezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0429&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "veterinair exportcertificaat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vetexpcert" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EU_2016_429" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 143 Verordening (EU) 2016/429 van het Europees Parlement en de Raad van 9 maart 2016 betreffende overdraagbare dierziekten en tot wijziging en intrekking van bepaalde handelingen op het gebied van diergezondheid" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:32016R0429&from=NL" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "veterinair laboratorium erkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vetlaberk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_erkenning_veterin_lab_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Regeling erkenning en aanwijzing veterinaire laboratoria" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019575&Paragraaf=1&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vijfenveertigplusser ontwikkeladvies" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vijfenveerPlusOntwAdv" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Tijd_sub_ontwadv" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Tijdelijke subsidieregeling ontwikkeladvies vijfenveertigplussers" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0040282&z=2018-12-28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "visvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/visvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Visserijwet_1963_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Visserijwet 1963" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002416&hoofdstuk=V&afdeling=I&Paragraaf=4&artikel=21" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vluchtelingenpaspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vluchtelingenpaspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=II&Paragraaf=2&artikel=11" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voedselbank" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voedselbank" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voertuig te koop aanbieden op openbare weg ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voertuig_te_koop_aanbieden_op_openbare_weg_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_5_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:3 Model Algemene plaatselijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voertuigen bedrijfsvoorraaderkenning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voertbedrvoorrerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_62" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 62 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=IV&Paragraaf=5&artikel=62" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vogel preparatiemelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/luchtvVogelPrepMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Besl_natuurbescherming_art_3_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.26 Besluit natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0038662&hoofdstuk=3&titeldeel=3.4&Paragraaf=3.4.2&artikel=3.26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "volkstuinverhuur" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/volkstuinverhuur" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "volmachtbewijs verkiezingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/volmachtbewijs_verkiezingen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_L_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel L 14 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=L&Paragraaf=3&artikel=L_14" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "volmachtbewijs verkiezingen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/volmachtbewijs_verkiezingen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KW_art_L_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel L 8 Kieswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004627&afdeling=II&hoofdstuk=L&Paragraaf=2&artikel=L_8" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "volwasseneneducatiesubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/volwasseneneducatiesubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voogdbenoeming verzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voogdbenVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_299" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 299 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=6&Paragraaf=3&artikel=299" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voogdij aantekening gezagsregister" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voogdAantGezReg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_292" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 292 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=14&afdeling=6&Paragraaf=2&artikel=292" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voor- en vroegschoolse educatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorVrSchEducatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_166" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 166 Wet op het primair onderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=IV&afdeling=10&artikel=166" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voorbereidingsbesluit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorbereidingsbesluit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wro_art_3_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.7 Wet ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0020449&hoofdstuk=3&afdeling=3.2&artikel=3.7" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voorkeursrechtaanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorkRechtAanw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVGem_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet voorkeursrecht gemeenten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003391&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voorkeursrechtaanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorkRechtAanw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVGem_art_9a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 9a Wet voorkeursrecht gemeenten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003391&artikel=9a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voorlopige voorkeursrechtaanwijzing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorlVoorkRechtAanw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVGem_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Wet voorkeursrecht gemeenten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003391&artikel=6" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voorlopige voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorlVoorz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_8_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8:81 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=8&titeldeel=8.3&artikel=8:81" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voornaamwijziging" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voornaamwijziging" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_1_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Burgerlijk Wetboek Boek 1" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002656&boek=1&titeldeel=2&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vooropleidingseisen hoger onderwijs vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vooroplEisHoVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.28 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=2&Paragraaf=1&artikel=7.28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vooropleidingseisen hoger onderwijs vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vooroplEisHoVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WHW_art_7_29" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.29 Wet op het hoger onderwijs en wetenschappelijk onderzoek" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005682&hoofdstuk=7&titeldeel=2&Paragraaf=1&artikel=7.29" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vooroverleg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voorovrlg" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "voortgezet onderwijs aanmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/voAanm" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_8_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.8 Wet voortgezet onderwijs 2020" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=8&Paragraaf=1&artikel=8.8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "E1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vordering rijbewijs klaagschrift" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vordRijbewKlaagschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_164" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 164 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=IX&artikel=164" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vos-inrichting gegevenslevering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vos-inrichting_gegevenslevering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Barim" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Activiteitenbesluit milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022762" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vreemdeling verhuismelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vreemdVerhMld" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VB_art_4_37" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.37 Vreemdelingenbesluit 2000" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011825&hoofdstuk=4&afdeling=3&Paragraaf=1&artikel=4.37" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D1;D4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vreemdelingenpaspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vreemdelingenpaspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Ppw_art_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 11 Paspoortwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005212&hoofdstuk=II&Paragraaf=2&artikel=11" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijkomen woonruimtemelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vrijkomen_woonruimtemelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_20" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 20 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=3&artikel=20" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige inkoop aow" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwInkAow" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AOW_art_38" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 38 Algemene Ouderdomswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002221&hoofdstuk=IV&artikel=38" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering anw" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzAnw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Anw_art_63a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 63a Algemene nabestaandenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007795&hoofdstuk=5&artikel=63a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "G4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering aow" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzAow" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/AOW_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Algemene Ouderdomswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002221&hoofdstuk=IV&artikel=35" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering wao" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWao" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WAO_art_81" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 81 Wet op de arbeidsongeschiktheidsverzekering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002524&hoofdstuk=VI&artikel=81" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering wia" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWia" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=2&Paragraaf=2.2&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering ww" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_53" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 53 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=III&artikel=53" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwillige verzekering ziektewet" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VrijwVerzZw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ZW_art_64" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 64 Ziektewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001888&afdeling=Tweede&hoofdstuk=IV&artikel=64" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwilligersverzekering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vrijwilligersverzekering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_2_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2.2 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=2&artikel=2.2.2" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrijwilligerswerksubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vrijwilligerswerksubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vrouwenopvang" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vrouwenopvang" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_1_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=1&Paragraaf=2&artikel=1.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwapen uitvoervergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwapen_uitvoerverg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Verord_EG_258_2012_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Verordening (EU) Nr. 258/2012 van het Europees Parlement en de Raad van 14 maart 2012" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://eur-lex.europa.eu/legal-content/NL/TXT/?uri=CELEX%3A32012R0258" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwerk ontbrandingsmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwerk_ontbrandingsmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VWB_art_3b_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3B.4 Vuurwerkbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013360&hoofdstuk=3b&artikel=3B.4" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwerk ontbrandingstoestemming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwerk_ontbrandingstoestemming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VWB_art_3b_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3B.1 Vuurwerkbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013360&hoofdstuk=3b&artikel=3B.1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwerk toepassingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwerk_toepassingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/VWB_art_3b_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3B.1 Vuurwerkbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013360&hoofdstuk=3b&artikel=3B.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwerk verkoop en opslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwerk_verkoop_opslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Barim_par_4-1_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Paragraaf 4.1.2 Activiteitenbesluit milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022762&hoofdstuk=4&afdeling=4.1&Paragraaf=4.1.2" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "vuurwerkverkoopvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/vuurwerkverkoopvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Mod_Apv_art_2_72" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2:72 Model Algemene plaatselijke verordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wa-verzekeringsplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waVerzPl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WAM_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet aansprakelijkheidsverzekering motorrijtuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002415&hoofdstuk=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B5;C3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wa-verzekeringsplicht vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waVerzPlVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WAM_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Wet aansprakelijkheidsverzekering motorrijtuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002415&hoofdstuk=2&artikel=18" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waarborgfonds motorverkeer schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wbFndsMotVerkSchVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WAM_art_25" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 25 Wet aansprakelijkheidsverzekering motorrijtuigen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002415&hoofdstuk=4&artikel=25" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wajong-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wajong-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wajong_art_1a_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1a:2 Wet arbeidsongeschiktheidsvoorziening jonggehandicapten" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008657&hoofdstuk=1a&Paragraaf=2&artikel=1a:2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wapenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wapenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WWM_art_13" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 13 Wet wapens en munitie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008804&Paragraaf=3&artikel=13" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wapenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wapenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WWM_art_28" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 28 Wet wapens en munitie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008804&Paragraaf=6&artikel=28" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wapenvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wapenvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WWM_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet wapens en munitie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0008804&Paragraaf=1&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterbeheer schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterbeheer_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_7_14" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.14 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=7&Paragraaf=3&artikel=7.14" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterbeheerplan" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterbeheerplan" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_4_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.6 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=4&Paragraaf=3&artikel=4.6" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterbeheerprogramma" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterbeheerprogramma" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_4_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.6 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=4&Paragraaf=3&artikel=4.6" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterbeschermingszone-ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterbeschermingszone-ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pro_mil_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale milieuverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterbodem verontreiniging melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterbodem_verontreiniging_melding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_6_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.9 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=6&Paragraaf=1&artikel=6.9" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watergangonderhoud" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watergangonderhoud" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/modelkeur_art_4_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.2 modelkeur 2013" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterlegger" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterlegger" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_5_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5.1 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=5&Paragraaf=1&artikel=5.1" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watermelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/modelkeur_art_3_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.9 modelkeur 2013" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterschapsbelasting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterschapsbelasting" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "D2;L5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watersysteemheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watersysteemheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_117" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 117 Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=IV&hoofdstuk=XVII&artikel=117" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watertoets" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watertoets" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/bro_art_3_1_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.1.1 Besluit ruimtelijke ordening" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0023798&hoofdstuk=3&Paragraaf=3.1&artikel=3.1.1" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watervergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watervergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_6_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.2 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=6&Paragraaf=1&artikel=6.2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watervergunning registratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watervergunning_registratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WaB_art_6_11" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.11 Waterbesluit" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026872&hoofdstuk=6&Paragraaf=5&artikel=6.11" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "watervergunning schadevergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/watervergunning_schadevergoeding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wtw_art_7_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 7.18 Waterwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0025458&hoofdstuk=7&Paragraaf=3&artikel=7.18" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "waterverkeersbesluit" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/waterverkeersbesluit" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Scheepvaartverkeerswet_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Scheepvaartverkeerswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004364&hoofdstuk=2&Paragraaf=2&artikel=5" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wedstrijd op de weg" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wedstrijd_op_de_weg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_148" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 148 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VII&artikel=148" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;D2" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wegenheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wegenheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_122a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 122a Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=IV&hoofdstuk=XVIIa&artikel=122a" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wegenverkeerswetontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wegenverkeerswetontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_149" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 149 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=VII&artikel=149" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1;C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wegsleepregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wegsleepreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVW_art_173" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 173 Wegenverkeerswet 1994" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006622&hoofdstuk=X&artikel=173" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "welstandsadvies" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/welstandsadvies" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wabo_art_2_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.10 Wet algemene bepalingen omgevingsrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0024779&hoofdstuk=2&Paragraaf=2.3&artikel=2.10" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "welzijnswerksubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/welzijnswerksubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "werkbegeleiding werkzoekenden" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/werkbegeleiding_werkzoekenden" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_10da" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10da Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=2&Paragraaf=2.1&artikel=10da" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "werkplekaanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/werkplekaanpassing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Arbo_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Arbeidsomstandighedenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0010346&hoofdstuk=2&artikel=3" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K4" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "werktijden aanpassingsverzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/werktijdenAanpVerz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wfw_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet flexibel werken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0011173&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "werktijdenregeling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/werktijdreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ATW" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Arbeidstijdenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007671" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "werkzoekende inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/werkzInschr" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=II&Paragraaf=2&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wet milieubeheermelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wet_milieubeheermelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_8_41" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 8.41 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=8&Paragraaf=8.1&artikel=8.41" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wet wijziging geregistreerd geslacht tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/beleid_tegemoetk_wijz_gesl_registratie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Beleidsr_tegemoetk_wijz_gesl_registratie" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel tegemoetkoming Wet wijziging geregistreerd geslacht 1985–2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0045577&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wezenuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wezenuitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Anw_art_26" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 26 Algemene nabestaandenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007795&hoofdstuk=3&afdeling=I&Paragraaf=5&artikel=26" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wia-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wia-uitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WIA_art_47" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 47 Wet werk en inkomen naar arbeidsvermogen" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0019057&hoofdstuk=6&Paragraaf=6.1&artikel=47" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wijnproducentenregistratie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wijnprodreg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Reg_wijn_en_olijfolie_art_3a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3a Regeling wijn en olijfolie" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035180&hoofdstuk=1&artikel=3a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wijziging voertuiggegevens melding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wijzVoertGegMelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/KR_art_34" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 34 Kentekenreglement" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0006951&hoofdstuk=4&artikel=34" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wildschade" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wildschade" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_natuurbescherming_art_6_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6.1 Wet natuurbescherming" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0037552&hoofdstuk=6&artikel=6.1" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "winkeltijdeninformatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/winkeltijdeninformatie" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "winkeltijdenontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/winkeltijdenontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Winkeltijdenwet_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Winkeltijdenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007952&artikel=3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wlz-indicatie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wlzIindicatie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlz_art_3_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.2.1 Wet langdurige zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035917&hoofdstuk=3&Paragraaf=2&artikel=3.2.1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wlz-zorg in buitenland vergoeding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wlzZorgBuitVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wlz_art_3_3_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3.3.5 Wet langdurige zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035917&hoofdstuk=3&Paragraaf=3&artikel=3.3.5" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wmo-voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wmo-voorziening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_2_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.2.3 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=2&artikel=2.2.3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wmo-voorziening" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wmo-voorziening" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woning zoeken inschrijving" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wnZkIns" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_5" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=1&Paragraaf=3&artikel=5" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woningaanpassing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woningaanpassing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_2_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2.3.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=2&Paragraaf=3&artikel=2.3.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woningbemiddelingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wonBemVerg" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke verordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woningen samenvoegsubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woningen_samenvoegsubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woningsluiting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woningsluiting" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Gemw_art_174a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 174a Gemeentewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005416&titeldeel=III&hoofdstuk=XI&artikel=174a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonconsumentenorganisatie subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonconsumentenorganisatie_subsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonkostentoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonkostentoeslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=4&Paragraaf=4.1&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonomgeving inrichting" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonomgeving_inrichting" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonruimte omzettingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonruimte_omzettingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=4&Paragraaf=1&artikel=21" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonruimte splitsingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonruimte_splitsingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Huisvw_art_21" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 21 Huisvestingswet 2014" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035303&hoofdstuk=4&Paragraaf=1&artikel=21" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "N1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonsubsidie ouderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonsubsidie_ouderen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/gem_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "gemeentelijke subsidieverordening" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonvoorziening gehandicapten en ouderen" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonvoorziening_gehandicapten_en_ouderen" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WMO_2015_art_1_2_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.2.1 Wet maatschappelijke ondersteuning 2015" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0035362&hoofdstuk=1&Paragraaf=2&artikel=1.2.1" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonwagenstandplaats" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonwagenstandplaats" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/BW_Boek_7_art_201" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 201 Burgerlijk Wetboek Boek 7" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005290&boek=7&titeldeel=4&afdeling=1&artikel=201" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonzorgarrangement subsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woonzorgarrSubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Stimreg_wonen_en_zorg_art_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 1.3 Stimuleringsregeling Wonen en Zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0042041&hoofdstuk=1&artikel=1.3" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woonzorgcentrum of serviceflat" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wnzCntSrvFlat" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woz-beschikking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woz-beschikking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOZ_art_22" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 22 Wet waardering onroerende zaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007119&hoofdstuk=IV&artikel=22" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woz-taxatieverslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Uitv_reg_iw_WOZ_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Uitvoeringsregeling instructie waardebepaling Wet waardering onroerende zaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007165&artikel=6" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woz-taxatieverslag kopie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag_kopie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOZ_art_40" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 40 Wet waardering onroerende zaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007119&hoofdstuk=VII&artikel=40" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "woz-taxatieverslag kopie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag_kopie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WOZ_art_40a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 40a Wet waardering onroerende zaken" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007119&hoofdstuk=VII&artikel=40a" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "DigiDMacht": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wraking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wraking" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Sv_art_512" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 512 Wetboek van Strafvordering" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001903&boek=Vierde&titeldeel=IV&artikel=512" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "wsnp-verklaring" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wsnp-verklaring" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Fw_art_285" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 285 Faillissementswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001860&titeldeel=III&afdeling=Eerste&artikel=285" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ww-uitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wwUitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 15 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=II&Paragraaf=1&artikel=15" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ww-uitkering bij betalingsonmacht werkgever" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/wwUitkBetOnmWG" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WW_art_61" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 61 Werkloosheidswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0004045&hoofdstuk=IV&artikel=61" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9;B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zakenpaspoort" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zakenpaspoort" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pp_uitvreg_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Paspoortuitvoeringsregeling Buitenland 2001" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0012810&hoofdstuk=I&Paragraaf=3&artikel=3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "A1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zeebrief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zeebrief" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zeebrievenwet_art_6a" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6a Zeebrievenwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001933&artikel=6a" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "C5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zelf aangebrachte voorziening tegemoetkoming" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zelf_aangebr_voorz_tegemoetkoming" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Beleidsr_teg_zelf_aangebr_vz_Gron_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Beleidsregel tegemoetkoming zelf aangebrachte voorzieningen huurders Groningen" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0046656&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ziekenhuisafvalverwerking" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zhuisafvverw" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Richtl_decontaminapp_ziekenhuisafval" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Richtlijn decontaminatie apparatuur ziekenhuisafval" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0022549" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ziekenvervoer" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ziekenvervoer" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_10" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=3&Paragraaf=3.1&artikel=10" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ziektekostenverzekering collectief" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zkKstVerzCol" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Pw_art_35" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 35 Participatiewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0015703&hoofdstuk=4&Paragraaf=4.1&artikel=35" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "ziektewetuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ziektewetuitkering" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/ZW_art_19" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 19 Ziektewet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0001888&afdeling=Tweede&artikel=19" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zienswijze" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zienswijze" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Awb_art_3_15" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:15 Algemene wet bestuursrecht" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005537&hoofdstuk=3&afdeling=3.4&artikel=3:15" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_155" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet op de expertisecentra, artikel 155" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=IV&afdeling=10&artikel=155" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_175" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet op het primair onderwijs, artikel 175" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=IV&afdeling=11&artikel=175" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_7_31" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, artikel 7.31" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=7&Paragraaf=6&artikel=7.31" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs geschiktheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_4_2_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4.2.4 Wet educatie en beroepsonderwijs" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=4&titeldeel=2&artikel=4.2.4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs geschiktheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEB_art_4_2_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet educatie en beroepsonderwijs, art. 4.2.4 " - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0007625&hoofdstuk=4&titeldeel=2&artikel=4.2.4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs geschiktheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WEC_art_152" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet op de expertisecentra, artikel 152" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0003549&titeldeel=IV&afdeling=10&artikel=152" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs geschiktheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WPO_art_172" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet op het primair onderwijs, artikel 172" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0003420&hoofdstuk=I&titeldeel=IV&afdeling=11&artikel=172" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zij-instromer onderwijs geschiktheidsonderzoek" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/WVO_2020_art_7_27" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Wet voortgezet onderwijs 2020, artikel 7.27" - }, - "Grondslaglink": { - "type": "uri", - "value": "http://wetten.overheid.nl/jci1.3:c:BWBR0044212&hoofdstuk=7&Paragraaf=6&artikel=7.27" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B3" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zondagsrustverstoring ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zondagsrustverstoring_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zondagswet_art_3" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3 Zondagswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002120&artikel=3" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zondagsrustverstoring ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zondagsrustverstoring_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zondagswet_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Zondagswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002120&artikel=4" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgaanbiedersmelding" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgaanbiedersmelding" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_toetr_zorgaanb_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet toetreding zorgaanbieders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043797&hoofdstuk=2&Paragraaf=1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Melding": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorginstellingtoelatingsvergunning" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorginstellingtoelatingsvergunning" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wet_toetr_zorgaanb_art_4" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4 Wet toetreding zorgaanbieders" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0043797&hoofdstuk=2&Paragraaf=3&artikel=4" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Dienstenwet": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgplicht riolering ontheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgplicht_riolering_ontheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wm_art_10_33" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10.33 Wet milieubeheer" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0003245&hoofdstuk=10&titeldeel=10.5&artikel=10.33" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgtoeslag" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgtoeslag" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wzt_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Wet op de zorgtoeslag" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018451&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgverlof" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_4_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 4:1 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=4&Paragraaf=1&artikel=4:1" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6;K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgverlof" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_5_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:1 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=5&afdeling=1&Paragraaf=1&artikel=5:1" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6;K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgverlof" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_5_9" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 5:9 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=5&afdeling=2&Paragraaf=1&artikel=5:9" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6;K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgverzekeringsplicht" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgverzPl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=2&Paragraaf=2.1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1;B5" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgverzekeringsplicht vrijstelling" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgverzPlVrijst" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Zvw_art_2" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 2 Zorgverzekeringswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0018450&hoofdstuk=2&Paragraaf=2.1&artikel=2" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "F1;B9" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zorgvoorzieningensubsidie" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zorgvoorzieningensubsidie" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/pr_sub_vo" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "provinciale subsidieverordening" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Subsidie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zuiveringsheffing" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zuiveringsheffing" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wschw_art_122c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 122c Waterschapswet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0005108&titeldeel=IV&hoofdstuk=XVIIb&artikel=122c" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Autonomie": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwakalcoholhoudende-drankverkoop" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwAlcDrankVerk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Alcoholwet_art_18" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 18 Alcoholwet" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002458&Paragraaf=3&artikel=18" - }, - "Gemeente": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwangerschaps- en bevallingsuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_3_7" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:7 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=3&afdeling=2&Paragraaf=1&artikel=3:7" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwangerschaps- en bevallingsuitkering" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalUitk" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_3_8" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:8 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=3&afdeling=2&Paragraaf=1&artikel=3:8" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Aanvraag": { - "type": "literal", - "value": "X" - }, - "Verplichting": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B6" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwangerschaps- en bevallingsverlof" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalVerl" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Wazo_art_3_1" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 3:1 Wet arbeid en zorg" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0013008&hoofdstuk=3&afdeling=1&Paragraaf=1&artikel=3:1" - }, - "Rijk": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "B9;B6;K1" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwemwater" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwemwater" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/RegHygVeiBadZwe_art_6" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 6 Regeling hygiëne en veiligheid badinrichtingen en zwemgelegenheden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0026894&Paragraaf=4&artikel=6" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Waterschap": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - }, - { - "UniformeProductnaam": { - "xml:lang": "nl", - "type": "literal", - "value": "zwemwater aanwijzing inzage" - }, - "URI": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/zwemwater_aanwijzing_inzage" - }, - "Grondslag": { - "type": "uri", - "value": "http://standaarden.overheid.nl/owms/terms/Whvbz_art_10c" - }, - "Grondslaglabel": { - "xml:lang": "nl", - "type": "literal", - "value": "Artikel 10c Wet hygiëne en veiligheid badinrichtingen en zwemgelegenheden" - }, - "Grondslaglink": { - "type": "uri", - "value": "https://wetten.overheid.nl/jci1.3:c:BWBR0002660&artikel=10c" - }, - "Provincie": { - "type": "literal", - "value": "X" - }, - "Burger": { - "type": "literal", - "value": "X" - }, - "Bedrijf": { - "type": "literal", - "value": "X" - }, - "Medebewind": { - "type": "literal", - "value": "X" - }, - "SDG": { - "type": "literal", - "value": "" - } - } - ] - } -}; diff --git a/packages/upl/dist/build/UPL-key-value.d.ts b/packages/upl/dist/build/UPL-key-value.d.ts deleted file mode 100644 index fa9a505b..00000000 --- a/packages/upl/dist/build/UPL-key-value.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -export declare const uplKeyValues: { - uri: string; - value: string; - uuid: string; -}[]; diff --git a/packages/upl/dist/build/UPL-key-value.js b/packages/upl/dist/build/UPL-key-value.js deleted file mode 100644 index 58bc0888..00000000 --- a/packages/upl/dist/build/UPL-key-value.js +++ /dev/null @@ -1,6205 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.uplKeyValues = void 0; -exports.uplKeyValues = [ - { - "uri": "http://standaarden.overheid.nl/owms/terms/UPL-naam_nog_niet_beschikbaar", - "value": "UPL-naam nog niet beschikbaar", - "uuid": "6f54032e-3cd2-48c5-810a-4ec02310af66" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/AangifteVertrekBuitenland", - "value": "aangifte vertrek buitenland", - "uuid": "293ed208-33db-46bc-b94a-2d22c52c105c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanleunwoning", - "value": "aanleunwoning", - "uuid": "09138f0a-c12a-4507-a263-aa2348ffe328" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanpZelfbVliegtMeld", - "value": "aanpassing zelfgebouwd vliegtuig melding", - "uuid": "e8bd892c-9944-414f-b331-89275c39cb38" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanschrijving", - "value": "aanschrijving", - "uuid": "b10eb56a-68de-4159-8a69-aae43e617c87" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanschrijving", - "value": "aanschrijving", - "uuid": "b468e7d5-1f11-439f-a9aa-c44eca4be93b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanschrijving", - "value": "aanschrijving", - "uuid": "67b64aec-b9bc-4563-8842-bae79096e944" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aansprStOverh", - "value": "aansprakelijkstelling overheid", - "uuid": "42d161c7-bc6e-4c2e-af4c-a319f9991390" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanvBeursKwijtsch", - "value": "aanvullende beurs kwijtschelding", - "uuid": "50c06c42-2084-4f26-8b05-cfb08301fd82" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanvInkVzOuder", - "value": "aanvullende inkomensvoorziening ouderen", - "uuid": "3b087979-faef-4446-8b38-15b4006d4d18" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanwInzam", - "value": "aanwijzing inzamelaar", - "uuid": "0b71d17f-bebe-4626-a60a-263ede0b5561" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aanzegtermijn", - "value": "aanzegtermijn", - "uuid": "e59e521e-e192-4949-ae45-c1b791133e74" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aardbevb_nwbw_gron_vergoeding", - "value": "aardbevingsbestendige nieuwbouw groningen vergoeding", - "uuid": "d0646299-9944-4e3e-926c-62c9cded74ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aardgasvrijeHuurwSubsidie", - "value": "aardgasvrije huurwoning subsidie", - "uuid": "b230ad78-c7a5-4a8a-85c6-ec6655194777" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/accijns", - "value": "accijns", - "uuid": "468af37e-51de-4653-a88b-e648e7ac1c30" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/achternGebrBeeind", - "value": "achternaam gebruiksbeëindiging", - "uuid": "9c3ff012-c78b-4cb6-bd2c-74e2a595968c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/achternaamwijziging", - "value": "achternaamwijziging", - "uuid": "68a93b79-6948-4dd1-a7d8-3d8aa2da4b1f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adoptie", - "value": "adoptie", - "uuid": "656c8085-63e5-4e88-9049-341c171ac112" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adoptie_aangifte", - "value": "adoptie aangifte", - "uuid": "982eaa40-de49-4f61-aafd-74602e330d9c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adoptiePleegzUitk", - "value": "adoptie- of pleegzorguitkering", - "uuid": "ffeb55b6-7081-404d-8d1b-5d4284d2428d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adoptieherroeping", - "value": "adoptieherroeping", - "uuid": "b1a67037-30e5-40bb-b758-f51ada910d9e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adrbestcert", - "value": "adr bestuurderscertificaat", - "uuid": "ff52132d-c9d6-47c5-9685-d0077ce0b0c6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/adresonderzoek", - "value": "adresonderzoek", - "uuid": "8b0a8862-4651-4e72-ab30-d7acf573955d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/affectieschade", - "value": "affectieschade", - "uuid": "9b5c26bc-e027-4974-a2ba-1456428c2d2c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afgezette_gebieden_betreden_ontheffing", - "value": "afgezette gebieden betreden ontheffing", - "uuid": "3769116e-3668-4c41-bda4-7f792e5d9790" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aflosbedrInburglenVerlag", - "value": "aflosbedrag inburgeringslening verlaging", - "uuid": "fd43e87d-3be9-41e6-aac8-1dcd18c09304" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aflosbedrInburglenVerlag", - "value": "aflosbedrag inburgeringslening verlaging", - "uuid": "55069e4a-428b-43ac-a34d-b637159a6458" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aflosbedrStuSchldVerlag", - "value": "aflosbedrag studieschuld verlaging", - "uuid": "c4b1324c-5556-40c5-a910-0ce0988a37ca" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvbehbijdr", - "value": "afvalbeheersbijdrage", - "uuid": "b1140015-629c-42bf-8cb7-1f0f64367499" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvbehbijdrvlhgl", - "value": "afvalbeheersbijdrage vlakglas", - "uuid": "fd682b52-6f10-4b07-a522-ba85b3dce856" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalcontainer", - "value": "afvalcontainer", - "uuid": "3c6bcdf2-43a7-4890-87f0-05b140658e59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzlst", - "value": "afvalinzamelaarslijst", - "uuid": "2b388104-d12b-4298-8b37-6a76fec4385e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzBlik", - "value": "afvalinzameling blik", - "uuid": "9714d5a4-c962-4ddc-a045-5c59a775a553" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_chemisch_afval", - "value": "afvalinzameling chemisch afval", - "uuid": "01fdbc5a-44c5-46d4-9b56-47fba555b748" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_glas", - "value": "afvalinzameling glas", - "uuid": "2a051f78-df15-40c5-a6c7-5312123317b0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_grofvuil", - "value": "afvalinzameling grofvuil", - "uuid": "f4476fd7-54fa-4b13-bdae-5f743656aaf9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_oud_papier", - "value": "afvalinzameling oud papier", - "uuid": "8a9eb07f-51a7-4b02-a0b2-c56c48e34491" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_plastic", - "value": "afvalinzameling plastic", - "uuid": "81ca2ac2-012c-4f1d-82f8-3502462376a8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalInzPMDK", - "value": "afvalinzameling plastic metaal drankenkartons", - "uuid": "c76eb9d0-5920-4c63-80e1-790a84698f59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzameling_textiel", - "value": "afvalinzameling textiel", - "uuid": "624d1d23-3684-474b-8214-e6adc6251962" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalinzamelstation", - "value": "afvalinzamelstation", - "uuid": "0eaf741d-b0b7-48ad-9b57-3cfabcdf3271" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalkalender", - "value": "afvalkalender", - "uuid": "86d67bd8-8f33-45a2-8b84-56ec990f7fde" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalpas", - "value": "afvalpas", - "uuid": "be1fa4aa-642b-4af6-bfce-b4477bfd92f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalstbel", - "value": "afvalstoffenbelasting", - "uuid": "5d5be488-844c-425a-a895-cd0b7f31eec4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalstoffenheffing", - "value": "afvalstoffenheffing", - "uuid": "09a671a6-2fc5-4d14-ad5d-6c4ca3bad247" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvalstortontheffing", - "value": "afvalstortontheffing", - "uuid": "ede8ac67-dfa5-46ff-9ab4-ef90709d1fde" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/afvvervkg", - "value": "afvalvervoerskennisgeving", - "uuid": "d977c765-c351-4aa7-8eb0-4e27071cc32e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/akte_van_de_burgerlijke_stand", - "value": "akte van de burgerlijke stand", - "uuid": "9016306d-6f6f-4155-ab7c-ced94867217d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/alarmsirene", - "value": "alarmsirene", - "uuid": "fc7a8297-7131-44ed-8fdd-94e73f46d2c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/alcoholvergunning", - "value": "alcoholvergunning", - "uuid": "263bee73-8718-4ee4-86be-fc73c5fc6507" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/apk", - "value": "algemene periodieke keuring", - "uuid": "b693ad4c-77bc-4769-b663-1229c9b6892a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/apkBezw", - "value": "algemene periodieke keuring bezwaar", - "uuid": "ed6bf1ac-b28f-4a24-b6e2-872a8aea67d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/apkBezw", - "value": "algemene periodieke keuring bezwaar", - "uuid": "05529087-f18d-4e08-9448-53d70dfeb695" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/alimentatieInning", - "value": "alimentatie inning", - "uuid": "0d3bd6b0-692d-4e67-9c03-7c56bf961c94" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/amateurkunstsubsidie", - "value": "amateurkunstsubsidie", - "uuid": "96c1f5fc-9c76-4bce-8cfd-fafc6c2d8833" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/amateurkunstsubsidie", - "value": "amateurkunstsubsidie", - "uuid": "ccdffa52-c0f3-422f-bdba-67645d51686b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ambtBurgStnd", - "value": "ambtenaar burgerlijke stand", - "uuid": "306dcfff-8602-4531-b3e4-0e8924882751" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ambtshVermBelAansl", - "value": "ambtshalve vermindering belastingaanslag", - "uuid": "e08524a9-d82f-4b0d-bf05-68ec04a0203c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/antenneregInz", - "value": "antenneregister inzage", - "uuid": "520272ff-8615-48dc-a600-d2ea62de3e20" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/antenneregRegistr", - "value": "antenneregister registratie", - "uuid": "5e768d88-cb76-4ac6-af85-159793ac67f8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/antireclamesticker", - "value": "antireclamesticker", - "uuid": "387540ae-46a5-4ab9-87af-08212350b708" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/antispeculatiebeding", - "value": "antispeculatiebeding", - "uuid": "60743ce0-bc62-4912-b76b-81cf2c9cd26d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/anw-uitkering", - "value": "anw-uitkering", - "uuid": "d06539b2-3f74-484b-aee1-da5e1bd8e6d6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aorFinOnd", - "value": "aor financiële ondersteuning", - "uuid": "460d105f-7e78-4926-9dec-886fd276be3e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/aow-uitkering", - "value": "aow-uitkering", - "uuid": "868bff6f-b562-4c57-98f0-30090b5a7a57" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/arbdeskinsch", - "value": "arbeidsdeskundige-inschakeling", - "uuid": "ac48e058-29a4-4e59-a35a-e2f8477801f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/arbmiddkeur", - "value": "arbeidsmiddelenkeuring", - "uuid": "72222e46-ac47-46e0-b020-db09ecba4550" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/arbeidsplaatsvoorziening", - "value": "arbeidsplaatsvoorziening", - "uuid": "fa612869-9901-49d0-aa0b-f14962e1583c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/arbeidsplaatsvoorziening", - "value": "arbeidsplaatsvoorziening", - "uuid": "52e62cbe-9c70-4163-9699-234178041506" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/archvndstmld", - "value": "archeologische-vondstmelding", - "uuid": "2bfed579-55f2-4822-9052-90ce7fccb1a1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/archiefInzage", - "value": "archief inzage", - "uuid": "d42417ce-6d54-4377-9669-7036c6f53862" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/archiefbescheiden_behoud_voor_raadpleging", - "value": "archiefbescheiden behoud voor raadpleging", - "uuid": "12a01ed4-f91d-4d0e-a469-b6b095b6fbfe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/architRegInz", - "value": "architectenregister inzage", - "uuid": "36ef604f-b8a2-4c66-b71d-c8ee9af750e6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/asbestWegMelding", - "value": "asbestbevattende weg melding", - "uuid": "8502ac7d-9bfa-42b3-a45b-f8e14da4c83c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/asbestsloTgmk", - "value": "asbestslachtoffer tegemoetkoming", - "uuid": "ffecf60b-8ead-4aa1-99d8-7c814b081a55" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/asbestsloTgmk", - "value": "asbestslachtoffer tegemoetkoming", - "uuid": "7cfd728b-a536-40e9-a54e-9fdd93bb4b0d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/asbestverwijdering", - "value": "asbestverwijdering", - "uuid": "2656049e-6704-4952-a90a-7757e6296358" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/assurbel", - "value": "assurantiebelasting", - "uuid": "1f1f7466-1ad6-4dc4-a102-254b535e3348" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/asverstrooiing", - "value": "asverstrooiing", - "uuid": "aa175f06-cd97-4f32-aa29-206337086b2e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/auto-aanpassing", - "value": "auto-aanpassing", - "uuid": "512af838-f352-4550-9fc0-790b38836872" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/autobndinnverpl", - "value": "autobandeninnameverplichting", - "uuid": "8edffcdc-94d5-4009-844f-57549481601c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/autohuur", - "value": "autohuur", - "uuid": "54a2773d-413f-4ec8-a312-4aa4d4e2eaba" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/autokinderzitje", - "value": "autokinderzitje", - "uuid": "5059358e-a990-49c9-8e75-cea9401a8c7a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/automatische_incasso_of_machtiging", - "value": "automatische incasso of machtiging", - "uuid": "61b9c4bc-97a9-44f5-97d6-cc262dd1b5d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/baatbelasting", - "value": "baatbelasting", - "uuid": "f6819521-4df2-4d33-9b5c-cb4e3ace67e5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/backpayUitk", - "value": "backpay-uitkering", - "uuid": "57f2a1a7-2004-416d-b425-a9a40f07048f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/badinrichting", - "value": "badinrichting", - "uuid": "b0c2afd0-a0b5-4022-a5de-7d6a9420f4ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/badinrichting_legionellapreventie", - "value": "badinrichting legionellapreventie", - "uuid": "a099e3c5-be6e-4b0d-90bd-3fd494db01bc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/badinrichting_ontheffing", - "value": "badinrichting ontheffing", - "uuid": "4602b3db-0697-4576-8c86-0437eaa32b19" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bagInz", - "value": "bag inzage", - "uuid": "c912a87c-513e-4693-9c40-3fe51fa29648" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ballonOplVliegvToest", - "value": "ballon oplaten bij vliegveld toestemming", - "uuid": "088774d7-ee20-4f85-9f74-3e877e210031" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ballonOplVliegvToest", - "value": "ballon oplaten bij vliegveld toestemming", - "uuid": "2fc8d759-a1d8-4b09-b7f4-c279fb225fef" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bankierseed", - "value": "bankierseed", - "uuid": "d38824dd-6ad6-4b24-abfc-10f8a9168961" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/basisschKlacht", - "value": "basisschool klacht", - "uuid": "5f4fc0bd-f547-4ab9-824a-81567b2bcd34" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/battaccuinzplicht", - "value": "batterijen en accu's-inzamelverplichting", - "uuid": "366ec857-2c22-414b-92e7-5a31c0134bc7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bebouwde_kom_vaststelling", - "value": "bebouwde kom vaststelling", - "uuid": "0b6c1c95-7228-4441-86c0-bd82382394bb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedieningstijden", - "value": "bedieningstijden", - "uuid": "6ec247c5-e1e3-4bbe-8913-0a448343edc4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijf_aan_huis_melding", - "value": "bedrijf aan huis melding", - "uuid": "e9685368-9635-4606-ac71-a56f3d22f351" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalinzameling", - "value": "bedrijfsafvalinzameling", - "uuid": "971a72b8-5504-4418-aca8-1bbabb02d22f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrafvmld", - "value": "bedrijfsafvalstoffenmelding", - "uuid": "7a34ea1e-7293-431b-aa7c-d316704639c5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrafvreg", - "value": "bedrijfsafvalstoffenregistratie", - "uuid": "2e2e4771-f9d7-4d10-bb83-c6d8f17c6c09" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwater_en_slibverwerking", - "value": "bedrijfsafvalwater en -slibverwerking", - "uuid": "13942ee2-45ef-4e48-9fe0-1b34b2b6898a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwaterlozingontheffing", - "value": "bedrijfsafvalwaterlozingontheffing", - "uuid": "f42f673d-d708-4fe4-a8a9-a26e1a83f1d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsafvalwatermelding", - "value": "bedrijfsafvalwatermelding", - "uuid": "b12697f2-20fd-4ade-a453-e7ed36abec8e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrHulpverlAanw", - "value": "bedrijfshulpverleners aanwijzing", - "uuid": "0e6b617e-8ac6-4fdd-a65d-ca550108cbd8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsterrein_huren_of_kopen", - "value": "bedrijfsterrein huren of kopen", - "uuid": "a1c2ce88-e05f-405a-a992-6c62200f0d22" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsterreinuitgifte", - "value": "bedrijfsterreinuitgifte", - "uuid": "730c7295-9b11-48bd-be66-076069cc1646" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bedrijfsverzamelgebouw_toewijzing_en_beheer", - "value": "bedrijfsverzamelgebouw toewijzing en beheer", - "uuid": "16ba6ef3-0b02-4b2d-b91b-faf0798bae7e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beeldende_kunstsubsidie", - "value": "beeldende kunstsubsidie", - "uuid": "3c02fd81-42a0-4ca4-9449-0d1fb20a1270" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/begWerk", - "value": "begeleid werken", - "uuid": "8b548d1f-2cb7-47ee-9e31-09f280e4944c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/begSchoolverl", - "value": "begeleiding schoolverlater", - "uuid": "08b35c5d-467c-455f-a3be-2e68f71b626f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beginseltoestAdoptBuitKnd", - "value": "beginseltoestemming adoptie buitenlands kind", - "uuid": "ea66e114-9ada-4e99-af75-ed99b1661449" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/begraafplaatsregister", - "value": "begraafplaatsregister", - "uuid": "fb7f697d-ced0-46c0-9dcd-324a849bac92" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beklagNtVervStrFeit", - "value": "beklag over niet-vervolgen strafbaar feit", - "uuid": "33676116-28e1-4479-8d98-49efb9f005d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bekwLeraarVOErk", - "value": "bekwaamheid leraar vo erkenning", - "uuid": "7246d5c7-a9be-451c-a558-c14a1025fbd0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastHardhClVerz", - "value": "belasting hardheidsclausuleverzoek", - "uuid": "e1efcbc2-1a9c-402f-9991-70adc81dd73b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belleidwater", - "value": "belasting op leidingwater", - "uuid": "d587d17c-6b19-4364-bab6-d57081f0ac4b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belzwmotrijt", - "value": "belasting zware motorrijtuigen", - "uuid": "674d93a8-7d6d-484b-8dd2-a86f35c12371" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingaangifte", - "value": "belastingaangifte", - "uuid": "88d9911c-dd10-4a3c-a9e8-c9bb42ee755b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingaanslag_bezwaar", - "value": "belastingaanslag bezwaar", - "uuid": "151df6eb-5cb6-4e4c-bf58-8eaf4bbc0001" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingaanslag_kopie", - "value": "belastingaanslag kopie", - "uuid": "86497e51-a3ea-402c-8dee-437e0b853753" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingbetUitst", - "value": "belastingbetaling uitstel", - "uuid": "085dee93-18ed-4658-ba02-824c4c1f602b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingbetalingsregeling", - "value": "belastingbetalingsregeling", - "uuid": "106d827f-603d-4136-ba17-ff7250f47938" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingkwijtschelding", - "value": "belastingkwijtschelding", - "uuid": "89cd96c5-72fa-450b-82f0-c12916408001" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingrente", - "value": "belastingrente", - "uuid": "3bd07f46-d62b-48f9-8f27-06048889925b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/belastingteruggave", - "value": "belastingteruggave", - "uuid": "5cd032ad-ddec-4bbc-8609-2388c5fa8fa9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beperkte_milieutoets", - "value": "beperkte milieutoets", - "uuid": "596d1af3-50ff-4b99-9be8-0b08b8966b6a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/berichtenbox", - "value": "berichtenbox", - "uuid": "4514b122-b054-4b0b-9182-234c4af52336" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beroep", - "value": "beroep", - "uuid": "b507fa2c-0f6b-40b0-946d-5f36e013ecd7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/berkrkndrat", - "value": "beroepskracht-kindratio", - "uuid": "a031a5bb-8b70-4dd6-b8c6-95a379636e5b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beroepskwalErk", - "value": "beroepskwalificatie erkenning", - "uuid": "efba97c3-7446-4138-b3d8-97615c7896f7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/berOndVolwEdKlacht", - "value": "beroepsonderwijs en volwasseneneducatie klacht", - "uuid": "81168139-bb19-4e47-9a02-78207721ea2a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/berOndAanm", - "value": "beroepsopleiding aanmelding", - "uuid": "9e7bafca-2502-4b2e-b23c-1898967c1dfe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beschermde_dieren_ontheffing", - "value": "beschermde dieren ontheffing", - "uuid": "6c38db9b-0ba8-4654-9220-e3cd7438e50d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beschermde_leefomgeving_aanwijzing", - "value": "beschermde leefomgeving aanwijzing", - "uuid": "c372483b-9d2c-4e88-bb35-fe7cab701d66" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beschermde_leefomgeving_schadevergoeding", - "value": "beschermde leefomgeving schadevergoeding", - "uuid": "332d5969-604c-4f6c-9cfd-79617af136ae" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beschWerk", - "value": "beschut werk", - "uuid": "8a205e9e-4028-408c-94c5-bfa31422dc49" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/besmettelijke_dierziektemeldingsplicht", - "value": "besmettelijke dierziektemeldingsplicht", - "uuid": "4ee91d72-e1c3-4d33-ab3c-d0169fda3ff6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bestAutGehMrb", - "value": "bestelautotarief gehandicapten motorrijtuigenbelasting", - "uuid": "1bc766b1-dc23-4ec0-87ed-bf7fc3eccd7c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bestemmingsplan_inzage", - "value": "bestemmingsplan inzage", - "uuid": "c736c0f5-ba30-4078-a8cb-fffaa22bbd72" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/betogDemonsMld", - "value": "betogings- of demonstratiemelding", - "uuid": "07b3bb04-8e42-441b-b33c-9d29b7d1af1a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beveilMaatrOvervSubs", - "value": "beveiligingsmaatregelen na overval subsidie", - "uuid": "e4e9d847-c3ef-4ce3-a5e6-10ec114b95e2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bevoegdBewLuchtbPiloot", - "value": "bevoegdheidsbewijs luchtballonpiloot", - "uuid": "49adece0-5fef-46fc-97c3-57191a97efca" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bevoegdBewRecrVlieger", - "value": "bevoegdheidsbewijs recreatief vlieger", - "uuid": "29f60ce6-c0e7-44ad-a29a-48a5a48fdd4f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bevoegdBewZwVlPiloot", - "value": "bevoegdheidsbewijs zweefvliegtuigpiloot", - "uuid": "65339373-92d0-4a09-85de-7f57499718a1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bewTermAsbusOnth", - "value": "bewaartermijn asbus ontheffing", - "uuid": "37d254d1-24c5-4362-b19d-d703fb146f29" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bewijs_van_in_leven_zijn_(attestatie_de_vita)", - "value": "bewijs van in leven zijn (attestatie de vita)", - "uuid": "b54c6e26-83cb-45ce-a21d-85a027fb8331" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bewijs_van_nederlanderschap", - "value": "bewijs van nederlanderschap", - "uuid": "2fa8a20c-934e-4b7f-9832-85c1d7a2e398" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bewind", - "value": "bewind", - "uuid": "4d3d9905-711b-4e92-8a16-1c38b0034bed" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bezitBeschDierenOntheffing", - "value": "bezit beschermde dieren ontheffing", - "uuid": "5134fcae-d616-4756-acf4-86fa973c3c97" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bezitBeschDierenOntheffing", - "value": "bezit beschermde dieren ontheffing", - "uuid": "b5fd0992-84ae-42d9-8c40-14340114c355" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bezafspr", - "value": "bezoekafspraak", - "uuid": "0f9bdd83-c3c1-4fa3-81a8-00e797cc4881" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bezwaar", - "value": "bezwaar", - "uuid": "d1fa7413-ded6-4a81-a675-5d65aade9198" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beeindRegistrKentekUitvoer", - "value": "beëindiging registratie kenteken bij uitvoer", - "uuid": "3f32794d-9d2f-4c13-a644-a7d73cf57c8b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bigRegBuitDiplErk", - "value": "big-register buitenlands diploma-erkenning", - "uuid": "d3a4b1ad-1d9b-41e0-8a08-72966559514a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bigRegHerinschr", - "value": "big-register herinschrijving", - "uuid": "321f72e8-38ec-4985-a299-a528191a945d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bigRegInschr", - "value": "big-register inschrijving", - "uuid": "e8b949bd-6f50-444c-b3bb-6280ee75e0f7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bigRegInz", - "value": "big-register inzage", - "uuid": "23dfb61c-8024-4149-b6e3-7dd7d5df4cf5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijenhoudonth", - "value": "bijenhoudontheffing", - "uuid": "6172f32a-2795-4dfb-9ac3-49711fc5b28e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijstand", - "value": "bijstand", - "uuid": "bbc58cd0-8a19-4c3f-a3c2-5da74f8d81a2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijstandTegenpr", - "value": "bijstand tegenprestatie", - "uuid": "d1464fb7-3e58-4a84-a33b-40e4a3b029c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijstandZst", - "value": "bijstand zelfstandigen", - "uuid": "779a3f44-3a29-4c4f-a8e9-c05ded9d57e6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijstandsverh", - "value": "bijstandsverhaal", - "uuid": "037209e4-e2c8-482a-aa57-ea3545cb6f04" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijvoeren_wild_ontheffing", - "value": "bijvoeren wild ontheffing", - "uuid": "f9041940-a4e5-4d0e-b4d4-cf2d2d6721e3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzettingenregister", - "value": "bijzettingenregister", - "uuid": "7636b4f7-4da0-44f3-9d2d-99dc12ad2495" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzonder_transportontheffing", - "value": "bijzonder transportontheffing", - "uuid": "263c5c73-ec24-458c-8355-f185fc4ad5aa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzondere_begraafplaats_toestemming", - "value": "bijzondere begraafplaats toestemming", - "uuid": "fa033b8f-b94c-4782-8ce8-bc7fe5a94203" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzondere_begraafplaats_toestemming", - "value": "bijzondere begraafplaats toestemming", - "uuid": "fafaece6-7e72-42f5-803e-8b64da952dd5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzCurator", - "value": "bijzondere curator", - "uuid": "1b6079aa-9892-4995-a1be-e05b628d1192" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzCurator", - "value": "bijzondere curator", - "uuid": "2698bc37-bb8a-4ef5-9041-224a4ea4b9cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzOpspoDnstKlacht", - "value": "bijzondere opsporingsdiensten klacht", - "uuid": "c8219c42-5344-4bd2-a21d-762835588634" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bijzBijstUitk", - "value": "bijzonderebijstandsuitkering", - "uuid": "b3e67695-fe77-4d6b-9783-c7e620d1e2f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bindStudadvBeroep", - "value": "bindend studieadvies beroep", - "uuid": "d103cb00-6579-4f86-a147-8078d047374b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/binSchipCert", - "value": "binnenschipcertificaat", - "uuid": "a9ed8333-05a6-434c-933a-3aa1699b6e32" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/biz-bijdrage", - "value": "biz-bijdrage", - "uuid": "7eed7740-55e4-42f8-a7f6-eccd8661de1f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bladkorf", - "value": "bladkorf", - "uuid": "c6dda341-8621-461f-a25f-7a048dcadbc2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/blijverslening", - "value": "blijverslening", - "uuid": "bc0fdfee-8848-4fdc-9442-537ee33bfaab" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/blindengeleidehond", - "value": "blindengeleidehond", - "uuid": "2b6723bf-dec5-4c48-be4f-4c9cf95848bf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bloedprodinuitvverg", - "value": "bloedproductenin- en uitvoervergunning", - "uuid": "308de6ce-e351-4e63-83c6-009ab70b3d85" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bloembteelteis", - "value": "bloembollenteelteisen", - "uuid": "08f79fb1-c2e9-4f65-8e9d-bb0de72a09e2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodembeschermingsvergunning", - "value": "bodembeschermingsvergunning", - "uuid": "a501d917-232e-4fbc-b001-b78de50b2a93" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemonderzoek", - "value": "bodemonderzoek", - "uuid": "36325550-caca-47e6-9005-d599deb2b603" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemonderzoek_schadevergoeding", - "value": "bodemonderzoek schadevergoeding", - "uuid": "2c9a753c-0ece-4062-80fe-e870d6421147" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemopslagvergunning", - "value": "bodemopslagvergunning", - "uuid": "109b8a94-2ca9-4173-8d71-e971d38ea106" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemsanering_instemming_saneringsplan", - "value": "bodemsanering instemming saneringsplan", - "uuid": "9b6c4890-3b35-4c2f-b65a-afcb236e3e5a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemsanering_melding_voornemen", - "value": "bodemsanering melding voornemen", - "uuid": "b72b8082-ff56-43ba-a8d1-847aea44181e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemsanering_verkennend_onderzoek", - "value": "bodemsanering verkennend onderzoek", - "uuid": "3ff84597-03c7-4590-ad91-7a7ede3456ca" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bodemverontreiniging_melding", - "value": "bodemverontreiniging melding", - "uuid": "739c4748-fae3-498d-a07d-0fd8eecb820b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/boedelregInz", - "value": "boedelregister inzage", - "uuid": "2bf3f1a2-3691-47ab-bc53-bdc0370abf81" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/boete", - "value": "boete", - "uuid": "9e5f0c9a-e5be-4e1c-b8cc-e84f964c6c87" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brstprttranssub", - "value": "borstprothesen transvrouwen subsidie", - "uuid": "ef9ab248-97ef-4b85-a24b-0759dc3f290e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bouwgronduitgifte", - "value": "bouwgronduitgifte", - "uuid": "48cf40aa-883d-4a5c-addd-c542eaec4080" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bouwplaninzage", - "value": "bouwplaninzage", - "uuid": "33ff3281-0147-4797-9444-45468103daa9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bouwstoffenmelding", - "value": "bouwstoffenmelding", - "uuid": "4657e0e3-33f8-4c20-8025-e5accdb700f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bouwwerk_voltooiingsverklaring", - "value": "bouwwerk voltooiingsverklaring", - "uuid": "d1d51c38-653a-4866-b34c-ce71f5fd7950" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bouwwrkzhmld", - "value": "bouwwerk werkzaamhedenmelding", - "uuid": "bd3f9093-3b97-4029-ac91-df2b2bbda31f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bpmvrijst", - "value": "bpm vrijstelling", - "uuid": "462f5421-5fc4-4350-abc6-4766bf6486c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bpmAangifte", - "value": "bpm-aangifte", - "uuid": "7032a37b-09e9-4e31-a990-c9c02e85e6b0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bpmTeruggaaf", - "value": "bpm-teruggaaf", - "uuid": "b6cec7be-1f02-4b25-a756-311801947594" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/bpmTeruggaaf", - "value": "bpm-teruggaaf", - "uuid": "31702ce2-e23f-4400-884e-4bf7717baf44" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brandbeheersing_aanvalsplan", - "value": "brandbeheersing aanvalsplan", - "uuid": "04fa7b19-20df-4d61-b9ff-a73e8dfc17ed" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brandveiligheidadvies", - "value": "brandveiligheidadvies", - "uuid": "25407538-b7cd-46e2-8465-5755d83994f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/briefadres", - "value": "briefadres", - "uuid": "1f028e8b-922d-4cc7-99c8-f23e93677775" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpAdoptUitschr", - "value": "brp-adoptie-uitschrijving", - "uuid": "62822298-fef4-428b-8640-a2d684a9c341" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpGehhVzk", - "value": "brp-geheimhoudingsverzoek", - "uuid": "8608ddf2-a1f1-4837-8d94-b79da99725dc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpInschr", - "value": "brp-inschrijving", - "uuid": "d7c2484d-8ae0-4d4c-a67c-134560d7d87f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpInschrBuitAkte", - "value": "brp-inschrijving buitenlandse akte", - "uuid": "37469bfd-7722-460d-8892-d1b0353c4e36" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpInschrOverlKind", - "value": "brp-inschrijving niet in leven zijnd kind", - "uuid": "fdc53a38-3dd0-42a8-b54b-0c2df932f090" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpInzRecht", - "value": "brp-inzagerecht", - "uuid": "f4e55d8d-e8ef-4934-9a11-c0d7d38e0519" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpInzRechtGeg", - "value": "brp-inzagerecht gegevensverstrekking", - "uuid": "cffb748f-dfbd-43a2-bbc6-687c0dc1d2e1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpUittr", - "value": "brp-uittreksel", - "uuid": "2319f3ed-f95a-4372-b322-4440342bef4f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpUittrGezag", - "value": "brp-uittreksel met gezag", - "uuid": "c1d772d3-c67e-4b2f-b8bc-86d9d583f802" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/brpWijzVzk", - "value": "brp-wijzigingsverzoek", - "uuid": "87ac5b38-5b68-43cc-8355-a65979f7a467" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/btwnrverm", - "value": "btw-nummervermelding", - "uuid": "2bb36740-2a0b-4062-9d6a-f1851eb7995b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/buitGewPens4045", - "value": "buitengewoon pensioen 1940-1945", - "uuid": "0f4a579b-8d16-4f33-8ddf-42f97ed8d9e0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/buitGewPensIndischVerzet", - "value": "buitengewoon pensioen indisch verzet", - "uuid": "5f43c693-43ea-43f5-bbd7-c3539a07d41d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/buitGewPensZeelOorlSlachtWO2", - "value": "buitengewoon pensioen zeelieden-oorlogsslachtoffers tweede wereldoorlog", - "uuid": "278612f9-7692-447e-b9eb-72572a91cb21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/buitenlVermAang", - "value": "buitenlands vermogen aangifte", - "uuid": "1f110aed-6f7c-4117-9c17-c1369050455c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/buitenlOnderwBevErk", - "value": "buitenlandse onderwijsbevoegdheid erkenning", - "uuid": "6c8a7b07-3932-4655-b396-ea464c3f14cb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgOorlSlacht4045Uitkering", - "value": "burger-oorlogsslachtoffers 1940 -1945 uitkering", - "uuid": "c623f07a-7b95-4191-a792-fdcab93b21ac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief", - "value": "burgerinitiatief", - "uuid": "64eff6ab-25db-4249-9eb0-f47848f0c805" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief", - "value": "burgerinitiatief", - "uuid": "b2f87420-4db0-4461-bdf6-e92111ac5f59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief", - "value": "burgerinitiatief", - "uuid": "556da7ad-1836-4ed5-a040-95b0e9454fa2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgerinitiatief", - "value": "burgerinitiatief", - "uuid": "d74df36a-88fb-4a23-93bf-a689111bfc25" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/burgerservicenummer_(bsn)", - "value": "burgerservicenummer (bsn)", - "uuid": "b7ba2df3-ac62-4803-b62b-6d531383087f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/calamiteitenbestrijding", - "value": "calamiteitenbestrijding", - "uuid": "99e8102e-f298-45f2-9fe7-c6a50ef40781" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/calamiteitenbestrijding", - "value": "calamiteitenbestrijding", - "uuid": "b6dcc941-ded8-4f63-ab55-7bf7b1930b96" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/caravParkOnth", - "value": "caravanparkeerontheffing", - "uuid": "2bb17eaa-9d9c-4ba1-8b91-b5c8b8ebed28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/carbidschietenmelding", - "value": "carbidschietenmelding", - "uuid": "38648790-6dec-403c-b6f2-cd79acdf98f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/centrArchOverlInz", - "value": "centraal archief overledenen inzage", - "uuid": "941d7834-e825-42b5-aec2-b728589f15c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/centrInsolvRegInz", - "value": "centraal insolventieregister inzage", - "uuid": "12770516-e1ee-4b02-aa9a-e9ded14e489b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cruks", - "value": "centraal register uitsluiting kansspelen", - "uuid": "e64e62b4-731c-41d2-8332-5df7935d1a52" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/centrTestamRegInz", - "value": "centraal testamentenregister inzage", - "uuid": "fbdcb94e-0e52-49df-a1ef-bb4339de0d71" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/certificaat", - "value": "certificaat", - "uuid": "fb6fe6b5-d7a6-4e66-8893-ca55a4b6eb44" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/citesverg", - "value": "cites-vergunning", - "uuid": "8beb089e-accc-4c48-857c-95087fd0ec77" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/clntonderz", - "value": "cliëntenonderzoek", - "uuid": "0ed69f91-60ba-4939-9b28-093bd2c28ff5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/collectevergunning", - "value": "collectevergunning", - "uuid": "be4bf1fe-b406-45e9-8b35-1707b93a520a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/collontslmld", - "value": "collectief ontslagmelding", - "uuid": "3d8c947b-96c8-4448-afd3-6f60229da0b6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cao", - "value": "collectieve arbeidsovereenkomst", - "uuid": "808f9331-ec54-4392-9d89-af3e997feecd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/collIncFest", - "value": "collectieve en incidentele festiviteiten", - "uuid": "e5a79c18-4338-4401-9947-baee781cf4d2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/collegegeld", - "value": "collegegeld", - "uuid": "7eddb941-2d69-4e86-800e-b9c7d2cd3de9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/commzndverg", - "value": "commenciële zendvergunning", - "uuid": "44e507e8-bd9a-468b-85d9-4199c9d0a3c2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/commomrtoest", - "value": "commerciële-omroeptoestemming", - "uuid": "a0d96af2-0f6c-4bb2-9b4a-39e8d2e2fa3c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/compostvat", - "value": "compostvat", - "uuid": "b6edf56b-4a92-447d-b6bb-5baf07acd37a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/confverkl", - "value": "conformiteitsverklaring", - "uuid": "f103294f-72fb-4ab2-8935-065e39e24faf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/consignKasUitk", - "value": "consignatiekas-uitkering", - "uuid": "9d19157f-c271-4953-a47b-c99b7575404d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cosmprdvrschr", - "value": "cosmetische-productenvoorschriften", - "uuid": "1b06e240-cdde-4f9c-bd52-55b461ac18fd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/covid19Tegm", - "value": "covid-19 tegemoetkoming", - "uuid": "9af572a7-7afb-484f-82e5-772c0b1f18b5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/covid19WerkgSubs", - "value": "covid-19 werkgelegenheidssubsidie", - "uuid": "972e8dc1-4bc0-446e-822c-403681b579fb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crematoriumregister", - "value": "crematoriumregister", - "uuid": "30621413-1ef4-4e72-b799-65642adf685c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisismtrgl", - "value": "crisismaatregel", - "uuid": "7d80c011-ee46-464a-9046-6350cde5b1b3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisisopvang", - "value": "crisisopvang", - "uuid": "729ec081-26d8-493d-81d8-74c035a0b2de" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisisopvang", - "value": "crisisopvang", - "uuid": "18cd0c50-bc47-417a-802d-8e1bcc90b8d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisisopvang", - "value": "crisisopvang", - "uuid": "6d225879-babf-499d-9916-e8581bec1ed5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisisopvang", - "value": "crisisopvang", - "uuid": "5a34956e-ca5e-459c-9733-1885d66ff986" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/crisisplan", - "value": "crisisplan", - "uuid": "a7ce403b-1bdc-44ea-bc18-221dfd7ffab0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cultinvverb", - "value": "cultuur invoerverbod", - "uuid": "09b836c4-0d98-4d29-a7f8-05ef683aa933" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cultuurgoedaanw", - "value": "cultuurgoedaanwijzing", - "uuid": "a189364f-7627-4065-a400-51a6c91c600f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cultGoedUitvVerg", - "value": "cultuurgoederen uitvoervergunning", - "uuid": "4aaa9cf0-c4fa-4224-96d5-449f362a1c7d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cultuursubsidie", - "value": "cultuursubsidie", - "uuid": "da9d872a-c3fa-4f61-9811-7930b93edcd5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/curatele", - "value": "curatele", - "uuid": "55e4681f-e26e-4bb7-bb77-eb426b98f25b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/curateleBewReg", - "value": "curatele- en bewindregister", - "uuid": "5b336cb9-96dd-43b5-9511-d77e4bfaff24" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cursusgeld", - "value": "cursusgeld", - "uuid": "342fe4a5-15bc-4e26-9bb3-facede253075" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/cursusgeldTerugbet", - "value": "cursusgeld terugbetaling", - "uuid": "be703c7d-fe45-4676-9b21-6efea62fd500" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dagbestOuderen", - "value": "dagbesteding ouderen", - "uuid": "f6759afd-e9d4-412a-9e70-b52777a7c0f9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dagverzorging_ouderen", - "value": "dagverzorging ouderen", - "uuid": "61eadd32-4f85-4fb4-af03-5435f63d14db" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/damu-llReisksub", - "value": "damu-leerling reiskostensubsidie", - "uuid": "2324b431-e38c-49d9-b0f4-900b9c89dc20" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/damu-llReisksub", - "value": "damu-leerling reiskostensubsidie", - "uuid": "f9bf45ea-1886-479d-9533-a4398a884dca" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/deelOnderwProgrVOOnth", - "value": "deel onderwijsprogramma vo ontheffing", - "uuid": "3a5018ce-437d-431c-89c2-474a79ecf1d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/deelOnderwProgrVOOnth", - "value": "deel onderwijsprogramma vo ontheffing", - "uuid": "40e1f490-571a-4b8a-a0e4-159ccc54d51b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/delfstverg", - "value": "delfstoffenvergunning", - "uuid": "1e0ba34e-17d0-4215-88ec-1318779f8eb1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/depositogarantiestelsel", - "value": "depositogarantiestelsel", - "uuid": "a8c0c58d-b413-4996-87d4-20f293f9c177" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/detentieMeldZorgVerz", - "value": "detentie melding zorgverzekeraar", - "uuid": "c60654dd-b650-47cd-b317-368d66346fe6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/deurwben", - "value": "deurwaardersbenoeming", - "uuid": "212c19a9-8c79-45ca-b7a5-6359d1b0b6c3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dienstplOnth", - "value": "dienstplicht ontheffing", - "uuid": "69e14ef0-d17e-47e4-a017-de67258c32d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dienstplUitst", - "value": "dienstplicht uitstel", - "uuid": "e5e86506-ae69-4e35-9bdb-73bbde1acca5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dienstverlening_op_of_aan_de_openbare_weg_vergunning", - "value": "dienstverlening op of aan de openbare weg vergunning", - "uuid": "503707e8-0150-4202-807a-de80632835ac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenhOnth", - "value": "dierenhoudenontheffing", - "uuid": "66391b08-2f62-454f-9d73-357b1772c145" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenopvang", - "value": "dierenopvang", - "uuid": "e2847142-1cff-495b-93da-1b16505bc90b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenregDoc", - "value": "dierenregistratiedocument", - "uuid": "73ea6b77-57bd-45ea-a944-8c8c0a655685" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/diertentmld", - "value": "dierententoonstellingsmelding", - "uuid": "d91e91ef-dc32-453c-b71a-6e4927e5086d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierentuinvergunning", - "value": "dierentuinvergunning", - "uuid": "c848af04-662a-49c3-9443-ebd11d85f882" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenvervDoc", - "value": "dierenvervoersdocument", - "uuid": "2205a667-932d-4395-b895-599e706eaf28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenvervVerg", - "value": "dierenvervoersvergunning", - "uuid": "6c36b8fd-5fdb-4a4d-9f17-51d34baba224" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierenvervVoertCert", - "value": "dierenvervoersvoertuigcertificaat", - "uuid": "376f53f5-7273-4b01-893e-741d926896ac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/diergenRegister", - "value": "diergeneeskunderegister", - "uuid": "666bf3f3-921f-48c3-a5ab-63f3883b38db" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dierprinstverg", - "value": "dierproeven instellingsvergunning", - "uuid": "bca25e11-bcc3-4c74-8aea-aaf29eb243bc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/digid", - "value": "digid", - "uuid": "feb4b643-4adb-47cf-b5a8-8b2fec9f1f8b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/digid_machtiging", - "value": "digid-machtiging", - "uuid": "437b1454-98eb-4c06-b631-8ad74ce0167c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/diplomabeschr", - "value": "diplomabeschrijving", - "uuid": "a51e6e8b-97eb-40b0-baf8-143641906a5c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/diplomaregister", - "value": "diplomaregister", - "uuid": "26e108ef-f799-4bb6-a026-294972437db4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/diplRegGegVerstr", - "value": "diplomaregister gegevensverstrekking", - "uuid": "5ebfd8ae-1584-4cd7-85c0-e4781cd75b21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/discrKlacht", - "value": "discriminatie klacht", - "uuid": "5c4acf0c-e1a1-421e-b4b2-380bfef50d04" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/divbrbelverm", - "value": "dividend bronbelastingvermindering", - "uuid": "376fcebf-e052-4ab4-863e-1f75dea45b77" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dividendbel", - "value": "dividendbelasting", - "uuid": "f548681a-8f60-4fe2-8510-7cb182031286" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dodeGezelschDierenOpr", - "value": "dode-gezelschapsdierenopruiming", - "uuid": "fd93e0b9-498c-4f6b-86c7-0cfc45f462cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/donorgegKunstmBevrInfoVerz", - "value": "donorgegevens kunstmatige bevruchting informatieverzoek", - "uuid": "8cd72f4c-e7e7-45f7-b724-dcddd10ef5ed" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/doodgeboren_kind_aangifte", - "value": "doodgeboren kind aangifte", - "uuid": "3b2a07ff-7ff3-4b48-a7c3-b803b4b5f677" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/drwatAanslVerzoek", - "value": "drinkwateraansluitingsverzoek", - "uuid": "e1589f68-4565-4f25-bba2-8163aff73f79" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/duurPrestBeursVerl", - "value": "duur prestatiebeurs verlenging", - "uuid": "a1789afc-5971-4969-b428-8f75bb216c2c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/duurPrestBeursVerl", - "value": "duur prestatiebeurs verlenging", - "uuid": "8815e95b-d8c1-4120-8bdd-5361f2857d5a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/duurzhLening", - "value": "duurzaamheidslening", - "uuid": "cb854fda-ba73-4538-9de1-870530de104b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dwangsomNietTijdBesl", - "value": "dwangsom bij niet tijdig beslissen", - "uuid": "b02d0f9a-5433-4caa-a95e-8cff8bc37dd4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dyslexieverklaring", - "value": "dyslexieverklaring", - "uuid": "b921a0e7-539c-4bc4-919b-da9e836e004d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/dyslexiezorg", - "value": "dyslexiezorg", - "uuid": "af1a8bee-9d51-4350-9806-0a5acd91d475" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/echtscheiding_inschrijving", - "value": "echtscheiding inschrijving", - "uuid": "efee7d93-4252-418a-aaf0-65d8f3570073" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/echtschVerz", - "value": "echtscheiding verzoek", - "uuid": "a1cfb858-5901-4069-8373-c633e07be86e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/echtschCert", - "value": "echtscheidingscertificaat", - "uuid": "d397b041-fc1b-41d0-bfd8-90790b8b9801" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/economische_ontwikkelingssubsidie", - "value": "economische ontwikkelingssubsidie", - "uuid": "c5f4e62c-ccf1-4717-af0a-a091693fabeb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eedEnergieAudit", - "value": "eed-energieaudit", - "uuid": "a4107e86-aab7-4b97-a5d2-c268bb9a1d92" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eenhoofdigGezag", - "value": "eenhoofdig gezag", - "uuid": "5ee86c82-55b4-43fa-9698-903b6c3f1b4d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eenmUitkVet", - "value": "eenmalige uitkering veteranen", - "uuid": "630ff08c-e265-414b-b515-e5973aa65c54" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/egBerKwalErk", - "value": "eg-beroepskwalificaties erkenning", - "uuid": "a7d3c8ab-0de4-4bb5-b7ca-4c3186de11c4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eHerkenning", - "value": "eherkenning", - "uuid": "a4ba4427-1cdc-4e6b-b5ba-d4e0c5f9b879" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eindexVOAanp", - "value": "eindexamen vo aanpassing", - "uuid": "f27fcb3c-ce96-4f99-9400-f72f7a7d4e1b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/elecprogverantw", - "value": "elektriciteit programmaverantwoordelijkheid", - "uuid": "ee5e0a7d-01de-4171-833d-08e5e094637f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/elektrAanslVerzoek", - "value": "elektriciteitsaansluitingsverzoek", - "uuid": "13646426-ebf6-4ace-8f6f-df12358fff30" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/emancipatiesubsidie", - "value": "emancipatiesubsidie", - "uuid": "50240bcc-14d1-4fc5-9616-af1ef8db1c3e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/emancipatiesubsidie", - "value": "emancipatiesubsidie", - "uuid": "49ef690e-285c-4dd7-84d0-bd86cae6fc17" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/energBespEigenHuisSubs", - "value": "energiebesparing eigen huis subsidie", - "uuid": "6f21e939-69c5-4cc1-9bec-4f4857b9dcba" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/energielabel", - "value": "energielabel", - "uuid": "ba62556c-be33-4269-956d-02858b1f7973" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/energiesubsidie", - "value": "energiesubsidie", - "uuid": "19ef287d-bd67-43a4-956c-9c02eb914089" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/epidemiologie", - "value": "epidemiologie", - "uuid": "7a5cd196-95f0-4859-9c69-4ed7f360c727" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erfbelasting", - "value": "erfbelasting", - "uuid": "5e4f9de4-ee9b-4a99-94fd-f482ce5e0f51" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erfpacht", - "value": "erfpacht", - "uuid": "ec14528e-ffed-4ce2-81ff-b27af4d38d3f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erkenning_kind", - "value": "erkenning kind", - "uuid": "913e9bc2-caeb-40e2-81e5-9c0359fa40c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erkenKindVern", - "value": "erkenning kind vernietiging", - "uuid": "718975b7-f53d-4689-8528-17451217e3f0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erkenKindVern", - "value": "erkenning kind vernietiging", - "uuid": "fdfaf760-2855-46c5-b073-ed0c2a663c0b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/erkenKindVervToest", - "value": "erkenning kind vervangende toestemming", - "uuid": "e9a8718b-56da-4e50-8543-8a92e994b242" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eurErfrechtVerklaring", - "value": "europese erfrechtverklaring", - "uuid": "26bdb237-282d-4bbc-b01d-4da71dddc56c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eusoczekverkl", - "value": "europese sociale zekerheidsverklaring", - "uuid": "15500b65-bfb4-43c7-b935-8c5605a0b15a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/eu_vuurwapenpas", - "value": "europese vuurwapenpas", - "uuid": "630ced63-9865-4878-8b8b-130dd178c316" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/euziekteverzkrt", - "value": "europese ziekteverzekeringskaart", - "uuid": "a62a823a-6915-455a-bf34-842c33648ed7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/evcErkenning", - "value": "evc erkenning", - "uuid": "01d53bed-22d0-4f63-8fe7-adf9ab9e3687" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/evenementenmelding", - "value": "evenementenmelding", - "uuid": "4f6b6631-be5d-4a5b-b00e-4ce73a640e04" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/evenementenvergunning", - "value": "evenementenvergunning", - "uuid": "684fd7c7-4077-44ed-936d-bceb463d8442" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/evenementenvergunning", - "value": "evenementenvergunning", - "uuid": "b92487b8-f46a-4705-8b4a-fcce7d52b46a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/examenondBerOndVrijst", - "value": "examenonderdeel beroepsonderwijs vrijstelling", - "uuid": "d3ecc38d-0db6-46a1-a51d-41af6f9571b2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/examenvakVavoOnth", - "value": "examenvak vavo ontheffing", - "uuid": "c39c32c6-06fd-41d5-829c-4f919ae93424" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/experiment_gebruik_meststoffen_ontheffing", - "value": "experiment gebruik meststoffen ontheffing", - "uuid": "92f6a795-66c4-4596-8cc0-a7120c971f6b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/expertisecentra_onderwijsplan", - "value": "expertisecentra onderwijsplan", - "uuid": "d988d03c-a6a9-496a-9146-d5cd35a11fa1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/extrOnderwActBasisschVrijst", - "value": "extra onderwijsactiviteit basisschool vrijstelling", - "uuid": "720adf61-7960-4ef5-8216-9eda97e39c45" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/faillismt", - "value": "faillissement", - "uuid": "1107450b-ee4f-4fe3-b48c-fae70764e380" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/faunabeheereenheid", - "value": "faunabeheereenheid", - "uuid": "8d7e43dd-a343-4355-a3bb-de03aa4f31a7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/faunabeheerplan", - "value": "faunabeheerplan", - "uuid": "74977734-9386-415b-a3f1-98e6f3ee594d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/fietsenregister", - "value": "fietsenregister", - "uuid": "95bfc730-76ec-44fe-bb93-a6978d497fe8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/financiële_hulp", - "value": "financiële hulp", - "uuid": "2970b9e9-5dac-4993-83d9-188c77d80a30" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/finOnderstStudBijzOmst", - "value": "financiële ondersteuning student bij bijzondere omstandigheden", - "uuid": "818a864e-3619-45c6-85ae-23ab53503688" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/forensenbelasting", - "value": "forensenbelasting", - "uuid": "17cbc70b-ccf9-405c-a13c-2499fff7a247" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/frequentiegebrReg", - "value": "frequentiegebruik registratie", - "uuid": "a09ba1b6-27eb-4a43-adf8-ad3cd54779a2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/funderingsherstelsubsidie", - "value": "funderingsherstelsubsidie", - "uuid": "f4e812f8-5e67-4ced-af12-de2a9099841d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/fytsanexpcert", - "value": "fytosanitair exportcertificaat", - "uuid": "5d60603f-6c17-4fce-b30e-f6f371fd09bb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/garVerklVerblNL", - "value": "garantverklaring verblijf in nederland", - "uuid": "9f87d1ed-95ff-495a-82c6-72d91cce48a9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gasAanslVerzoek", - "value": "gasaansluitingsverzoek", - "uuid": "04d17160-b621-4fea-8364-90d1e359a724" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gastoudburkwaleis", - "value": "gastouderbureaus kwaliteitseisen", - "uuid": "bbb5288e-eabc-4aea-821e-494f066de43c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gastoudopvinrseis", - "value": "gastouderopvang inrichtingseisen", - "uuid": "f1862bf7-7a07-4eef-9ac9-76af49909b2c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gaswgrschverg", - "value": "gaswinning groningen schadevergoeding", - "uuid": "535fb3db-1ee7-40bf-bb29-7f8a6a749e65" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebiedsverbod", - "value": "gebiedsverbod", - "uuid": "bca06cc7-faa7-4431-88cc-41210ca83a7f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geboorteaangifte", - "value": "geboorteaangifte", - "uuid": "7366528a-69e1-4ec3-a752-20ba0e83cd23" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geboorteakte", - "value": "geboorteakte", - "uuid": "a012c56a-185c-4c1d-9700-9cdf1a2fa6bd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geboorteverlof", - "value": "geboorteverlof", - "uuid": "d2f6d46a-f1ba-4f4c-bf4d-569d4d13e3e9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebtijdverhverg", - "value": "gebouw tijdelijkeverhuurvergunning", - "uuid": "e92464e8-2b10-491b-9752-bdb36052e585" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebrAutogordelKinderzOnth", - "value": "gebruik autogordel en autokinderzitje ontheffing", - "uuid": "0a6b1117-d573-409a-a24a-ac9f748bf26d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebruik_gemeentelijke_panden", - "value": "gebruik gemeentelijke panden", - "uuid": "e0569a52-b5cd-4382-8f0e-a757ebd62cc1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebruiksmelding", - "value": "gebruiksmelding", - "uuid": "4167fbb2-d425-4822-9f80-184816f0bfd5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gebruiksmelding", - "value": "gebruiksmelding", - "uuid": "fa7f5c49-a7d0-4584-bfab-95af1bb9f72a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedenktekOpenbWeg", - "value": "gedenkteken openbare weg", - "uuid": "e0a35458-a10a-48cf-86e3-460bf9be80b2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedenkteken_plaatsingsvergunning", - "value": "gedenkteken plaatsingsvergunning", - "uuid": "378048a2-e101-44a3-a5ae-b294168778b8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedoogbeslissing", - "value": "gedoogbeslissing", - "uuid": "db29d0e4-f139-4b90-ab3b-fc11af29dfe5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedoogbeslissing", - "value": "gedoogbeslissing", - "uuid": "35f8b2eb-9968-410c-b69e-e98abedd5796" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedrcdnatbes", - "value": "gedragscode natuurbescherming", - "uuid": "ca71ba69-9e19-46c7-9ced-05c801b73a8d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedwOpnPsychInstKlacht", - "value": "gedwongen opname psychiatrische instelling klacht", - "uuid": "21c85c7f-e92c-45f9-a595-8f47e261b3a2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gedwOpnPsychInstKlacht", - "value": "gedwongen opname psychiatrische instelling klacht", - "uuid": "9b213d41-66db-452d-bcc9-d2fa7f9b7b0f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geenPrivGebrAutoVerkl", - "value": "geen privégebruik auto verklaring", - "uuid": "9d9d616d-97b7-4bf8-ad4f-c409a0946e98" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart", - "value": "gehandicaptenparkeerkaart", - "uuid": "7a5ba8b9-533c-4e07-ad8d-bdedb24bf82b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_bestuurder", - "value": "gehandicaptenparkeerkaart bestuurder", - "uuid": "5ea163c4-22bc-425e-9b45-99929b261bb2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_instellingen", - "value": "gehandicaptenparkeerkaart instellingen", - "uuid": "4cef0e6c-7461-4c74-b8a5-f8de95b9d286" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerkaart_passagier", - "value": "gehandicaptenparkeerkaart passagier", - "uuid": "9571d609-560b-4d5c-929c-b60051d2f463" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerplaats", - "value": "gehandicaptenparkeerplaats", - "uuid": "a97a673b-3105-42a6-9185-9062ee953bc9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gehandicaptenparkeerplaats_op_kenteken", - "value": "gehandicaptenparkeerplaats op kenteken", - "uuid": "73feef4c-06d0-46ed-a861-00b04b5b3aac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geluidsbelasting_grenswaarde", - "value": "geluidsbelasting grenswaarde", - "uuid": "c6b7a4fd-0e45-478f-8ae6-c1ed42ed7ff8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geluidsontheffing", - "value": "geluidsontheffing", - "uuid": "76e7d631-e139-47d4-9945-d73c820669b7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geluidsruimteinformatie", - "value": "geluidsruimteinformatie", - "uuid": "74cb6619-bc0e-4781-9758-5fb57df0a70e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeenschappelijke_regelingen", - "value": "gemeenschappelijke regelingen", - "uuid": "29b9f860-8667-441d-927a-23bee57cfcdf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeenschappelijke_regelingen_geschilbeslechting", - "value": "gemeenschappelijke regelingen geschilbeslechting", - "uuid": "4ebdc486-9e15-4b51-bf4a-95b0cbb17751" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeentefinancien", - "value": "gemeentefinanciën", - "uuid": "c53b93fa-6db7-46c8-a9f9-e6ddff132b83" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeentegids", - "value": "gemeentegids", - "uuid": "2a038bda-7de1-42f5-ad49-1c01ca7243b0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeentegrenscorrectie", - "value": "gemeentegrenscorrectie", - "uuid": "c2c607f5-b5c3-457b-b944-e948d96415e7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gemeentelijke_onderscheiding_voordracht", - "value": "gemeentelijke onderscheiding voordracht", - "uuid": "05636a89-0000-476e-8a6e-c091ac8230ae" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geneeskbehover", - "value": "geneeskundige behandelingsovereenkomst", - "uuid": "f8aed81f-5e53-4ab6-b390-cb76e5c212f8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/genbijwnreg", - "value": "geneesmiddelen bijwerkingenregistratie", - "uuid": "c604f7d8-78b1-4ac7-80be-c72a8548e3ff" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/genbijwnmld", - "value": "geneesmiddelen-bijwerkingenmelding", - "uuid": "f1933bae-c0ab-4959-9146-cdfd377def86" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/genmidbergrhverg", - "value": "geneesmiddelenbereidings- of -groothandelsvergunning", - "uuid": "c8712b83-1de1-4325-96fa-e4e45030f898" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geneesmInfoBankInz", - "value": "geneesmiddeleninformatiebank inzage", - "uuid": "ec1fe686-ef08-4565-8f51-06477bb1fee6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geneesmiddelenrecept", - "value": "geneesmiddelenrecept", - "uuid": "4b6b7031-9cd4-4ce0-aaea-604ac59c5838" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gerechtsdeurwaardersregister", - "value": "gerechtsdeurwaardersregister", - "uuid": "977ce02e-f26e-431d-a9ab-a422cc498bf8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschap_omzetting_in_huwelijk", - "value": "geregistreerd partnerschap omzetting in huwelijk", - "uuid": "b127ef27-4d37-43d4-80ab-43f754798bb0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschap_ontbinding", - "value": "geregistreerd partnerschap ontbinding", - "uuid": "7e6924b1-80c2-4692-8ab0-c418841ab556" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geregistreerd_partnerschapaangifte", - "value": "geregistreerd partnerschapaangifte", - "uuid": "8885a5ee-f849-4f99-9bb2-41af86cc71cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/geslachtswijzigingsaangifte", - "value": "geslachtswijzigingsaangifte", - "uuid": "a96039c8-4a7f-477d-860b-87ebe93a7311" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gesubsRechtsbijstMed", - "value": "gesubsidieerde rechtsbijstand en mediation", - "uuid": "333a84cb-0caf-4678-b021-650a0edaf795" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/getuige_strafz_onkvergoeding", - "value": "getuige strafzaak onkostenvergoeding", - "uuid": "91e6de1d-bc10-4d95-91a6-c993cdcee0aa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gevVerlVoorwerp", - "value": "gevonden of verloren voorwerp", - "uuid": "dd49c4bb-f3ec-437b-91c4-82e547a9f360" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gewBezwDPlErk", - "value": "gewetensbezwaren militaire dienst erkenning", - "uuid": "b4ec09f5-0e43-4637-9f11-8e820ef3e628" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gewVerdSchVerg", - "value": "gewezen verdachte schadevergoeding", - "uuid": "53a2be4b-2db7-40ab-8b01-8d0a9744b470" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gezagsregUittr", - "value": "gezagsregister uittreksel", - "uuid": "769c95f4-45ba-40d1-9cf6-1659406ccaaf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gezGezag", - "value": "gezamenlijk gezag", - "uuid": "b656d4f3-4143-4d56-abff-50d07530bd31" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gezGezag", - "value": "gezamenlijk gezag", - "uuid": "234a95a2-6778-444a-82a9-5862d1459a7f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gezondheidsdienst", - "value": "gezondheidsdienst", - "uuid": "e56398f6-1c86-41eb-b231-ec61b983ae46" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gezondheidsopvoeding", - "value": "gezondheidsopvoeding", - "uuid": "1c262b90-76a2-47a0-baa3-9d697d97785e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ggovergingepgebr", - "value": "ggo-vergunning ingeperkt gebruik", - "uuid": "c8465395-f7c6-48eb-835e-7fb7ae03f9aa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ggovergintrmil", - "value": "ggo-vergunning introductie in milieu", - "uuid": "65538ecd-582f-4739-8223-c3e175b5f2ff" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ggovergvoeddierv", - "value": "ggo-vergunning voeding en diervoeder", - "uuid": "926ce130-318a-4f0f-a524-cb525650ac37" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gladheidbestrijding", - "value": "gladheidbestrijding", - "uuid": "40e479d1-1cfe-43fd-a12b-80c63b322e56" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/graafmelding", - "value": "graafmelding", - "uuid": "714af1ba-07bf-49b2-ae7d-987961c3796f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grafonderhoud", - "value": "grafonderhoud", - "uuid": "6c3afcfd-cf7f-49d7-b9d2-192519fa1bbd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grafonderhoud", - "value": "grafonderhoud", - "uuid": "d7118318-c268-471b-8a8f-8aeefa3fad99" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grafrechten", - "value": "grafrechten", - "uuid": "33c127c4-e898-41a1-84d3-b01a69afb697" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grafuitgifte", - "value": "grafuitgifte", - "uuid": "e3f30f7d-de49-4e09-9a6e-3ff231e9839d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gratie", - "value": "gratie", - "uuid": "5d203525-b60e-4951-a878-98f11dd0aa2f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/groenstroken_en_restgronden_kopen_of_huren", - "value": "groenstroken en restgronden kopen of huren", - "uuid": "6aa90521-128c-45eb-ac5b-9118316fd469" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grondexplOvereen", - "value": "grondexploitatieovereenkomst", - "uuid": "b0c7a35f-3d36-45c8-ac08-ae4e9d2d19fa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grondwaterheffing", - "value": "grondwaterheffing", - "uuid": "f54be609-b73a-46f8-9440-58323c87286a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grondwateronttr_schadevergoeding", - "value": "grondwateronttrekking schadevergoeding", - "uuid": "042b7ab5-7bce-4edb-8060-558c7852d4cf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grondwateronttrekkingsvergunning", - "value": "grondwateronttrekkingsvergunning", - "uuid": "7937ada5-2aec-40e1-9172-d8e7628b86d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grondwateronttr_registratie", - "value": "grondwateronttrekkingsvergunning registratie", - "uuid": "4cfacdfc-d7e2-4000-a51e-556dc84776d5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/gronWrdVermSubs", - "value": "groningen waardevermeerderingssubsidie", - "uuid": "d31f2e53-4b34-4a44-921a-9c817d1c0980" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grPlezVaartbew", - "value": "groot pleziervaartbewijs", - "uuid": "f6a9a2fa-ee28-4c38-a581-9026492ce38f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/grootVaarbew", - "value": "groot vaarbewijs", - "uuid": "9624ad15-c0ac-4ad5-9597-e05f8c4e1f14" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handelingen_gemeentefunctionaris_ontheffing", - "value": "handelingen gemeentefunctionaris ontheffing", - "uuid": "72d1b75d-8c0e-494b-adcd-39c92aa543b8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handRegGegVerstr", - "value": "handelsregister gegevensverstrekking", - "uuid": "c15b3b7f-c38c-4a14-85d5-11afd24bd5eb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handRegInschr", - "value": "handelsregister inschrijving", - "uuid": "86bdc6d0-6c34-40d8-8457-cfc9ad28662b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek", - "value": "handhavingsverzoek", - "uuid": "32e431f7-62ed-4481-b734-07a54b47e330" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek", - "value": "handhavingsverzoek", - "uuid": "99d66797-235b-4c3b-88fe-825c928c374f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/handhavingsverzoek", - "value": "handhavingsverzoek", - "uuid": "3fd6e1dd-06b0-4299-aecb-8ec8eceddd66" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/havenverordening", - "value": "havenverordening", - "uuid": "d7777b03-ace9-40af-bf3a-02b1e530272e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hefKortUitbet", - "value": "heffingskorting uitbetaling", - "uuid": "4e85a4b2-ba7b-42fa-842c-607be8b7efd7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/herbegraven_of_alsnog_cremeren", - "value": "herbegraven of alsnog cremeren", - "uuid": "18d87bf0-5ed2-4a3a-96ab-7bd56ba33f8d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/herbestMonSubs", - "value": "herbestemming monument subsidie", - "uuid": "4a047270-8822-465d-83af-914a4e7cd72a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hergebOvInfo", - "value": "hergebruik overheidsinformatie verzoek", - "uuid": "12f907ce-d890-4e99-992a-1f34eaedbca0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hofleverancieraanvraag", - "value": "hofleverancieraanvraag", - "uuid": "efbc4346-7f03-49f5-9d39-af885fcbfd95" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/HogBerUitsprBestRecht", - "value": "hoger beroep tegen uitspraak bestuursrechter", - "uuid": "af43f307-cb1f-4899-9a68-72290c4fff96" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hogOndAanm", - "value": "hoger onderwijs aanmelding", - "uuid": "e9fe8cbf-cde7-4075-b77e-63b326a7d760" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hondenbelasting", - "value": "hondenbelasting", - "uuid": "45456ef1-8bf2-4f70-8bee-e63b269e5d21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hondenbesluit", - "value": "hondenbesluit", - "uuid": "44c9d816-a713-4dc1-8e7c-634b6a3bd623" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/honderhoudersregistratie", - "value": "hondenhoudersregistratie", - "uuid": "9aafb97c-eca6-4c0e-bdd1-069cf8128bd9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hoogspanningslijn_objecten_plaatsen_onder", - "value": "hoogspanningslijn objecten plaatsen onder", - "uuid": "f015004d-c648-4270-90c3-952b5ca90e18" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hoorhulpm", - "value": "hoorhulpmiddel", - "uuid": "c0f634fc-04e4-42ad-860d-8e1b30936228" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/horecaExplVrg", - "value": "horecabedrijf exploitatievergunning", - "uuid": "448e22aa-701b-426a-84a0-bb4da28b3a30" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hobedrinreis", - "value": "horecabedrijf inrichtingseisen", - "uuid": "4edeebb9-87fa-4645-a645-c96cabf56e95" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/horecatijdenontheffing", - "value": "horecatijdenontheffing", - "uuid": "13ea2c95-bc63-430c-a9a1-36f4670be31a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/houthandverpl", - "value": "houthandelsverplichtingen", - "uuid": "5ec7375f-b7d2-4a63-abdd-6d927472a34c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hslZdA16A4SchVerg", - "value": "hsl-zuid a-16 a-4 schadevergoeding", - "uuid": "daa03945-45c7-4785-8568-af01170d4bd4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huisdierenpaspoort", - "value": "huisdierenpaspoort", - "uuid": "d77381a0-33c0-4b56-980f-138f06bf76a6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huishoudelijk_afvalinzameling", - "value": "huishoudelijk afvalinzameling", - "uuid": "0af21736-cf8b-462a-8a73-ed2bfa87d694" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huishoudelijk_afvalwatermelding", - "value": "huishoudelijk afvalwatermelding", - "uuid": "da9f4039-33a5-41f3-a3ac-953901f22155" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huishHulp", - "value": "huishoudelijke hulp", - "uuid": "7a907d12-b693-40c5-ac64-374a38fbbb4f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huisnummertoekenning", - "value": "huisnummertoekenning", - "uuid": "92a67abd-e170-4f37-b4a9-fc613b3226ba" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huisvVerblGer", - "value": "huisvesting verblijfsgerechtigden", - "uuid": "934493c2-de23-4c8e-a701-f95358879630" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huisvestingsvergunning", - "value": "huisvestingsvergunning", - "uuid": "2dc09b00-92c7-4f58-b368-cf802f7e8cf4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/hulpmTrapl", - "value": "hulpmiddel voor traplopen", - "uuid": "f5a24640-670a-42b1-93a2-b6c6a83bf1cd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huurders_gron_tegemoetk", - "value": "huurders groningen tegemoetkoming", - "uuid": "07e8b2a9-91e9-4520-8ddc-d396324631b3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huurtoeslag", - "value": "huurtoeslag", - "uuid": "8927ee17-b564-4a42-b20c-a538aff852a8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwelijk", - "value": "huwelijk", - "uuid": "534807e9-64ad-4235-962f-e717046f76fe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwelijkBijVolm", - "value": "huwelijk bij volmacht", - "uuid": "bb1bbf81-17d0-44b8-8c62-d8dd23912fa5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwelijksaangifte", - "value": "huwelijksaangifte", - "uuid": "08d416b7-b76f-469a-b193-fd480f624e45" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwelijksdispensatie", - "value": "huwelijksdispensatie", - "uuid": "6e872ca9-533d-45a3-9a86-447837c16ac9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwGoedRegInsHuwPartVw", - "value": "huwelijksgoederenregister inschrijving huwelijkse voorwaarden of partnerschapsvoorwaarden", - "uuid": "57b0788c-7904-475c-af13-5d74ba9e6cb1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/huwGoedRegInz", - "value": "huwelijksgoederenregister inzage", - "uuid": "d1b56f4b-f5e6-4e5a-abd5-c495e230bf1a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/identiteitsfraudemelding", - "value": "identiteitsfraudemelding", - "uuid": "bd59d630-9ecc-474c-bd60-32f052d36797" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/identiteitskaart", - "value": "identiteitskaart", - "uuid": "42c89bda-be05-48ec-8f8e-594a57863900" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ImplantaatInfoVerstr", - "value": "implantaat informatieverstrekking", - "uuid": "30f13aba-7270-4e3c-9097-a6c02d328550" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbewaringst", - "value": "inbewaringstelling", - "uuid": "fe4cf9b2-05f2-4d07-bb9b-754ad5722b8f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgeringsexamen", - "value": "inburgeringsexamen", - "uuid": "02815027-ae4f-4f9c-808f-707a7eeca6c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgeringsexamen", - "value": "inburgeringsexamen", - "uuid": "c8e6d9ec-e1dc-4ac1-90b6-a4346c5a5757" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbExamAanmeld", - "value": "inburgeringsexamen aanmelding", - "uuid": "54829484-ab1d-4ed4-bc94-186032bddb93" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbExamAanpas", - "value": "inburgeringsexamen aanpassing", - "uuid": "95546fd9-94c1-4d46-913c-136ecd9cf144" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbExamVrijst", - "value": "inburgeringsexamen vrijstelling", - "uuid": "2a90b2fd-e2b9-4f84-897d-078f1ee129eb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbExamVrijst", - "value": "inburgeringsexamen vrijstelling", - "uuid": "1ac5ce32-defc-4133-90c9-77719ef04410" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgeringslening", - "value": "inburgeringslening", - "uuid": "56106d9a-07ad-4f5d-9e57-be82964b9027" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgeringslening", - "value": "inburgeringslening", - "uuid": "078e78ee-315d-4c91-972e-cbe3eb707dad" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgPlOnth", - "value": "inburgeringsplicht ontheffing", - "uuid": "ab9756d8-eb25-4183-a417-72c64e2796cb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgPlOnth", - "value": "inburgeringsplicht ontheffing", - "uuid": "bf480637-662c-4dff-a4d7-38f320f00139" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inburgPlVrijst", - "value": "inburgeringsplicht vrijstelling", - "uuid": "3583f326-ef0a-46d5-8b7e-b00836824c25" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inbTermVerl", - "value": "inburgeringstermijn verlenging", - "uuid": "e0a138db-8264-467c-8fa4-005e2b305a85" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/increginschr", - "value": "incassoregisterinschrijving", - "uuid": "f5b29525-0c4c-443e-b2b9-a570bafcff76" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/indGoedkVoert", - "value": "individuele goedkeuring voertuig", - "uuid": "ba8d79b3-d3b5-45cd-9650-99f07564a790" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/indInkToesl", - "value": "individuele inkomenstoeslag", - "uuid": "5d1a0401-367e-49a7-9902-a0d457bc50e2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/indStudToesl", - "value": "individuele studietoeslag", - "uuid": "b116732a-1dad-4300-9f50-b9d50c47b582" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inkoop", - "value": "inkoop", - "uuid": "89f938db-62b5-487f-8734-ea5fa21f063b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/inreisverbodOph", - "value": "inreisverbod opheffing", - "uuid": "8ea2239b-33ef-4581-9c4c-8c42948b92ec" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/instHoudMonSubs", - "value": "instandhouding monument subsidie", - "uuid": "69e150d6-5d92-4465-b67d-5cc7bd139485" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/integratiesubsidie", - "value": "integratiesubsidie", - "uuid": "fb99ca72-5d7f-46d8-bb66-4916a13c3922" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/integriteitsbeoordeling", - "value": "integriteitsbeoordeling", - "uuid": "3103d211-53f2-46be-a0a7-7d34bd3d9c1a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/internatDiplWaard", - "value": "internationale diplomawaardering", - "uuid": "3e64f6ca-7d27-4e62-8a77-4caaa0530a90" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/intKindOntvMelding", - "value": "internationale-kinderontvoeringsmelding", - "uuid": "76d9b92c-0edd-4f83-8bf4-9cbd8d270006" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/investSubsDuurzEner", - "value": "investeringssubsidie duurzame energie", - "uuid": "48d20b09-a229-4323-90f2-eccb88b8ffbd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/invoerrecht", - "value": "invoerrecht", - "uuid": "090f5367-7368-4e10-9bf1-8faf58082466" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/invoerrechten_vrijstelling", - "value": "invoerrechten vrijstelling", - "uuid": "446f898b-b1c5-4d0a-85b1-f0d6bbce250f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/invorderingsrente", - "value": "invorderingsrente", - "uuid": "1d199307-f449-4d79-a6b3-8f208004ecb0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ioaw-uitkering", - "value": "ioaw-uitkering", - "uuid": "cce85b5f-bdfa-473c-9b22-8e223c34de92" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ioaz-uitkering", - "value": "ioaz-uitkering", - "uuid": "431fd975-3b36-4380-ae34-a04173ae5bc2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/iowUitkering", - "value": "iow-uitkering", - "uuid": "70d76e49-8ecd-46a0-8bed-60795a6c8ce7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jachtakte", - "value": "jachtakte", - "uuid": "e8e9b743-b6d3-4531-b64b-83a10e0e87cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdgezondheidszorg", - "value": "jeugdgezondheidszorg", - "uuid": "21eafa31-05a8-4f2e-9aca-15b0617e4c52" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdhulp", - "value": "jeugdhulp", - "uuid": "855a33c9-575b-4484-ad41-97880e6ed398" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdhulpKlacht", - "value": "jeugdhulp klacht", - "uuid": "21981fa4-c7bb-47dc-8bc5-bcc106f66065" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdhulpdossier", - "value": "jeugdhulpdossier", - "uuid": "a07ac71b-7d57-4d2d-8cdf-e94ef282a807" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdBijrVrAutoVerkl", - "value": "jeugdige bijrijder vrachtauto verklaring", - "uuid": "9e22522c-e2db-4e68-a48c-c4f3302a765c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jeugdsportsubsidie", - "value": "jeugdsportsubsidie", - "uuid": "1d5e9823-62fe-4c8a-8d3a-1ae63b6f6cdf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/jongHandicOndVoorz", - "value": "jongeren met een handicap onderwijsvoorziening", - "uuid": "a437c08d-b1ff-4c23-8fa4-090626eb2dd9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kabels-_en_leidingenvergunning", - "value": "kabels- en leidingenvergunning", - "uuid": "d7ed50e5-40c2-4d2d-a937-613b7cf8a5c9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kabels-_en_leidingenvergunning", - "value": "kabels- en leidingenvergunning", - "uuid": "50c6ddd0-9586-4ebc-acd4-2234a62296b3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kadastrale_gegevens_kopie", - "value": "kadastrale gegevens kopie", - "uuid": "f52b4ada-8aeb-4f5b-a21a-6f4f76483fa5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kalkstwinverg", - "value": "kalksteenwinningsvergunning", - "uuid": "f404c18e-93c6-4ce1-890a-02660e139e01" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kampAutTatMrb", - "value": "kampeerautotarief motorrijtuigenbelasting", - "uuid": "ff4ed4ba-ab14-4d48-bd00-695840929f29" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kampeeronth", - "value": "kampeerontheffing", - "uuid": "5a9be2bf-5545-4210-b624-f2e20d49f714" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kansspelautomaatvergunning", - "value": "kansspelautomaatvergunning", - "uuid": "4ac4becd-2460-4c26-a650-2aa10ae51836" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kansspelvergunning", - "value": "kansspelvergunning", - "uuid": "e41f7c3d-d1ea-4274-ad10-c996577e2c7b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kentekenbewijs", - "value": "kentekenbewijs", - "uuid": "ee041e3f-ab7e-4412-a3dc-75ca4ef7ab75" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kentekOverschOverdrPart", - "value": "kentekenoverschrijving bij overdracht particulieren", - "uuid": "17e69558-169f-4280-ac31-baec0f05fbdf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kentekOverschOverl", - "value": "kentekenoverschrijving bij overlijden", - "uuid": "ca9a6352-248e-4d85-a56f-21339c0856a7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kentekRegInz", - "value": "kentekenregister inzage", - "uuid": "185ab72f-df2d-4db8-b713-99c0be44e326" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kentekenschorsing", - "value": "kentekenschorsing", - "uuid": "3731a4f9-54ef-4482-8add-5cb250344e2b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/keur", - "value": "keur", - "uuid": "1f4e8928-9248-4c6c-8b1f-0cd99d21540f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/keurmerk", - "value": "keurmerk", - "uuid": "8cd56293-2da3-44d2-bf80-f7d42e66152b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kiezerspas", - "value": "kiezerspas", - "uuid": "883e00e6-6e7a-421a-8eac-ecbfd3f8006e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kinderbijslag", - "value": "kinderbijslag", - "uuid": "143b0eb6-7d9b-4dab-b254-e7fae6241b96" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kindercentrum", - "value": "kindercentrum", - "uuid": "70cb6986-53a6-46a1-a4ab-e1e0a9a27b08" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kindopvinreis", - "value": "kinderdagopvang inrichtingseisen", - "uuid": "2c010990-a933-415c-9a65-936eb6f2fa07" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kinderdagverblijf_medisch", - "value": "kinderdagverblijf medisch", - "uuid": "dc840975-2009-4ec5-bbae-a0e5b6291ff8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kinderopvangtoeslag", - "value": "kinderopvangtoeslag", - "uuid": "acee0889-922f-402e-8661-afd94e47875b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/KinderOpvToeslagTegemoetk", - "value": "kinderopvangtoeslag tegemoetkoming", - "uuid": "5fe775d6-d1be-432c-87ac-c213b0289f16" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kindGebBud", - "value": "kindgebonden budget", - "uuid": "5cde6d97-1482-4396-aa81-54041c4f67eb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klacht", - "value": "klacht", - "uuid": "bbc517b9-17d3-4904-a10a-ead4143c674c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klacht_ombudsman", - "value": "klacht ombudsman", - "uuid": "c6aa6365-5d82-4058-9cd6-ecfaa302cd90" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klachtVerghInterlAdopt", - "value": "klacht vergunninghouder interlandelijke adoptie", - "uuid": "71c3be6f-142a-4430-8920-cbd1ecf13d04" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klachtZorgaanbieder", - "value": "klacht zorgaanbieder", - "uuid": "bf0475f0-d9ef-4f0d-a490-798776c8b704" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klachtZorgaanbieder", - "value": "klacht zorgaanbieder", - "uuid": "2cc2dd36-b79d-4a0d-bc43-8044902fd2c9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klachtZorgverlener", - "value": "klacht zorgverlener", - "uuid": "a3dabbf2-3791-4cb8-a0e7-524132ea0b7d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/klVaarbew", - "value": "klein vaarbewijs", - "uuid": "3e8d489d-80e8-4e16-8189-a5c0df087e74" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kleine_landschapselementensubsidie", - "value": "kleine landschapselementensubsidie", - "uuid": "2461a45f-f425-44da-ab69-0c1bd971996e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kleine_landschapselementensubsidie", - "value": "kleine landschapselementensubsidie", - "uuid": "cf0a5e89-8ddc-49d9-8b84-1216bc1f5a4e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/koninklijk_predicaataanvraag", - "value": "koninklijk predicaataanvraag", - "uuid": "a00aa63a-6acd-475f-bf4b-60ef138268b2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/koninklijke_onderscheiding_voordracht", - "value": "koninklijke onderscheiding voordracht", - "uuid": "80e755f2-5f44-46f1-93f5-c782fbf0f81c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/koolwaterstoffenwinning_afdracht", - "value": "koolwaterstoffenwinning-afdracht", - "uuid": "2e3a64ac-9dbb-4456-aab6-ce0a400ae416" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/koopRegGdInschr", - "value": "koop registergoed inschrijving", - "uuid": "600bd220-e5ad-40b8-b7d0-772669ca5ffa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/koopzondageninformatie", - "value": "koopzondageninformatie", - "uuid": "4788f34e-a89b-4d94-b7e4-7dd4b631082b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kostentoedeling", - "value": "kostentoedeling", - "uuid": "e1ae167c-2fde-42b9-9618-35fe9af6fdaa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kunstkoopreg", - "value": "kunstkoopregeling", - "uuid": "97fd4a93-b2fd-411e-a497-f9f547bc0d02" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/kunstzinnige_vormingsubsidie", - "value": "kunstzinnige vormingsubsidie", - "uuid": "b896493f-4486-46d9-a4ff-1b677992b562" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/laadpaalverzoek", - "value": "laadpaalverzoek", - "uuid": "b6e56aa6-f2f8-4b88-b354-99cf800d871c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/landgoedAanmerking", - "value": "landgoed-aanmerking", - "uuid": "c49e96d0-df3b-464f-a139-c4c9001aa75d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/landinrichtingsplan", - "value": "landinrichtingsplan", - "uuid": "31579795-39e3-42ca-a2b6-285c08d377ba" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/langduurvakpr", - "value": "lange duur vakantieproduct", - "uuid": "ba255455-28c7-47ec-bb61-d1ce64f6b138" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leeftijdsgrSpecOndOnth", - "value": "leeftijdsgrenzen speciaal onderwijs ontheffing", - "uuid": "3d4e2007-c93b-4785-837d-64d6f1da0c94" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer", - "value": "leerlingenvervoer", - "uuid": "14cfc53d-e7c4-465e-8755-56fa9d2416ac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer", - "value": "leerlingenvervoer", - "uuid": "e6f8c109-9024-4efe-aa26-5935b16fee7c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerlingenvervoer", - "value": "leerlingenvervoer", - "uuid": "8f7a8055-43fe-4157-b4ad-a72266ba83f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerlinggebonden_financiering", - "value": "leerlinggebonden financiering", - "uuid": "a9606b6f-644e-4305-ad0e-310aadd68119" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerplichtverzuimmelding", - "value": "leerplichtverzuimmelding", - "uuid": "79fce1d8-82cd-4ac4-a93c-e80150e11a27" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerplichtvrijstelling", - "value": "leerplichtvrijstelling", - "uuid": "5879a591-d1e2-4fea-ade3-fe12aec2664f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leerwegonderstOndToel", - "value": "leerwegondersteunend onderwijs toelating", - "uuid": "c541845c-f6d0-494a-9517-6f30b6d8dc87" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/legalisatie_document", - "value": "legalisatie document", - "uuid": "d96b0c21-5d79-4169-aa3d-18feedff6944" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/legalisatie_document", - "value": "legalisatie document", - "uuid": "44c79309-adef-409b-b8f8-ac77bed52fbf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/legalisatie_handtekening", - "value": "legalisatie handtekening", - "uuid": "09ef262e-1152-431d-b9ed-2d94705e876a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leges", - "value": "leges", - "uuid": "8f65eeaf-0cee-45aa-8346-1d66fea83fcf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leges", - "value": "leges", - "uuid": "54b83f12-5cfe-4d44-9d6f-3d6ce3fcf8a4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/leges", - "value": "leges", - "uuid": "53164945-0b7e-4052-b147-fd0231bcaef7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lerarenPromBeurs", - "value": "leraren promotiebeurs", - "uuid": "1e6e94c4-d0f3-44ac-8ae7-aad3e05f764d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lerarenbeurs", - "value": "lerarenbeurs", - "uuid": "af68b4b2-2812-4cf4-8476-5996836342ee" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lerarenbeurs", - "value": "lerarenbeurs", - "uuid": "00134174-8667-4add-8faa-475c4c9f256e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lesgeld", - "value": "lesgeld", - "uuid": "8b725906-a098-46a9-8610-cf4db85abff3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lesgeldBuitInvSt", - "value": "lesgeld buiteninvorderingstelling", - "uuid": "f9287898-817c-4c6d-8a0a-7861e2e50326" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lesgeldTerBet", - "value": "lesgeld terugbetaling", - "uuid": "2e035194-ec25-4bc9-a245-c202e04b4f1e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/levenlanglerenkrediet", - "value": "levenlanglerenkrediet", - "uuid": "9b4f7789-960f-46d4-97d3-30d2ec753786" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/levmiddbedrerk", - "value": "levensmiddelenbedrijferkenning", - "uuid": "a2833826-737e-4cfa-9b2a-1545b001180a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/levmiddbedrreg", - "value": "levensmiddelenbedrijfregistratie", - "uuid": "4b844d73-a816-4b44-a5a7-16e9e7c65e6c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lichmatdontstverg", - "value": "lichaamsmateriaaldonortestvergunning", - "uuid": "4faf8cbc-3308-4cc9-83ed-f1f794dddad6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lichmaterk", - "value": "lichaamsmateriaalerkenning", - "uuid": "6eecafa3-17a8-4547-a606-4743436c7425" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ligplaatsvergunning", - "value": "ligplaatsvergunning", - "uuid": "41891b04-922a-46ba-8e70-45e8c04685f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/liqMiddAangBinnenkVerlEU", - "value": "liquide middelen aangifte bij binnenkomst of verlaten EU", - "uuid": "398b6d5e-ace1-4e03-aace-f7c6a3f8dead" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/logeerhuis", - "value": "logeerhuis", - "uuid": "97c6d73d-c893-48d3-a4b3-eb26592e324c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/lokale_omroepsubsidie", - "value": "lokale omroepsubsidie", - "uuid": "609bb071-151e-417c-8028-eb108510fab5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loonpvvinh", - "value": "loon premie volksverzekering inhouding", - "uuid": "854ec028-5fba-4a85-8b9c-57f76740950c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loonpwvinh", - "value": "loon premie werknemersverzekering inhouding", - "uuid": "fd6180dc-bacc-4e34-bf2f-b44df984e955" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loonbelasting", - "value": "loonbelasting", - "uuid": "bae1a5d9-3cac-431e-8fd1-2b695e9b5a2f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loonkostSub", - "value": "loonkostensubsidie", - "uuid": "23ae02d2-448b-4b48-b51d-d0bd3e97af61" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loonsuppl", - "value": "loonsuppletie", - "uuid": "7f6f3767-481e-4b5e-8416-9f99abfefcb1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/loophulpmiddel", - "value": "loophulpmiddel", - "uuid": "2cdf1c0c-636d-4677-bd64-76235ab5d262" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtkwaliteit", - "value": "luchtkwaliteit", - "uuid": "9b6fc2eb-47b5-4cd0-ac96-ea869775196e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvGeluidscert", - "value": "luchtvaart geluidscertificaat", - "uuid": "13fd32fa-cd91-4a13-a46b-8f72d0008831" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvGeluidsverklaring", - "value": "luchtvaart geluidsverklaring", - "uuid": "a50b9ae5-e5dd-4084-982d-618fa53e1514" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvVoorvalMelding", - "value": "luchtvaart voorvalmelding", - "uuid": "34003d18-62b7-4b51-900e-3a4ad224ee8a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvVoorvalMelding", - "value": "luchtvaart voorvalmelding", - "uuid": "63fb36f7-5e45-41ed-adfb-451b69afa968" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvaartregister", - "value": "luchtvaartregister", - "uuid": "b18eebe1-b100-4fd4-9ade-0ea9724d7f98" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvaartuig_teboekstelling", - "value": "luchtvaartuig teboekstelling", - "uuid": "d04a66d3-4e7e-411b-9325-5f0d848b84f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/maaltijdservice", - "value": "maaltijdservice", - "uuid": "8eb02108-c9cc-43b0-98f9-bceb228a6456" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/maatrEindexBer", - "value": "maatregel eindexamen beroep", - "uuid": "644164e8-ce00-48d1-8354-bd0b7478798b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/maatschappelijke_dienstverleningsubsidie", - "value": "maatschappelijke dienstverleningsubsidie", - "uuid": "e0e56e37-a9d2-4733-8c34-01e31044fabc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/maatschappelijke_zorgsubsidie", - "value": "maatschappelijke zorgsubsidie", - "uuid": "7861b3f4-79a8-4cc5-bf09-4399dba36afc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/machtVoorlVerbl", - "value": "machtiging voorlopig verblijf", - "uuid": "2ba0f212-42b6-4d27-8dd3-4c24012a0960" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mantelzorgcompliment", - "value": "mantelzorgcompliment", - "uuid": "4c437624-bc27-4d07-b735-92d68783df81" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mantelzorgondersteuning", - "value": "mantelzorgondersteuning", - "uuid": "971c7b30-1a20-46f7-8d6d-d89d2c16fc0a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/marktgelden", - "value": "marktgelden", - "uuid": "23050038-c2a7-44ca-b74b-77d3b63b21ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mrktmanhandvwsmld", - "value": "marktmanipulatie of handel met voorwetenschap melding", - "uuid": "ae4add2d-cc8a-4bd4-b2d5-8f1f3e64f56f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/marktvergunning", - "value": "marktvergunning", - "uuid": "77a9426a-5839-4357-8050-b9852458e37c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mboStudFonds", - "value": "mbo-studentenfonds", - "uuid": "19459995-dd1c-4bdc-a701-e208d985bec7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mboVerklaring", - "value": "mbo-verklaring", - "uuid": "ab4600a0-2b48-4530-a099-11f8a432e96a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mededelingen", - "value": "mededelingen", - "uuid": "3a6b0031-f542-41ad-aa42-b7a8fa7b750a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medicOpReisVerkl", - "value": "medicijnen mee op reis verklaring", - "uuid": "d305dcd9-4ab6-4064-8e12-3c52bed2fa47" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medischDossier", - "value": "medisch dossier", - "uuid": "0b33f87a-7fe6-4b01-bd25-3c1304c3e2c6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medischHaalbOndLetSchSubs", - "value": "medisch haalbaarheidsonderzoek letselschade subsidie", - "uuid": "adfbc419-3c56-4493-81db-f46375f40254" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medspectitel", - "value": "medisch specialistentitel", - "uuid": "6112097f-248a-41bb-afaf-35169301d79b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medVervoer", - "value": "medisch vervoer", - "uuid": "b9b530a5-90dc-41c6-89ed-cb09db174392" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medhlpmiddeis", - "value": "medische hulpmiddelen eisen", - "uuid": "a76b5a15-477e-43a6-a776-dc1d72258d6f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/medKeur", - "value": "medische keuring", - "uuid": "3af747b7-4bbb-4fc6-a39f-82c5ad6c1448" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/meerderjarigheidsverklaring", - "value": "meerderjarigheidsverklaring", - "uuid": "6e734382-4fb6-4b11-ba29-bc5c87ec659b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mldcdhuisgewkndmis", - "value": "meldcode huiselijk geweld en kindermishandeling", - "uuid": "02b76e45-c63a-4cfa-bd45-7bcda8c4fec6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/discrMeldGemVoorz", - "value": "melding gemeentelijke antidiscriminatievoorziening", - "uuid": "7d84a2c7-5ff5-42e5-bf4f-59ef3511e482" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(algemeen)", - "value": "melding openbare ruimte (algemeen)", - "uuid": "8a5b9336-4b6e-47c0-a08e-bcf63b9688a4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(groenvoorziening)", - "value": "melding openbare ruimte (groenvoorziening)", - "uuid": "19517ccd-7d5a-4044-9de7-a6a25d60c153" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(straatmeubilair)", - "value": "melding openbare ruimte (straatmeubilair)", - "uuid": "c9e824a9-82e2-4a4a-aee6-a635a18c4a16" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/melding_openbare_ruimte_(straatverlichting)", - "value": "melding openbare ruimte (straatverlichting)", - "uuid": "16d9c978-3827-436f-9c1e-07e0e34e407b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/meldpuntAlg", - "value": "meldpunt algemeen", - "uuid": "056ebb44-c7f2-4a3c-8e29-a3c30ab60aa8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/meldpuntZorgfraude", - "value": "meldpunt zorgfraude", - "uuid": "6f731d7f-6c8a-4b99-9148-fcdbb8d38d23" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mentorschap", - "value": "mentorschap", - "uuid": "a3027d67-ab10-4f82-9c7c-3a647abd6376" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/meubelaanp", - "value": "meubelaanpassing", - "uuid": "4b8d448b-89f8-4e5f-a7e0-774717dddd43" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/middSchKlacht", - "value": "middelbare school klacht", - "uuid": "744b643e-78aa-46b9-8637-c421732943d7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/middeling", - "value": "middeling", - "uuid": "3e9349c6-84d8-4041-961a-2b3122cdc50e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mijnbSchVerg", - "value": "mijnbouw schadevergoeding", - "uuid": "7b9753db-0a5a-4747-b615-7ef2c85a4f3d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/milieu_provinciale_subsidie", - "value": "milieu provinciale subsidie", - "uuid": "3d4c5adf-e6a9-415a-9a9a-d0934dc3c248" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/milieuinformatie", - "value": "milieuinformatie", - "uuid": "d11edc56-6947-4696-bc0c-8507609ba501" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/milieuontheffing", - "value": "milieuontheffing", - "uuid": "7b0df962-cddf-48a8-a450-2670b32efb28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/milieuverslag_bedrijf", - "value": "milieuverslag bedrijf", - "uuid": "e72f2ba3-3478-4a07-89aa-a0ffc73662f7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/milieuvriendelijk_bouwsubsidie", - "value": "milieuvriendelijk bouwsubsidie", - "uuid": "903b86d6-b86c-4abb-8554-1c7741ba5716" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/militInvalPens", - "value": "militair invaliditeitspensioen", - "uuid": "40913f1d-4b89-4a57-94a6-eb133d0182c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/minderhedensubsidie", - "value": "minderhedensubsidie", - "uuid": "74179b15-c0c8-4e7d-9905-73685af3e7d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/minimumloon", - "value": "minimumloon", - "uuid": "a071673b-8e3c-451e-9caa-a4cc66f2e920" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mobPuinbrGebr", - "value": "mobiele puinbreker gebruiksmelding", - "uuid": "38f1dc2e-067c-4481-ba93-89307b6cefad" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mobCommVerg", - "value": "mobiele-communicatievergunning", - "uuid": "5ceeca8d-1bc6-474d-91d3-2207c40968d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/modOvereenkArbRel", - "value": "modelovereenkomst arbeidsrelatie", - "uuid": "7d891678-c2ad-43bb-8388-089d7f3b9953" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/moederschOntkVerkl", - "value": "moederschapsontkenning verklaring", - "uuid": "eaf2da0f-0ba6-48e3-a052-c4d8dc60994d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/monumentaanwijzing", - "value": "monumentaanwijzing", - "uuid": "cede8be5-db8b-477d-bf4e-4c46f952eca9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/monumentensubsidie", - "value": "monumentensubsidie", - "uuid": "d0d3b798-5b29-41ef-a191-33e4a028019b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/monumentensubsidie", - "value": "monumentensubsidie", - "uuid": "2a526849-71ff-4835-adbd-6bcbc52fecdb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/motorrijtuigenbel", - "value": "motorrijtuigenbelasting", - "uuid": "1da12dac-ed3b-4338-abe2-0f5ccf039e9a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/MRBelOvergRegOudereVtgn", - "value": "motorrijtuigenbelasting overgangsregeling oudere voertuigen", - "uuid": "3ae9f62f-9a19-448c-b04e-6c6ca63a43cd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstBuitKent", - "value": "motorrijtuigenbelasting vrijstelling buitenlands kenteken", - "uuid": "7178dfa7-a87c-46b0-89ed-1e0f2b5e6617" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstInvaliditeit", - "value": "motorrijtuigenbelasting vrijstelling invaliditeit", - "uuid": "44264c8a-7496-45f0-a6f1-44cf04d5b300" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstOldtimer", - "value": "motorrijtuigenbelasting vrijstelling oldtimer", - "uuid": "05df013a-df3a-4701-82f0-c60214cecee1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/MRBelVrijstRolstoelinst", - "value": "motorrijtuigenbelasting vrijstelling rolstoelinstallatie", - "uuid": "d408fc86-861f-4490-a9bf-cacc8e4c8715" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/mrbVrijstTVNL", - "value": "motorrijtuigenbelasting vrijstelling tijdelijk verblijf nederland", - "uuid": "09341094-c8eb-4556-b5c8-75ecf6a5e8b6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/museumsubsidie", - "value": "museumsubsidie", - "uuid": "748914d6-1385-4fc4-b65e-478f5260e06a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naamgebruik_verzoek_aanduiding", - "value": "naamgebruik verzoek aanduiding", - "uuid": "ae80c14b-ae86-4153-956e-00ae665858d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naamskeuzeverklaring", - "value": "naamskeuzeverklaring", - "uuid": "adeef7c8-8bf2-4579-9d8c-c119a7cc3a22" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nachtregpl", - "value": "nachtregisterplicht", - "uuid": "0c97a382-a1db-4b36-a40b-95d41cd7a942" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nadeelcompensatie", - "value": "nadeelcompensatie", - "uuid": "e81dcb32-df8b-4df9-ae7d-a1971d3096b4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nalatenschVerkl", - "value": "nalatenschap verklaring", - "uuid": "fee21f8d-1573-478b-8bf8-ff8966bcd00b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/natAccInst", - "value": "nationale accreditatie-instantie", - "uuid": "6815c63a-8a7a-43e6-bc11-74d02bf590c5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naturalisatieceremonie", - "value": "naturalisatieceremonie", - "uuid": "37e2bf9f-b509-4f76-a781-3066a03c6ba7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naturalOptie", - "value": "naturalisatieoptie", - "uuid": "7bcf0c28-c7fc-491b-aac3-490bbcf171af" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naturalisatieverzoek", - "value": "naturalisatieverzoek", - "uuid": "2c13d392-38b0-40d8-893a-dba02bbb8822" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/natuur-_en_landschapsbeheer_subsidiestelsel", - "value": "natuur- en landschapsbeheer subsidiestelsel", - "uuid": "e73cc8d1-7c09-471a-b6ca-7d5beb7baace" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/natuurbeheer_provinciale_subsidie", - "value": "natuurbeheer provinciale subsidie", - "uuid": "bfdd0986-4b4b-482a-9c28-4f0fbbfd909d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/natuurgebied_aanwijzing", - "value": "natuurgebied aanwijzing", - "uuid": "e7014e38-16a2-4967-b969-bb5ca2043f0f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/natuurgebied_vergunning", - "value": "natuurgebied vergunning", - "uuid": "ce68d98b-4fcc-4415-8c5f-367b1f0ff31f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/naziRoofkunstRestVerz", - "value": "nazi-roofkunst restitutieverzoek", - "uuid": "266641ed-327a-40a1-9ee7-b787d7cbf40a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nederlTitelAanvraag", - "value": "nederlandse titel aanvraag", - "uuid": "9af641e6-fa5e-4f10-b9be-162253e27710" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw", - "value": "nietigverklaring huwelijk", - "uuid": "7e438bab-47bf-4b7d-b34e-b735f0a6e313" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw", - "value": "nietigverklaring huwelijk", - "uuid": "0977b586-1c22-426c-b7c4-fcb9ae5860b5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/nietigverklHuw", - "value": "nietigverklaring huwelijk", - "uuid": "5319a09d-a4d6-4c51-bb89-1a8be87cae71" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/noRiskPolis", - "value": "no-riskpolis", - "uuid": "ac993601-58e5-438a-ad62-17b23f075cfe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/noodreisdocument", - "value": "noodreisdocument", - "uuid": "07429bf4-3b6e-476b-8456-f229a461a0fe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/notarisben", - "value": "notarisbenoeming", - "uuid": "2cff20df-6884-454d-a72a-e3d91f163598" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/objectvergunning", - "value": "objectvergunning", - "uuid": "75a36c85-2aec-49fc-9d8d-4e4db19039c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/objectvergunning", - "value": "objectvergunning", - "uuid": "be11e3be-f52a-4e1b-9adc-da52a0528221" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/objectvergunning", - "value": "objectvergunning", - "uuid": "75bd6a4e-fd78-455e-b2f8-042aab8b3d6e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/octrooi", - "value": "octrooi", - "uuid": "122daaf4-4888-4c8f-b45f-d28b82095ce8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/octrooiregister", - "value": "octrooiregister", - "uuid": "0f5c35b8-2977-47d1-a2c7-823cabc2de25" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/olietankMld", - "value": "olietank melding", - "uuid": "3f34ee73-5264-4519-917e-45e63cbb911d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning", - "value": "omgevingsvergunning", - "uuid": "80ae944d-4459-4c7f-9ee4-828f98fcbc59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_aanleg", - "value": "omgevingsvergunning aanleg", - "uuid": "4103f4de-7ce7-43a0-b253-29ea87748546" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_aanleg", - "value": "omgevingsvergunning aanleg", - "uuid": "e568bc59-51d0-4a58-a39f-f5ff81614c1f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_afwijking", - "value": "omgevingsvergunning afwijking", - "uuid": "0bdf677a-e525-404a-b064-927b5a1ae0a9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_alarminstallatie", - "value": "omgevingsvergunning alarminstallatie", - "uuid": "c2a8d93c-23d7-42aa-9b7f-9e598157b1f5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_bouw", - "value": "omgevingsvergunning bouw", - "uuid": "9e5f2a35-c540-46b7-b760-297509cd7fac" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgVgBrvGebr", - "value": "omgevingsvergunning brandveilig gebruik", - "uuid": "d8ded139-78d8-42ab-afd9-9547be0fe2c0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_kap", - "value": "omgevingsvergunning kap", - "uuid": "5a07d0c8-9f1f-4bfc-99ec-045f6630f394" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu", - "value": "omgevingsvergunning milieu", - "uuid": "f11cd750-f257-4a0c-9e57-11904083dfbf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu_revisie", - "value": "omgevingsvergunning milieu revisie", - "uuid": "73d72b39-68f0-4ad7-8f58-455efde5630b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_milieu_verandering", - "value": "omgevingsvergunning milieu verandering", - "uuid": "84285da7-6600-4142-ab1d-3be5edf15ae7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_monument", - "value": "omgevingsvergunning monument", - "uuid": "422f30a8-6d81-407d-a2c4-9d870daae061" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_monument", - "value": "omgevingsvergunning monument", - "uuid": "4085ef4f-15db-41a3-b7ed-9fb4c7d9edb0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgVergNat", - "value": "omgevingsvergunning natuur", - "uuid": "f4959db1-c55e-42f7-a317-429b72c68139" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_opslag", - "value": "omgevingsvergunning opslag", - "uuid": "8ba3e3b8-710c-4b74-8b2f-57069d5922f4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_reclame", - "value": "omgevingsvergunning reclame", - "uuid": "c778947d-acc1-4b82-877b-9d5ff9c16e03" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_ruimtelijke_ordening", - "value": "omgevingsvergunning ruimtelijke ordening", - "uuid": "1dbe9237-7794-4431-b892-2f69a5f77c78" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgevingsvergunning_sloop", - "value": "omgevingsvergunning sloop", - "uuid": "3b2f4d97-e257-45dd-a0d2-1cd83a26e0ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgVgUitweg", - "value": "omgevingsvergunning uitweg", - "uuid": "91a1499b-0ca4-4c01-b482-fae45fcb70be" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omgVgUitweg", - "value": "omgevingsvergunning uitweg", - "uuid": "3e576c35-f9b0-4ec9-a27a-233b83e6262e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omzetbel", - "value": "omzetbelasting", - "uuid": "b5110f2c-1d3a-44c8-8cd7-7e6c7f009e63" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/omzetbelKOR", - "value": "omzetbelasting kleine ondernemersregeling", - "uuid": "0793ef3b-a66e-465c-aa7c-f0ac09d37cc1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onbemFreqGebrVerg", - "value": "onbemand frequentiegebruik vergunning", - "uuid": "3268a471-1a9e-466f-8c08-dba056f224db" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysExplReg", - "value": "onbemand-luchtvaartuigsysteem exploitantregistratie", - "uuid": "d78cdbbb-26d1-44c3-ab19-e76e89b4d1d8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysExplReg", - "value": "onbemand-luchtvaartuigsysteem exploitantregistratie", - "uuid": "8916f1f1-003f-43e3-b63b-2cedf0caeaa9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onbLuchtvSysVaardigheidsb", - "value": "onbemand-luchtvaartuigsysteem vaardigheidsbewijs", - "uuid": "7f4501f6-08db-4721-a181-31010a622eb5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderhoud_infrastructuur", - "value": "onderhoud infrastructuur", - "uuid": "911da23f-d071-4f45-a28f-48d2cd83ff53" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderhRijksmonLen", - "value": "onderhoud rijksmonument lening", - "uuid": "e21c2f13-ac27-4150-9316-7ccf6e19f332" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondhPlVve", - "value": "onderhoudsplan vve", - "uuid": "5d8c63ba-0ca3-4cd6-807a-60229cab236a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondrstverkl", - "value": "ondersteuningsverklaring", - "uuid": "a90d552f-0ee8-4438-a73a-82b011bd8af9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondrstverkl", - "value": "ondersteuningsverklaring", - "uuid": "e048c248-45cb-4a91-9638-01039968445d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderwActSpecOndVrijst", - "value": "onderwijsactiviteit speciaal onderwijs vrijstelling", - "uuid": "2e1cec4c-d7b2-4b14-9b1f-a2ed5fdc1332" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderwBijdSchKstDtVoVavoTgk", - "value": "onderwijsbijdrage en schoolkosten deeltijders vo en vavo tegemoetkoming", - "uuid": "6963a06c-e8bd-4381-947f-2b58c22c8555" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderwBijdSchKstVoTgk", - "value": "onderwijsbijdrage en schoolkosten vo tegemoetkoming", - "uuid": "e826a74d-3ed0-45c9-9194-1878cb13c664" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord", - "value": "onderwijshuisvestingsverordening", - "uuid": "c6f74961-853e-4e78-9c42-276c3dbdcdf3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord", - "value": "onderwijshuisvestingsverordening", - "uuid": "4055481b-65b8-495d-aa2c-8d3a3b220f9d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ondHuisvVerord", - "value": "onderwijshuisvestingsverordening", - "uuid": "8fbe1061-db2a-446b-9a62-4a762ad098e6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderwMastTgk", - "value": "onderwijsmaster tegemoetkoming", - "uuid": "ed9b6338-eddb-43ed-89ca-58e748ab6e59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onderwijssubsidie", - "value": "onderwijssubsidie", - "uuid": "5cda3daa-18d3-4b26-a073-dc4c659a7714" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/oneerlHandPrakVerb", - "value": "oneerlijke handelspraktijkenverbod", - "uuid": "14b809e2-2f24-4b64-98df-decd0c437bf4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ongebrtransmld", - "value": "ongebruikelijke-transactiemelding", - "uuid": "9f0f6c97-88b6-4495-b0da-98c3f2239c0e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ongediertebestrijding", - "value": "ongediertebestrijding", - "uuid": "4b725789-fb71-414f-877e-f06e8ff50c11" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ongewVerklOph", - "value": "ongewenstverklaring opheffing", - "uuid": "0423d970-c789-477c-a3db-5ae630667524" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ongewVoorvalmeld", - "value": "ongewoon voorvalmelding", - "uuid": "7745be2c-95d3-42e2-809e-707043f5cc28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onkruidbestrijding", - "value": "onkruidbestrijding", - "uuid": "cea3f3e5-b9d3-4aa8-98ce-6b8c850418d4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onrmBeslSchadeverg", - "value": "onrechtmatig besluit schadevergoeding", - "uuid": "7032abc8-6dbb-4526-bec9-f369e92d085d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onrmOpnPsInstSchVerg", - "value": "onrechtmatige opname psychiatrische instelling schadevergoeding", - "uuid": "32810323-9a0b-47df-8a3f-6e542959f0d6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onrmOpnPsInstSchVerg", - "value": "onrechtmatige opname psychiatrische instelling schadevergoeding", - "uuid": "ccdc03e5-1ecc-46be-a450-342ab07e4952" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_gebruiksbeperking", - "value": "onroerendezaak gebruiksbeperking", - "uuid": "f834ab2d-ce44-4f64-9fa2-06216815ba1c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop", - "value": "onroerendezaak huur pacht koop", - "uuid": "aff45413-5971-43c8-8bc5-d421f8a89301" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop", - "value": "onroerendezaak huur pacht koop", - "uuid": "83906d23-ce11-4609-b3f7-1dddc9ac0bf8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaak_huur_pacht_koop", - "value": "onroerendezaak huur pacht koop", - "uuid": "3ee01708-fbf1-4979-b94e-7545332503c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaakbelasting_(ozb)", - "value": "onroerendezaakbelasting (ozb)", - "uuid": "19fbf12d-4472-4e4b-ad55-fcb0cf265c53" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onroerendezaakbelasting_(ozb)_kopie_aanslag", - "value": "onroerendezaakbelasting (ozb) kopie aanslag", - "uuid": "5ebccfc3-b232-4dc7-8d48-2d6dc9615056" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontgronding", - "value": "ontgronding", - "uuid": "922ba122-fd3f-4e5f-8b07-93da1eff3ce7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontgrondingsvergunning", - "value": "ontgrondingsvergunning", - "uuid": "95d6f1c3-85ec-4d01-a20f-757232ab1c9e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontgrondingsvergunning_schadevergoeding", - "value": "ontgrondingsvergunning schadevergoeding", - "uuid": "b62fb358-3694-481a-8f4a-61e36ca18e6d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onthefIntSanctie", - "value": "ontheffing internationale sanctie", - "uuid": "5ad5fd18-f09b-484b-b404-e98dccdd4da5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onthVerbBalseming", - "value": "ontheffing verbod balseming", - "uuid": "4f95d36f-3fa4-4585-ab56-ad5744563edb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontleding_stoffelijk_overschot_toestemming", - "value": "ontleding stoffelijk overschot toestemming", - "uuid": "f27e2f5f-53ab-452a-92e8-9912caefe297" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontmoetingsrOuderenhuisvSubsidie", - "value": "ontmoetingsruimte ouderenhuisvesting subsidie", - "uuid": "e6034c6e-df1b-49f3-bee1-388e8f4c31c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontslagreg", - "value": "ontslagregeling", - "uuid": "911241f8-53c7-41fa-839d-ff0e5c0859ee" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onttrekking_weg_aan_het_verkeer", - "value": "onttrekking weg aan het verkeer", - "uuid": "1324e0e0-971b-4424-b8e5-9019d8d5d91a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ontw_advies_stap_subsidie", - "value": "ontwikkeladvies stap subsidie", - "uuid": "b097507c-072a-41c8-afd7-a513e9c98f82" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onvprodmld", - "value": "onveilig productmelding", - "uuid": "ea4deee1-d05c-4c86-9d80-71e099d04f69" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onvvoeddiervmld", - "value": "onveilig voedingsmiddel of diervoedermelding", - "uuid": "1316ea52-91cd-4c4b-89f5-bb4bfedd2502" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/onverwBijstVrz", - "value": "onverwijldebijstandvoorziening", - "uuid": "499fa0bf-cb30-4abf-b842-79f641ce11f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/oorlGetrMrBelVerg", - "value": "oorlogsgetroffenen motorrijtuigenbelasting vergoeding", - "uuid": "2c3772f2-9133-4bea-a7f1-8c2d7183bb3e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/openbare_geestelijke_gezondheidszorg_(oggz)", - "value": "openbare geestelijke gezondheidszorg (oggz)", - "uuid": "9a821651-d7ce-46e6-9b29-49d94fccad5d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opgravingscert", - "value": "opgravingscertificaat", - "uuid": "c262c09f-cb18-4149-8573-385da84a2692" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opheffing_school_expertisecentra_melding", - "value": "opheffing school expertisecentra melding", - "uuid": "2de12524-3884-4bdd-866c-1230a3d9a6df" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opheffing_school_voortgezet_onderwijs_melding", - "value": "opheffing school voortgezet onderwijs melding", - "uuid": "8495cdcb-ea9b-4655-9da6-4a28eb17e328" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opiumontheffing", - "value": "opiumontheffing", - "uuid": "837cbbd9-54cb-42af-9adb-1f9af1894d21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opkoperreg", - "value": "opkopersregister", - "uuid": "ca5a5d0d-eda4-4d69-912c-55b8f26ff72a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opleidingsvergoeding_werklozen", - "value": "opleidingsvergoeding werklozen", - "uuid": "2007bf2b-f390-4da4-b7a4-3b8ec324d630" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/opvoedingsondersteuning", - "value": "opvoedingsondersteuning", - "uuid": "dcf06a72-f272-4f8e-ac4c-9ff93172bb79" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/orgaandonLevenOnkVerg", - "value": "orgaandonatie bij leven onkostenvergoeding", - "uuid": "18e43069-49e7-422a-833f-890d5ca8dc54" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/orgaandonReg", - "value": "orgaandonor registratie", - "uuid": "96a9ebd6-37fc-4c58-b7e2-d390fd5d4827" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ouderschapsvaststelling", - "value": "ouderschapsvaststelling", - "uuid": "66e1f320-f3a8-4fcb-aec0-49ef150cf84a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ouderschapsverlof", - "value": "ouderschapsverlof", - "uuid": "68909643-6465-43e0-8a3b-d04e2906aa18" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ov-begeleiderskaart", - "value": "ov-begeleiderskaart", - "uuid": "b910b5e0-4c52-4895-b97c-63358aeb2d0e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overbrugUitkAow", - "value": "overbruggingsuitkering aow", - "uuid": "8d128636-2085-406a-94fa-b073acb5966f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overdrachtsbelasting", - "value": "overdrachtsbelasting", - "uuid": "7d4d18c8-6b7c-4796-b356-8fd99bdc1e70" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overhEigSchMld", - "value": "overheidseigendom schademelding", - "uuid": "2e20c766-03b0-4922-a20c-fd5a5ed0a80a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlVermPersVerkl", - "value": "overlijden vermist persoon verklaring", - "uuid": "e453fdc3-e861-44e6-96a7-2e38d87542c0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlijdensaangifte", - "value": "overlijdensaangifte", - "uuid": "b87ea2b7-d5a4-4240-aa87-b78e3b2e6fe9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlijdensakte", - "value": "overlijdensakte", - "uuid": "1de376cd-c6cc-4c74-a0dd-b2a896cf2014" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlijdensuitkering", - "value": "overlijdensuitkering", - "uuid": "64aec175-b72d-4ae3-ad13-552c7c0538b5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlUitkAnw", - "value": "overlijdensuitkering anw", - "uuid": "6d4096bc-742b-4adc-8fbc-ff31a1f1084f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlUitkAow", - "value": "overlijdensuitkering aow", - "uuid": "4044448e-f2a9-4b11-b1f1-e238038b5a03" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlUitkWajong", - "value": "overlijdensuitkering wajong", - "uuid": "1f1bd4e4-d004-4e83-9b79-ed68d9c7fd0e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/overlUitkWia", - "value": "overlijdensuitkering wia", - "uuid": "719a3fbe-5b86-4842-bc0b-731146005bb5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/paardachtIdentRegistr", - "value": "paardachtigen identificatie en registratie", - "uuid": "2fe6d6cc-b384-4264-9211-15e9dbd4e87e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/paardachtIdentRegistr", - "value": "paardachtigen identificatie en registratie", - "uuid": "5bec245a-bc24-4c15-95ba-dcfe547c9af0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/paardachtIdentDocument", - "value": "paardachtigen identificatiedocument", - "uuid": "d8dd9818-b739-4038-83d8-48b2d97a51ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pakketreis", - "value": "pakketreis", - "uuid": "59db2988-e734-4ed3-80d2-65dd7413ffeb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/palliatieve_zorg", - "value": "palliatieve zorg", - "uuid": "a29a83da-e5ed-4a8b-a1ce-4344b66a8d63" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerbelasting", - "value": "parkeerbelasting", - "uuid": "5c34df45-8d86-4d42-a80c-03959a460406" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing", - "value": "parkeerontheffing", - "uuid": "45a16178-89ff-404d-8399-96e01bf5504e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_autobedrijven", - "value": "parkeerontheffing autobedrijven", - "uuid": "99da6730-9943-447a-bcbe-cc707dee710c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_blauwe_zone", - "value": "parkeerontheffing blauwe zone", - "uuid": "469cc2d2-714f-4e1e-9177-6daa039b9266" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_grote_voertuigen", - "value": "parkeerontheffing grote voertuigen", - "uuid": "5300d662-9970-4a38-b4d1-98fe60f72090" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeerontheffing_reclamevoertuig", - "value": "parkeerontheffing reclamevoertuig", - "uuid": "765a3a34-4a80-4b8c-96b8-1673bf85ec95" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/parkeervergunning", - "value": "parkeervergunning", - "uuid": "5655286b-6301-42f3-ab82-9bcd7aab9ffb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/partElPersauSubsidie", - "value": "particuliere elektrische personenauto subsidie", - "uuid": "ff105112-78dc-444e-a4f2-348ada6a742f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/paspoort", - "value": "paspoort", - "uuid": "dbba68e5-13ed-480b-9b5e-d7e22018f1fe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/paspTweede", - "value": "paspoort tweede", - "uuid": "d6701de9-d78a-48e2-8812-e999ca927d3b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/peilbesluit", - "value": "peilbesluit", - "uuid": "55000e03-2adf-419e-b589-f8e912f3656a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pensRegInz", - "value": "pensioenregister inzage", - "uuid": "30dc52d8-5da9-4e06-bcee-121614024334" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/personenalarmering", - "value": "personenalarmering", - "uuid": "cee30eee-eb31-41b8-ba24-76d7cdf2fa77" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/personenvervoerconcessie", - "value": "personenvervoerconcessie", - "uuid": "3164787a-c59d-493c-9e97-2832df5d57e5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget", - "value": "persoonsgebonden budget", - "uuid": "17196f36-3ae1-422c-965a-3ea129ff6371" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget", - "value": "persoonsgebonden budget", - "uuid": "bf34040b-3cef-4850-840f-4c4bb7203842" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget", - "value": "persoonsgebonden budget", - "uuid": "8b8f2c51-68c5-435c-9b19-1a0ebdc30b12" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persoonsgebonden_budget", - "value": "persoonsgebonden budget", - "uuid": "64aabe5b-c24d-40d9-b5a9-31560385a656" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pgbJeugdwet", - "value": "persoonsgebonden budget jeugdwet", - "uuid": "17ee1426-0e12-4231-8185-ae353485a199" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pgbWlz", - "value": "persoonsgebonden budget wlz", - "uuid": "eecb6d4b-9b98-4e5f-a0f4-72a41e4442f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pgbWmo", - "value": "persoonsgebonden budget wmo", - "uuid": "28102817-6c06-4322-8b46-a5e8ad674cc1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pgbZorgverz", - "value": "persoonsgebonden budget zorgverzekering", - "uuid": "22640e44-c101-499d-bca4-48926aafa71f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persGegIVDInz", - "value": "persoonsgegevens inlichtingen- en veiligheidsdiensten inzage", - "uuid": "f03bf8c8-7338-4067-83e8-c5006b086d7a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persoonsgegevens_verklaring_onder_eed_of_belofte", - "value": "persoonsgegevens verklaring onder eed of belofte", - "uuid": "49f77a86-ec49-4879-b670-24a2c165168d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/persgegverw", - "value": "persoonsgegevensverwerking", - "uuid": "18633995-c97c-4eb4-8f16-ffad17c6330c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/planschade", - "value": "planschade", - "uuid": "1952a5df-4d89-43a7-ab5b-483f6c8d8571" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/plantenpaspoort", - "value": "plantenpaspoort", - "uuid": "9e70f517-bee9-482c-bb30-b5b7e2f92950" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/plantsnBetrOnth", - "value": "plantsoenen betreden ontheffing", - "uuid": "6d8e5c90-3fa8-4ccb-bee5-28b587336949" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/pleegvergoeding", - "value": "pleegvergoeding", - "uuid": "d6e59002-438d-49cd-9652-de36b33c2088" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/plezierVaartCertificaat", - "value": "pleziervaartuigcertificaat", - "uuid": "53044234-9bf2-4660-a369-218e1c23bacb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/podiumkunstensubsidie", - "value": "podiumkunstensubsidie", - "uuid": "545f812f-7c56-4774-9f49-2a584912fa8b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/podiumkunstensubsidie", - "value": "podiumkunstensubsidie", - "uuid": "a4eaf6ac-d5f0-4e07-b8d5-0a6b0607210c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/politieKlacht", - "value": "politie klacht", - "uuid": "1c243717-90a0-478e-864c-385e6efc190f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/politiegegInz", - "value": "politiegegevens inzage", - "uuid": "2307a86f-3f70-4639-8657-5bbf3f8a9ea5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/polgrpreg", - "value": "politiekegroeperingsregistratie", - "uuid": "0cb35ff1-2b7b-4d18-8b83-2b8fa0c2a8e8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/polgrpreg", - "value": "politiekegroeperingsregistratie", - "uuid": "4a8bc447-36a2-4ca3-b8c1-cd641290b15d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/polgrpreg", - "value": "politiekegroeperingsregistratie", - "uuid": "c3824805-9ec4-4296-88fa-9a758e91d711" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/polgrpreg", - "value": "politiekegroeperingsregistratie", - "uuid": "d85f4e2b-4b67-4f5e-8525-526c17090d3b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/postdnstAanspr", - "value": "postdienst aansprakelijkheid", - "uuid": "f80b044a-a9e7-4d4d-b6b3-9e4ebb373b16" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/praktOndToel", - "value": "praktijkonderwijs toelating", - "uuid": "d4bf0af7-1018-48a8-bedd-857485af2082" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/precariobelasting", - "value": "precariobelasting", - "uuid": "a12443b7-ceba-454d-b47a-44aa79533aa4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursGiftOmz", - "value": "prestatiebeurs in gift omzetting", - "uuid": "41a68fc9-170a-4e70-b013-222d4406c606" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursGiftOmz", - "value": "prestatiebeurs in gift omzetting", - "uuid": "6b300678-8678-425d-bb81-b69f8b1be43c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz", - "value": "prestatiebeurs voorziening", - "uuid": "b2060058-645c-40bc-ae8c-721165dcc203" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz", - "value": "prestatiebeurs voorziening", - "uuid": "d46ba63e-fdff-4a86-a2ad-be901764ec29" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz", - "value": "prestatiebeurs voorziening", - "uuid": "43505b9e-0ebc-4981-86ce-51e9c9bef004" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/prestBeursVoorz", - "value": "prestatiebeurs voorziening", - "uuid": "33acd519-85a7-4e30-ae9a-eaacd6c07aa8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/poAanm", - "value": "primair onderwijs aanmelding", - "uuid": "7c5cd8e3-02c6-4826-8178-2abcab46dd19" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/processtInzBenPartStrafz", - "value": "processtukken inzage benadeelde partij strafzaak", - "uuid": "b5b50590-2d93-49f2-b777-1dc08557dc64" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/proefplWw", - "value": "proefplaatsing ww", - "uuid": "daadd730-e099-404e-80ff-d7ac4b91808c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/project_waterstaatswerk", - "value": "project waterstaatswerk", - "uuid": "64bbd177-f43d-49c8-8392-f7caf7b85bd9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/provinciaal_inpassingsplan", - "value": "provinciaal inpassingsplan", - "uuid": "4f6f79d4-ea72-4d5b-a23a-0295fbc2ca9d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/provinciale_financien", - "value": "provinciale financiën", - "uuid": "4f8925d6-84c9-4058-a30b-0dca5ff27bf4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/provRuimVerordOnt", - "value": "provinciale ruimtelijke verordeningontheffing", - "uuid": "1f2986e8-304e-4879-a56d-faddd1886cc1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/psychotherNaoorlGenVerg", - "value": "psychotherapie voor naoorlogse generatie vergoeding", - "uuid": "a1261c01-c2c6-4db7-abf2-ac22ae4fdf0c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/qkoortstegem", - "value": "q-koortstegemoetkoming", - "uuid": "cccd69f3-34d5-48ab-bed8-9b590f730f03" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/raadKindBesKlacht", - "value": "raad voor de kinderbescherming klacht", - "uuid": "a7f8b8d9-1f06-4d13-9a1a-feddeb36b6bd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/raadsstuk", - "value": "raadsstukken", - "uuid": "c92e9541-8900-4163-8441-9f2dc6215e33" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rampbestrNabestUitk", - "value": "rampbestrijder nabestaandenuitkering", - "uuid": "5fe2f3db-915b-4c76-9fcf-09dd862b5a1c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rampbestrNabestUitk", - "value": "rampbestrijder nabestaandenuitkering", - "uuid": "8902b9b0-8c49-49b3-b924-bb304d4da126" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rampbestrUitkZiekInva", - "value": "rampbestrijder uitkering ziekte of invaliditeit", - "uuid": "2854c9c1-f2ec-494b-8bab-412d2ccde5bf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rampbestrPlan", - "value": "rampbestrijdingsplan", - "uuid": "80a99646-d174-40f3-9d15-3980ac712a0f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rampen_en_zware_ongevallen_informatieplicht", - "value": "rampen en zware ongevallen informatieplicht", - "uuid": "1447e861-798d-4e17-bc30-8f01c2503e72" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/re-integratie", - "value": "re-integratie", - "uuid": "82a7dea1-a3f7-42a0-9e17-4b22db9ab74b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/re-integratie", - "value": "re-integratie", - "uuid": "2b26ad0f-8209-476d-9269-cdba7f78a07e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/re-integratie", - "value": "re-integratie", - "uuid": "0253f4b6-9c76-4743-8828-5f04bf991d21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rechtOrgKlacht", - "value": "rechterlijke organisatie klacht", - "uuid": "6cdfda95-57b2-4a06-b3cc-cd8cadb3315a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rechtOrgKlacht", - "value": "rechterlijke organisatie klacht", - "uuid": "9c153a00-ae33-464d-a382-93486c3dcf4e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rechtmatigheidsformulier", - "value": "rechtmatigheidsformulier", - "uuid": "6f98a532-378c-4f89-96d7-28a7b6824cb2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rechtshulp", - "value": "rechtshulp", - "uuid": "f20476ba-629a-46e0-9b82-12984cedf9f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rechtstrBeroep", - "value": "rechtstreeks beroep", - "uuid": "69b4316e-aa6b-4a46-848c-323fdb1423d4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reclamebelasting", - "value": "reclamebelasting", - "uuid": "13832a46-0863-47de-9400-9761d562458e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reclamemateriaalverspreiding_ontheffing", - "value": "reclamemateriaalverspreiding ontheffing", - "uuid": "48cb58f8-c1d2-444a-b68d-d9d7ba17bea7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reclassKlacht", - "value": "reclassering klacht", - "uuid": "966163be-4e18-4843-b430-d3484e8cda79" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/recreatiesubsidie", - "value": "recreatiesubsidie", - "uuid": "d3e116ae-88a5-480c-9b7d-c2bf78b3fa03" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rectificatie", - "value": "rectificatie", - "uuid": "7e95bf32-7233-4191-aa2f-77ef885ff171" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/referendum", - "value": "referendum", - "uuid": "b7b97148-34fa-4b0e-ad85-b7cbe972095c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regiotaxi", - "value": "regiotaxi", - "uuid": "4999397c-5613-43b7-b669-d609acdf80c2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regArbBepIns", - "value": "register arbeidsbeperkten inschrijving", - "uuid": "5acb585a-59b0-4267-8704-77be466ec35e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/register_gemeenschappelijke_regelingen", - "value": "register gemeenschappelijke regelingen", - "uuid": "78b98aa2-9183-4a45-af88-1d6ad66719ed" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regKindOpvPeutSpZlInz", - "value": "register kinderopvang en peuterspeelzalen inzage", - "uuid": "037d5fb0-fdcb-4771-9919-e710252d797f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/register_kinderopvang_inschrijving", - "value": "register kinderopvang inschrijving", - "uuid": "3aaab4b7-48dd-4c65-97a8-48076c49fd08" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regNietBekostEducatie", - "value": "register niet-bekostigde educatie", - "uuid": "4607289e-988a-4891-9322-da454195dbc7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regInstEnOpl", - "value": "registratie instellingen en opleidingen", - "uuid": "e1be982f-f75e-45b0-99cc-7eb9bf22785a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regInstEnOpl", - "value": "registratie instellingen en opleidingen", - "uuid": "4a281262-2237-406a-a261-db2a4d5031eb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/regnr_toer_woonruimteverhuur", - "value": "registratienummer toeristische woonruimteverhuur", - "uuid": "ad49a1f2-910a-46eb-9567-aae0ced2a798" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reinigingsrecht", - "value": "reinigingsrecht", - "uuid": "755bceaf-faa7-474e-93b6-3b6db6158e4c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reisdocument", - "value": "reisdocument", - "uuid": "db7a75c0-4af1-4e4f-a149-70ecce3b51ef" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reiskostenvergoeding_ziekenbezoek", - "value": "reiskostenvergoeding ziekenbezoek", - "uuid": "f1a48a87-7a2f-45cd-9517-924d9a7ab344" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reisSrvValys", - "value": "reisservice van valys", - "uuid": "b1a1aa85-cbbc-448e-ac7d-8258f872461b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reizMJToest", - "value": "reizen met minderjarige toestemming", - "uuid": "a5b79b39-68bf-4cd0-88ed-813ee6d5454b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/remigrUitk", - "value": "remigratie-uitkering", - "uuid": "f25efac3-6449-4444-b4af-d49e1f015e42" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/reprorecht", - "value": "reprorecht", - "uuid": "fad59270-2583-4357-b0a9-e1e3a99caf8c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/restRijkmonSubs", - "value": "restauratie rijksmonument subsidie", - "uuid": "760c9e50-bf8f-45de-ab8a-577365cc5e9c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewijs", - "value": "rijbewijs", - "uuid": "b9cb24e1-3b15-49c4-ae87-3b3bd215f7f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbAanvraag", - "value": "rijbewijs aanvragen", - "uuid": "7c8d70f6-7040-4441-9f09-d10ae477deea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewijs_buitenlands_omwisseling", - "value": "rijbewijs buitenlands omwisseling", - "uuid": "fac231f1-a8a0-4bf6-a6f5-f018a9281b6d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewEchthVerkl", - "value": "rijbewijs echtheidsverklaring", - "uuid": "06428fb8-70ae-4889-a041-9d2f2a072d3a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewEchthVerkl", - "value": "rijbewijs echtheidsverklaring", - "uuid": "754bf6b5-f321-43fb-abf8-ced2525c9286" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbGezVerkl", - "value": "rijbewijs gezondheidsverklaring", - "uuid": "176c0f7f-d809-459c-9583-2d0a6fdde609" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewijs_internationaal", - "value": "rijbewijs internationaal", - "uuid": "082ba319-088f-4dca-aa99-71bf544102f4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbTerugVerz", - "value": "rijbewijs teruggaveverzoek", - "uuid": "1374f078-9e63-4482-a34f-46c40b1d7ac9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewijs_verklaring_van_geschiktheid", - "value": "rijbewijs verklaring van geschiktheid", - "uuid": "16f254e0-efec-483c-83bd-af51f03c7ffb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbverklrijv", - "value": "rijbewijs verklaring van rijvaardigheid", - "uuid": "7d481e3d-92a2-4c36-9557-10bf747a027a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbVerlengen", - "value": "rijbewijs verlengen", - "uuid": "0f5985fc-d987-4bc9-8957-eb0fbf4752c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewAanvrNaOngVerkl", - "value": "rijbewijsaanvraag na ongeldigverklaring", - "uuid": "4d861319-3bd0-43ce-80ce-99ec7a627815" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewRegUittr", - "value": "rijbewijsregister uittreksel", - "uuid": "db222eb7-953e-4bdc-85a3-f33e230aa895" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijbewRegUittr", - "value": "rijbewijsregister uittreksel", - "uuid": "23ade66a-e54e-428d-a2c5-1cd492dbb59b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijdNatuurOnth", - "value": "rijden in natuurgebied ontheffing", - "uuid": "84e836dc-21ef-4be9-ad5b-2cfe66cd7d8e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijksMonumReg", - "value": "rijksmonumentenregister", - "uuid": "b38d8261-5f28-44aa-94c9-3f1471496077" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rijksvisum", - "value": "rijksvisum", - "uuid": "5880ccff-dd76-4179-9c6f-8c48e30511b8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rioolaansluitingsvergunning", - "value": "rioolaansluitingsvergunning", - "uuid": "35290e7e-aefc-48cb-a1c5-4aab8c142d49" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rioolheffing", - "value": "rioolheffing", - "uuid": "878598da-e28b-4df0-a9a2-2733b9b9f6fc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rioolonderhoud", - "value": "rioolonderhoud", - "uuid": "f784236d-59cc-4df5-b8b2-cb190a845727" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rioolwaterzuivering", - "value": "rioolwaterzuivering", - "uuid": "54df0f2a-0849-4461-9ee4-ca219d463360" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/risicokaart", - "value": "risicokaart", - "uuid": "dc5cdfdd-8229-4623-a7a5-502305259c7d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rniInschr", - "value": "rni inschrijving", - "uuid": "5920ff12-d560-478d-bc14-4983521d4e5a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/roerenderuimtebelasting", - "value": "roerenderuimtebelasting", - "uuid": "229abfcf-4f39-4297-a270-de036b13a49f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/rolstSctMob", - "value": "rolstoel en scootmobiel", - "uuid": "42fed942-32b6-4ca6-ae63-18bf75f888a7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/routeplichtontheffing_vervoer_gevaarlijke_stoffen", - "value": "routeplichtontheffing vervoer gevaarlijke stoffen", - "uuid": "3959c208-5c0c-4ac7-bb26-05b9c736865c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schadeBijRampenTegemoetkoming", - "value": "schade bij rampen tegemoetkoming", - "uuid": "77b4f5cd-792e-4592-bce8-12ed2707df62" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schadefGewMisdrUitk", - "value": "schadefonds geweldsmisdrijven uitkering", - "uuid": "4a36565c-047b-4347-9321-f50e63e45833" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schadevergBenPartStrZk", - "value": "schadevergoeding benadeelde partij strafzaak", - "uuid": "326d1118-1f07-4275-8494-2fb5edfa42bc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/scheidTafelBedInschr", - "value": "scheiding van tafel en bed inschrijving", - "uuid": "1036c4ec-44ae-42c7-b3f5-fe71add3e86f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/scheidTafelBedVerz", - "value": "scheiding van tafel en bed verzoek", - "uuid": "114fd4c2-8e71-4570-a2cf-cfc4ae2d0ac9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/scheidMeldPensFnds", - "value": "scheidingsmelding pensioenfonds", - "uuid": "d3976fbe-a6ca-4dd8-a576-0bbe38602470" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schengenvisum", - "value": "schengenvisum", - "uuid": "27cec208-717d-4856-afec-131a3d107ea8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schenkbelasting", - "value": "schenkbelasting", - "uuid": "808efb02-3486-4137-baac-95e9e0b527d4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schenkbelKwijtsch", - "value": "schenkbelasting kwijtschelding", - "uuid": "15e1abd0-f691-41b2-be36-194fab9a7b48" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schenking", - "value": "schenking", - "uuid": "89b4daa6-fe9c-4ea1-950f-75ca0796f40e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schipTeboekstel", - "value": "schip teboekstelling", - "uuid": "97d09803-6014-45d9-a5b4-31177b189949" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/scholingsvouchWw", - "value": "scholingsvoucher ww", - "uuid": "c255f65f-964c-4ebe-857c-efb0c2e4b8d0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schoolzwemmensubsidie", - "value": "schoolzwemmensubsidie", - "uuid": "31115678-020a-46d8-a3a2-9b75e80b265a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schuldhulpverlening", - "value": "schuldhulpverlening", - "uuid": "e016f0f2-6e15-45b5-ae01-bbb72c12122d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schKwijtsWajong", - "value": "schuldkwijtschelding wajong", - "uuid": "bba6f427-7c3b-4586-be69-546ab9a49a81" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schKwijtsWia", - "value": "schuldkwijtschelding wia", - "uuid": "63b599b0-5bca-4c9c-9128-5cecd753b222" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schKwijtsWw", - "value": "schuldkwijtschelding ww", - "uuid": "e006759e-b877-413b-a0af-d3bf51feff87" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schKwijtsZw", - "value": "schuldkwijtschelding ziektewet", - "uuid": "3328cae9-c1f9-4412-9289-a5f589913866" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/schuldsan", - "value": "schuldsanering", - "uuid": "ac5dc214-fac2-4b61-9517-b772232d7fbd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/seksbedrijf_exploitatievergunning", - "value": "seksbedrijf exploitatievergunning", - "uuid": "557a6029-7e7f-43f1-a190-3c13b775989f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/senWonBijdBwkst", - "value": "seniorenwoning bijdrage bouwkosten", - "uuid": "06ca201c-22cd-4691-9f7c-79f15c65d3d7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/finTegSlachtoffJeugdz", - "value": "slachtoffer geweld jeugdzorg tegemoetkoming", - "uuid": "438f959e-6903-47b0-9375-9341d864f64e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/snelhbegr", - "value": "snelheidsbegrenzer", - "uuid": "411d8df4-4523-4a41-a91f-29d32da7efc7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/snelMbootReg", - "value": "snelle motorboot registratie", - "uuid": "d0df3724-b5b8-4f54-88a9-8dea3d539bc7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/snuffelmarktvergunning", - "value": "snuffelmarktvergunning", - "uuid": "781c76a8-bb8f-4661-885e-bb2ef57ff12f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sociaal-cultureel_werksubsidie", - "value": "sociaal-cultureel werksubsidie", - "uuid": "a7c643ed-df89-4db0-abfa-ebd7b1c7a108" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sociale_werkvoorziening", - "value": "sociale werkvoorziening", - "uuid": "e948e3f9-3d2f-4758-83ba-38b119814d61" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sollicitatieplichtontheffing", - "value": "sollicitatieplichtontheffing", - "uuid": "160fef36-9d5f-46f1-9a35-84dc0f5f2de7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/solliPlOnthWw", - "value": "sollicitatieplichtontheffing ww", - "uuid": "53c25029-c868-4823-918b-d3c41517dd92" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/specBewLuchtwZelfgebVliegt", - "value": "speciaal bewijs van luchtwaardigheid zelfgebouwd vliegtuig", - "uuid": "ab1e63bd-1f9d-4cd3-9ac3-ddc058c9f777" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/specOndKlacht", - "value": "speciaal onderwijs klacht", - "uuid": "25817ee0-0197-4e1d-9d9d-2558ea26ee70" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/specOndToel", - "value": "speciaal onderwijs toelating", - "uuid": "9ca86e98-eaa9-4530-a810-2dde1639b299" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/speelautomaat_exploitatievergunning", - "value": "speelautomaat exploitatievergunning", - "uuid": "030030e6-35d7-4a82-9b80-12e40c75ed12" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/speelautomatenhal_exploitatievergunning", - "value": "speelautomatenhal exploitatievergunning", - "uuid": "acaf8c12-0c68-48b3-9692-1295599cdf89" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/speelvoorziening_kinderen", - "value": "speelvoorziening kinderen", - "uuid": "f26e14c8-efa9-483d-8633-57ec0873bd52" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sportaccommodatieverhuur", - "value": "sportaccommodatieverhuur", - "uuid": "9985e54f-09cd-4f74-acbf-c62a3ba5edfe" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sportactiviteitensubsidie", - "value": "sportactiviteitensubsidie", - "uuid": "1c36b96c-4a5f-4aa5-aefe-191f3b3326ff" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sportactiviteitensubsidie", - "value": "sportactiviteitensubsidie", - "uuid": "13f3de43-0c23-4de2-926f-34bb06d27172" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sportmotoren_geluidsontheffing", - "value": "sportmotoren geluidsontheffing", - "uuid": "79c73325-24fd-4a4b-93d7-80e01e909e69" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/sportpatent", - "value": "sportpatent", - "uuid": "d9bd0c2c-b7ba-44e0-926a-f8056c796f09" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/staatsexamenNt2Aanp", - "value": "staatsexamen nt2 aanpassing", - "uuid": "55c3478f-0c9d-40fd-806b-d2e15b2408f9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/staatsexamenToel", - "value": "staatsexamen toelating", - "uuid": "4217eee2-b2e8-4244-819f-5cb27f54b1be" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/staatsexamenVoAanp", - "value": "staatsexamen vo aanpassing", - "uuid": "04e9158c-2b09-4146-9917-60d8729781f8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stadspas", - "value": "stadspas", - "uuid": "d87946dc-8f3d-4a2d-8a84-3b9e25fde058" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/standplaatsvergunning", - "value": "standplaatsvergunning", - "uuid": "fdf47631-d2d2-4b50-abbd-c38beaf43c26" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/STAPbudget", - "value": "stap-budget", - "uuid": "6d82dc5e-e627-4d69-b02e-574f89971ca1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strtpartbaschlmld", - "value": "starten particuliere basisschool melding", - "uuid": "a630f633-0588-479c-b73b-7a66fc094256" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strtpartschvomld", - "value": "starten particuliere school voortgezet onderwijs melding", - "uuid": "796a0070-0756-41d5-893c-d0d547c48fda" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/startend_ondernemerschapsubsidie", - "value": "startend ondernemerschapsubsidie", - "uuid": "84f2d88b-84e1-477c-ab72-5ab6245f56f7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/starterskrediet_ondernemer", - "value": "starterskrediet ondernemer", - "uuid": "dd1e46a9-1703-4ba5-a4f0-24dbd6109e73" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/starterslening", - "value": "starterslening", - "uuid": "0b0e1e82-85ec-4eb2-9c7c-3cd314561973" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/startkwalPlicht", - "value": "startkwalificatieplicht", - "uuid": "9c683ad6-8684-4a34-8657-543b967b11ea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemmen_per_brief", - "value": "stemmen per brief", - "uuid": "d78994ae-f2fd-4e6f-bad7-dd799aec60d0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stempas", - "value": "stempas", - "uuid": "aead5d0a-2d36-42c4-9fde-986a925a7e5f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemrecht", - "value": "stemrecht", - "uuid": "607824d1-c217-4ae3-bf1f-db08aefd63be" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemrecht", - "value": "stemrecht", - "uuid": "8657a46d-9a90-4c2a-965d-498bb1f02f7d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemrecht", - "value": "stemrecht", - "uuid": "016d8d03-03e7-41d0-8c34-621754d57cf9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemrecht", - "value": "stemrecht", - "uuid": "a7f9e3e9-b398-4f55-a359-fbb33c336af5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stemrecht", - "value": "stemrecht", - "uuid": "9003ec79-6502-443e-a731-66ea304e6ce5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stiltegebiedontheffing", - "value": "stiltegebiedontheffing", - "uuid": "95af20b7-3a2c-4a8d-ad28-66a938a0dd23" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stookonth", - "value": "stookontheffing", - "uuid": "1bf04651-fbc6-40be-a0a1-1271fc8374d9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/storDraadlAppMeld", - "value": "storing draadloze apparatuur melding", - "uuid": "6b6331de-b7de-4c5f-98a9-29e20938de93" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strArtOptrOnth", - "value": "straatartiestoptreden ontheffing", - "uuid": "f98c37ce-1e88-4668-8842-f668dca2f8de" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/straatnaamgeving", - "value": "straatnaamgeving", - "uuid": "812821ee-8aa8-4e41-81c3-89ac934960f4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafbFeitAang", - "value": "strafbaar feit aangifte", - "uuid": "317e0f11-17be-4e84-a2df-edbc062174d1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafbesVerz", - "value": "strafbeschikking verzet", - "uuid": "5a30a79a-78da-4079-80b0-20fcacd227bd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafbladInz", - "value": "strafblad inzage", - "uuid": "74acf353-cf05-4981-92b3-10e338824534" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafbladInz", - "value": "strafblad inzage", - "uuid": "07c3c14b-d4fb-4cf1-8200-12ee3a35a0aa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafbladInz", - "value": "strafblad inzage", - "uuid": "786c1c35-a0af-4bf3-8a35-7ee1b7447324" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/strafzHerzVerz", - "value": "strafzaak herzieningsverzoek", - "uuid": "057970b7-46c5-4fce-b1f3-4fab210c9632" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/stralingsartsDeskReg", - "value": "stralingsartsen en deskundigen registratie", - "uuid": "4e6aefc1-09c5-4e7a-982a-4e643f02ba67" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/structuurvisie", - "value": "structuurvisie", - "uuid": "c77c2918-ae8c-4331-a006-fa07d8793a71" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studOvVerg", - "value": "studenten ov-vergoeding", - "uuid": "7413aa14-1fe7-44a6-9643-f6cb6c2842c9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studReisprodSchVerg", - "value": "studentenreisproduct schadevergoeding", - "uuid": "6b15ccff-c5bf-4fd7-844d-a84df2e975cb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studiefinanciering", - "value": "studiefinanciering", - "uuid": "2140dcdf-33eb-44df-851c-928f0cef2698" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studiefinanciering", - "value": "studiefinanciering", - "uuid": "921847ac-0a94-4724-a939-b46eb9f7152c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studiefinanciering", - "value": "studiefinanciering", - "uuid": "1a4214c7-0cd3-4dc6-9250-3a8693780463" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studiefinanciering", - "value": "studiefinanciering", - "uuid": "52389e9d-1dc3-4cc9-9d4e-d4a5212099fd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/studiekstLerTeg", - "value": "studiekosten leraren tegemoetkoming", - "uuid": "4a54cc8b-8fbd-4cda-81a5-07b67fb4da13" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/subsidie", - "value": "subsidie", - "uuid": "f02dcfeb-13b2-436d-a106-b03376d62d07" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/subsidie", - "value": "subsidie", - "uuid": "132b54d8-3341-4ecc-9017-9ba726ef4f66" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/subsidie", - "value": "subsidie", - "uuid": "6a753e74-c12a-4170-97d0-f3cc1e79d73e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/surcbet", - "value": "surceance van betaling", - "uuid": "f9798333-db0f-4233-9eca-881a66373a7b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/t100busgoedk", - "value": "t100-bus goedkeuring", - "uuid": "dc0d8795-3562-4108-9ded-3ecb1748f575" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tapontheffing", - "value": "tapontheffing", - "uuid": "9bb2760a-037b-4b1f-9198-e807a8fcf229" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tatoeagevergunning", - "value": "tatoeage- of piercingsvergunning", - "uuid": "ea126b91-10bb-428c-811d-67f2a7a85477" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxichkrt", - "value": "taxi chauffeurskaart", - "uuid": "635e3a22-ccd1-482f-8c85-28dfaca403cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxgk", - "value": "taxi goedkeuring", - "uuid": "450943ce-35e0-40c2-897e-ca0dfaebe6c6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxiondkrt", - "value": "taxi ondernemerskaart", - "uuid": "41bbd879-c3e3-4432-a88e-fee0e5099658" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxiInfokaart", - "value": "taxi-informatiekaart", - "uuid": "4a87ddaf-b616-4953-b1d0-bb6f0caadf62" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxichgetschr", - "value": "taxichauffeur getuigschrift", - "uuid": "eb6fb916-db3c-4d04-82c6-21a39833f88d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxivergoeding", - "value": "taxivergoeding", - "uuid": "e0de9d4b-be1b-49b5-a827-dfe316a71520" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxivervoerKlacht", - "value": "taxivervoer klacht", - "uuid": "f5ea8a17-e291-4fac-8278-754574703ca3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/taxivervoersvergunning", - "value": "taxivervoersvergunning", - "uuid": "7c9cbfdb-8073-4d77-830a-c77a0d725d7b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/telecomWetGeschBesl", - "value": "telecommunicatiewet geschilbeslechting", - "uuid": "9df861df-0394-4790-95a0-73e4275a595b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/terrasvergunning", - "value": "terrasvergunning", - "uuid": "896efcf8-f395-43d0-9fda-036f8414747f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/terugbetStuFiOpsch", - "value": "terugbetaling studiefinanciering opschorting", - "uuid": "3be1f126-60fd-4833-89c6-0450f362c137" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/terugkeervisum", - "value": "terugkeervisum", - "uuid": "bedb1a14-3d34-42b3-9680-52a9b3b4d316" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tewerkstverg", - "value": "tewerkstellingsvergunning", - "uuid": "312b30f7-d6d3-474e-99fd-868c21ade0d9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tewerkstverg", - "value": "tewerkstellingsvergunning", - "uuid": "4675fa30-25a3-4d3e-920d-441e6954125b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tewerkstverg", - "value": "tewerkstellingsvergunning", - "uuid": "67128fe0-e283-4713-a27f-c2548b857aba" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/thuiswerkvergoeding", - "value": "thuiswerkvergoeding", - "uuid": "6f297ea3-7c93-412f-b2c4-6da7743450f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/thuiszorg", - "value": "thuiszorg", - "uuid": "c01b4422-8bb4-4edc-82f2-42a35c15a7b6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tijdIncWerkGeregBerMeld", - "value": "tijdelijk en incidenteel werken in gereglementeerd beroep melding", - "uuid": "d57453bf-0df0-4d60-a8ae-7b756be5b572" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tijdHuisverbod", - "value": "tijdelijk huisverbod", - "uuid": "362fd778-85e9-440d-91fa-a603d687ef92" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tijdelijk_luchtvaartterrein_ontheffing", - "value": "tijdelijk luchtvaartterrein ontheffing", - "uuid": "af9a5160-b332-4a51-bc57-36055f735553" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tijdOphGeschKent", - "value": "tijdelijke opheffing geschorst kenteken", - "uuid": "bfce0551-e7fd-48f7-89a6-a36062c3f767" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tijdOphGeschKentEven", - "value": "tijdelijke opheffing geschorst kenteken bij evenement", - "uuid": "da2b5f45-7729-4dc8-b046-752fa5a700ce" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tillift", - "value": "tillift", - "uuid": "d38e2680-c168-43f7-9711-d6e4ba5f7980" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/toerismesubsidie", - "value": "toerismesubsidie", - "uuid": "3f9dda30-fab8-4af0-bed0-f154b8c14bf2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/toeristenbelasting", - "value": "toeristenbelasting", - "uuid": "c11570d8-93bb-463c-bef2-3f83ce9fbdf4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/toeristenvisum", - "value": "toeristenvisum", - "uuid": "69ec6793-d11e-461c-b919-ca2500e72647" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/toeslagToeslagenwet", - "value": "toeslag toeslagenwet", - "uuid": "e4f75aad-866b-471b-a966-e99e9acf2121" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tolk", - "value": "tolk", - "uuid": "162cedc1-bd86-4d62-8bd3-02ead9da8710" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tolkvoorz", - "value": "tolkvoorziening bij auditieve beperking", - "uuid": "41a1e7f6-f3f7-400e-8bd5-18ae7f091016" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/transitokent", - "value": "transitokentekenbewijs", - "uuid": "563ae383-7210-4545-86e8-dc7ff47a9a39" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/trekhondenverbod_ontheffing", - "value": "trekhondenverbod ontheffing", - "uuid": "f23aca22-daf4-4714-b8fe-8cf1fe80105a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/trekhondenverbod_ontheffing", - "value": "trekhondenverbod ontheffing", - "uuid": "28eb6af7-0504-4abd-ba6c-37d0953b6731" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/trouwlocatie", - "value": "trouwlocatie", - "uuid": "a4995c88-3b49-48ca-8b4a-6ea1501048ff" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/tweedeLerarenOplSubs", - "value": "tweede lerarenopleiding subsidie", - "uuid": "24d1db2a-a754-45bc-9542-faedbed808e8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitkVervSlchtoff4045", - "value": "uitkering vervolgingsslachtoffers 1940-1945", - "uuid": "767670a0-8cad-4d4b-847b-a37ef86a5dc2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitlening_gemeentelijke_materialen", - "value": "uitlening gemeentelijke materialen", - "uuid": "fea81318-d60e-42c1-a3fb-c0ca84322f36" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitsprBestRechtHerzVerz", - "value": "uitspraak bestuursrechter herzieningsverzoek", - "uuid": "92614433-39b3-467b-ae93-7235c0a7adcf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitsprHuurcommVerz", - "value": "uitspraak huurcommissie verzoek", - "uuid": "98db8753-0828-463a-8b2e-9ba18cf6a169" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitsprHuurcommVerz", - "value": "uitspraak huurcommissie verzoek", - "uuid": "78d2fbdd-edab-4cac-8251-454cbfe9b182" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitsprhuurcommInz", - "value": "uitspraken huurcommisie inzage", - "uuid": "d2f93897-4c95-4656-b102-4e33b670ea6b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uitvlOntheffing", - "value": "uitvliegontheffing", - "uuid": "be5786f9-53c4-4fc4-a018-e4693d9e061c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/urgBewWoning", - "value": "urgentiebewijs woning", - "uuid": "518f78c6-bb9b-44cf-8591-c0f4511a3cb8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uwvReiskVerg", - "value": "uwv reiskostenvergoeding", - "uuid": "593ce458-49b1-4653-a2e2-626e58a4c9a1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/uwvInzRechtCorrVerz", - "value": "uwv-inzagerecht en correctieverzoek", - "uuid": "5fca8f93-8ff9-4a57-9f93-6d9278ec8754" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vaarvergunning", - "value": "vaarvergunning", - "uuid": "a5f65fe6-e230-44e8-93b1-9dc645d55a2a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vaarweggebruik", - "value": "vaarweggebruik", - "uuid": "0989fdc8-e487-4d70-ae8b-498b29015afd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vacature", - "value": "vacature", - "uuid": "98828d41-d97a-4dfa-8f6a-0b3a6990c7b8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vaderschapsontkenning_verklaring", - "value": "vaderschapsontkenning verklaring", - "uuid": "939e7bd3-0080-4c59-acf9-5a000f3fec12" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vakMldWw", - "value": "vakantiemelding ww", - "uuid": "ce507a81-eb49-42aa-adb4-88e9b489a47a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vakantierecht", - "value": "vakantierecht", - "uuid": "370badde-9fd5-4143-927c-72ea145c122e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vakbekwCert", - "value": "vakbekwaamheid certificaat", - "uuid": "35039700-0d72-406c-8306-f51b2070448f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vakbekwEis", - "value": "vakbekwaamheidseis", - "uuid": "7b24aa05-4e5c-40cd-9d00-72d4ca8cfc7e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/valkeniersakte", - "value": "valkeniersakte", - "uuid": "d1f563aa-91ef-4dac-b4b4-4fa5c26d1c9b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vennootschapsbel", - "value": "vennootschapsbelasting", - "uuid": "d6f0d6cf-2336-44db-aeb1-9f43ad682ee4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ventonth", - "value": "ventontheffing", - "uuid": "65538e40-0d86-4ae2-9a2f-030ae2de1b1e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ventvergunning", - "value": "ventvergunning", - "uuid": "462a4bb7-0422-4acd-b8f4-285ca06d07fa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/veranderen_weg_vergunning", - "value": "veranderen weg vergunning", - "uuid": "5293c98b-d3ff-4955-821d-5f4b97e81ef5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verblijfsvergunning", - "value": "verblijfsvergunning", - "uuid": "540ec114-ffbb-49eb-b04f-9a5b95693212" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verblvergregbeptijd", - "value": "verblijfsvergunning regulier voor bepaalde tijd", - "uuid": "d858992f-7e0d-4eb6-97e6-4ed41135c37d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verbodPermNachtarbOnth", - "value": "verbod op permanente nachtarbeid ontheffing", - "uuid": "083d1d57-c53b-4f39-909e-e66e6001ee99" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verbruiksbel", - "value": "verbruiksbelasting", - "uuid": "89209d5f-121b-4734-9a06-8e37dc60924d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verduurzOnderhoudHuurwSubsidie", - "value": "verduurzaming en onderhoud huurwoning subsidie", - "uuid": "2983ade2-dab4-4844-b591-54c76d6e9c6c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verduurzVveSubs", - "value": "verduurzaming verenigingen van eigenaars subsidie", - "uuid": "2fecdbee-ac0f-4158-bda2-9124fb62fa8c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vereisBenLerVoOnth", - "value": "vereisten benoeming leraar vo ontheffing", - "uuid": "a1faaf71-d180-43a6-8364-606033c99104" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verstamverk", - "value": "vereniging stamboekvee erkenning", - "uuid": "2f69e214-a7f4-4fb2-9bba-7f15bcb0c1f4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verhuismelding", - "value": "verhuismelding", - "uuid": "2a952f39-41d3-4526-907b-9f2f77507e72" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verhuurdersverklaring", - "value": "verhuurdersverklaring", - "uuid": "52d46b90-65a6-46c1-8fb5-d8bc16292113" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeersbesluit", - "value": "verkeersbesluit", - "uuid": "174738ce-b6d2-460d-92a0-72e3a12b9be9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeersbesluitMilieuzone", - "value": "verkeersbesluit milieuzone", - "uuid": "75c80593-6ccb-43ee-b0f9-c376a8be2768" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeersboete", - "value": "verkeersboete", - "uuid": "523d183b-2a8f-4a12-b2ba-930e85ce8608" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeersbrigadier", - "value": "verkeersbrigadier", - "uuid": "67dd07d4-7a83-497a-a5e4-e89ca419de44" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeerscirculatie", - "value": "verkeerscirculatie", - "uuid": "47bdfe12-e3e1-42b1-bfd7-7ab6a0efeeb9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verkeersregelaar", - "value": "verkeersregelaar", - "uuid": "03535ae9-6d5a-4940-8a80-8d2531b94001" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklAfgelExamen", - "value": "verklaring afgelegd examen", - "uuid": "a35f3657-2d99-4619-afc9-07abe6a70dee" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklAfgelExamen", - "value": "verklaring afgelegd examen", - "uuid": "4a04fe33-bc6b-4e8d-bde3-06c7c1628174" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklaring_omtrent_gedrag_(vog)", - "value": "verklaring omtrent gedrag (vog)", - "uuid": "2a3f167c-d586-490c-bb9d-0c38fa85b546" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklaring_positie_molukkers", - "value": "verklaring positie molukkers", - "uuid": "e76d372d-befb-4b19-b9c7-362b7cbdefa0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklaring_van_afstand_nederlandse_nationaliteit", - "value": "verklaring van afstand nederlandse nationaliteit", - "uuid": "d516ec63-3e5d-4f0f-b93d-0d8cd10bf2b9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verklaring_van_huwelijksbevoegdheid", - "value": "verklaring van huwelijksbevoegdheid", - "uuid": "00ae89fe-6897-4479-b2b8-9cc0928255b8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verlBegraven", - "value": "verlof tot begraven", - "uuid": "fce08759-7f25-4ad2-a8a2-9c6012649d4e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vermoeden_van_besmetting_melding", - "value": "vermoeden van besmetting melding", - "uuid": "645c5b36-7b6f-4e25-ac8d-3f53aa18c329" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verontreinigingsheffing", - "value": "verontreinigingsheffing", - "uuid": "20dd5c5b-470b-4290-80c8-b2326534ce32" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verordening_gemeentefunctionaris_goedkeuring", - "value": "verordening gemeentefunctionaris goedkeuring", - "uuid": "1bee7923-f127-4420-b8dc-23bd97f615b4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verslavingszorg", - "value": "verslavingszorg", - "uuid": "41e3947e-cea2-4eb5-865e-d6469bd1e57c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verst_geb_gron_subsidie", - "value": "versterking gebouwen groningen subsidie", - "uuid": "7e681b9a-6c05-47a5-9a28-e42262db44b3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verstrekking_overheidsinformatie", - "value": "verstrekking overheidsinformatie", - "uuid": "325e8da6-da66-4aab-9ae0-a45fe3005ed2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vervKentBewTenStCode", - "value": "vervangend kentekenbewijs of tenaamstellingscode", - "uuid": "95943e97-db1a-45db-a89c-9344cd489b6a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vervOplDoc", - "value": "vervangend opleidingsdocument", - "uuid": "fa32c6e0-2051-426e-a398-14ad737b3f8f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vervangende_leerplicht", - "value": "vervangende leerplicht", - "uuid": "63ec674f-9d41-4abc-8433-b5331358682c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vervoersdocumenten_stoffelijk_overschot", - "value": "vervoersdocumenten stoffelijk overschot", - "uuid": "c050c8cf-c49d-444b-8e10-6778500ceeae" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vervrErfgoedZiensw", - "value": "vervreemding erfgoed zienswijze", - "uuid": "3ea25866-e13e-4442-a185-1fe8d0ee040f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verwdierlbijproderk", - "value": "verwerking dierlijke bijproducten erkenning", - "uuid": "93a724b5-1fba-4341-81b2-a562be6db5c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verwdierlbijprodmld", - "value": "verwerking dierlijke bijproducten melding", - "uuid": "d82d7573-ef65-41f8-a76b-d639d4dfa263" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verwpersgegverantwpl", - "value": "verwerking persoonsgegevens verantwoordingsplicht", - "uuid": "7a75a28b-aca0-4eda-b8eb-dfe8f0429ca3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verwAsbestdakSubs", - "value": "verwijdering asbestdaken subsidie", - "uuid": "6526a2d8-e303-4388-b930-1713e2b75963" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzekPlSocVerzOnth", - "value": "verzekeringsplicht sociale verzekeringen ontheffing", - "uuid": "92f48fc9-63c1-4560-81e0-286854e3ed12" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth", - "value": "verzekeringsplicht volksverzekeringen ontheffing", - "uuid": "2f62c78c-dbaf-4ac1-8dff-1c2ccada7c9a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth", - "value": "verzekeringsplicht volksverzekeringen ontheffing", - "uuid": "af939cc5-a148-4496-92d1-2de556ec5142" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth", - "value": "verzekeringsplicht volksverzekeringen ontheffing", - "uuid": "51a982a4-219e-420b-ab3b-215e38edb2b7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzekPlVolksverzOnth", - "value": "verzekeringsplicht volksverzekeringen ontheffing", - "uuid": "0ffbeb26-61ce-4c0e-bc7b-87da478254b3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzetUitsprBestRecht", - "value": "verzet tegen uitspraak bestuursrechter", - "uuid": "3e853be0-bf1c-424b-b032-cef5061505c1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzoek_overheidsinformatie", - "value": "verzoek overheidsinformatie", - "uuid": "59d53d67-5816-4620-a7a5-8461d42b81fd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzoek_overheidsinformatie_IenVD", - "value": "verzoek overheidsinformatie inlichtingen- en veiligheidsdiensten", - "uuid": "20a8d25e-81e0-4ff7-9695-0ae1d14ec3c5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/verzoekschrift", - "value": "verzoekschrift", - "uuid": "9be97e6b-f216-48ad-a581-bb90f9d193f1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vetexpcert", - "value": "veterinair exportcertificaat", - "uuid": "b817be09-d5a3-474b-a3aa-0a0adcb0a6f6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vetexpcert", - "value": "veterinair exportcertificaat", - "uuid": "434ac25d-2c21-4dc3-81ff-825aa55a5419" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vetlaberk", - "value": "veterinair laboratorium erkenning", - "uuid": "1d3b5d0b-f136-476a-b7f8-1218443f775a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vijfenveerPlusOntwAdv", - "value": "vijfenveertigplusser ontwikkeladvies", - "uuid": "2764ffc6-e08b-48b1-a1b0-74d30cbad9d4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/visvergunning", - "value": "visvergunning", - "uuid": "e9e16477-6f9c-411f-be15-6d74348933ce" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vluchtelingenpaspoort", - "value": "vluchtelingenpaspoort", - "uuid": "1651afdf-b10d-44e7-b807-60126fe906a7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voedselbank", - "value": "voedselbank", - "uuid": "2bca692d-384c-437d-a928-5ac2db8269e4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voertuig_te_koop_aanbieden_op_openbare_weg_ontheffing", - "value": "voertuig te koop aanbieden op openbare weg ontheffing", - "uuid": "1853c963-383a-4b23-877e-5a04c0675e93" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voertbedrvoorrerk", - "value": "voertuigen bedrijfsvoorraaderkenning", - "uuid": "c49f8179-22b4-4edf-b46f-856979c0db5b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/luchtvVogelPrepMelding", - "value": "vogel preparatiemelding", - "uuid": "34b8dc7d-bcb6-4ff3-9f30-8b74328628ab" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/volkstuinverhuur", - "value": "volkstuinverhuur", - "uuid": "f73f4f76-7589-44fd-9117-20839fb58542" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/volmachtbewijs_verkiezingen", - "value": "volmachtbewijs verkiezingen", - "uuid": "d4b1bc79-79e6-44ca-b1a0-a33d0329dddc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/volmachtbewijs_verkiezingen", - "value": "volmachtbewijs verkiezingen", - "uuid": "8f563217-6c06-460c-bbb2-582908e49a27" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/volwasseneneducatiesubsidie", - "value": "volwasseneneducatiesubsidie", - "uuid": "726b055b-6b23-42e3-839c-58335035f9f2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voogdbenVerz", - "value": "voogdbenoeming verzoek", - "uuid": "b90cc7f2-3267-4000-89a9-bf22021e2e29" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voogdAantGezReg", - "value": "voogdij aantekening gezagsregister", - "uuid": "e9855684-b1c4-4d40-90c3-b9aad2e30de1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorVrSchEducatie", - "value": "voor- en vroegschoolse educatie", - "uuid": "1e75eb6d-fdb7-40b9-a680-dd3fd2a2fb59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorbereidingsbesluit", - "value": "voorbereidingsbesluit", - "uuid": "8fe0d9f6-99e7-4fd6-ad1f-5e7f673dd77d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorkRechtAanw", - "value": "voorkeursrechtaanwijzing", - "uuid": "079d52b0-2a9e-4997-a9fa-228bcfa1701e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorkRechtAanw", - "value": "voorkeursrechtaanwijzing", - "uuid": "c7f96c45-c45f-4b8e-afd5-737ca8c50208" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorlVoorkRechtAanw", - "value": "voorlopige voorkeursrechtaanwijzing", - "uuid": "ab2b3e11-9992-4108-a08c-15c91ec3fc28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorlVoorz", - "value": "voorlopige voorziening", - "uuid": "b47a302b-8a1e-4067-b3db-f913843cf680" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voornaamwijziging", - "value": "voornaamwijziging", - "uuid": "f03e4168-62b1-4a79-ad64-88b945e7b051" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vooroplEisHoVrijst", - "value": "vooropleidingseisen hoger onderwijs vrijstelling", - "uuid": "474c1086-5479-46d4-ac92-23f30b0b83d4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vooroplEisHoVrijst", - "value": "vooropleidingseisen hoger onderwijs vrijstelling", - "uuid": "7ec1b94e-5316-403d-a301-1e429fedda9e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voorovrlg", - "value": "vooroverleg", - "uuid": "a012c36d-96f3-4302-a850-8739e0f90b1e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/voAanm", - "value": "voortgezet onderwijs aanmelding", - "uuid": "4fe0b851-742c-4f58-8c70-d3fb08b575af" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vordRijbewKlaagschr", - "value": "vordering rijbewijs klaagschrift", - "uuid": "c06812e0-9da8-4a53-b489-2693e9a3f8ad" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vos-inrichting_gegevenslevering", - "value": "vos-inrichting gegevenslevering", - "uuid": "4cc8bfa5-21e6-4001-a724-c5d09dbf3afa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vreemdVerhMld", - "value": "vreemdeling verhuismelding", - "uuid": "44e89e46-33b2-4efe-b1a4-c233842a38ee" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vreemdelingenpaspoort", - "value": "vreemdelingenpaspoort", - "uuid": "0b1676d7-006f-4e2f-ae80-1255deeacaf6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vrijkomen_woonruimtemelding", - "value": "vrijkomen woonruimtemelding", - "uuid": "bfb479c8-3697-4eba-a6a7-cd4882e3633f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwInkAow", - "value": "vrijwillige inkoop aow", - "uuid": "c5658fbb-b377-4fc5-8f41-d6aaf66fa17b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzAnw", - "value": "vrijwillige verzekering anw", - "uuid": "1292f317-3050-4646-aa8b-ebdb794de646" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzAow", - "value": "vrijwillige verzekering aow", - "uuid": "9dd785bd-d770-4cc1-9602-54553b4c4321" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWao", - "value": "vrijwillige verzekering wao", - "uuid": "07a11083-b104-459a-8837-216f98396c8d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWia", - "value": "vrijwillige verzekering wia", - "uuid": "258b8db5-fd85-46f7-aa41-935cd8e9381f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzWw", - "value": "vrijwillige verzekering ww", - "uuid": "708fa342-eef6-4211-bfb5-114f0e7f92c9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/VrijwVerzZw", - "value": "vrijwillige verzekering ziektewet", - "uuid": "dac7ab8e-6ca9-4c5d-b757-c1fcac4e6b65" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vrijwilligersverzekering", - "value": "vrijwilligersverzekering", - "uuid": "3e5bf1c8-81b9-4dde-a2cd-2ac3f9a75e2e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vrijwilligerswerksubsidie", - "value": "vrijwilligerswerksubsidie", - "uuid": "79b415a3-a794-47e0-bc46-07be8cb50a4d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vrouwenopvang", - "value": "vrouwenopvang", - "uuid": "1f09291d-1f54-49b3-bbd5-2bd858c08703" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwapen_uitvoerverg", - "value": "vuurwapen uitvoervergunning", - "uuid": "a4baca21-fae4-4b96-8e51-be9e3c919c68" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwerk_ontbrandingsmelding", - "value": "vuurwerk ontbrandingsmelding", - "uuid": "f0c5d9df-b408-4f97-8114-3a32a16dced1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwerk_ontbrandingstoestemming", - "value": "vuurwerk ontbrandingstoestemming", - "uuid": "408952df-4972-41c5-8438-ccfc22e98a1f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwerk_toepassingsvergunning", - "value": "vuurwerk toepassingsvergunning", - "uuid": "d701f664-b8b0-44a5-a612-6a2aef9168c8" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwerk_verkoop_opslag", - "value": "vuurwerk verkoop en opslag", - "uuid": "6d63b5a7-4fad-4ee8-a99e-06ffaa3d1427" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/vuurwerkverkoopvergunning", - "value": "vuurwerkverkoopvergunning", - "uuid": "531ffae5-39ca-43cf-9ada-ab01e26b0eda" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waVerzPl", - "value": "wa-verzekeringsplicht", - "uuid": "4327df6e-4b7a-434c-ba6f-6f1661c4c129" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waVerzPlVrijst", - "value": "wa-verzekeringsplicht vrijstelling", - "uuid": "1bb3f2c9-1bf5-4af7-8678-e678c7a43205" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wbFndsMotVerkSchVerg", - "value": "waarborgfonds motorverkeer schadevergoeding", - "uuid": "6171130d-5283-4a87-aebd-25b9d4308cee" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wajong-uitkering", - "value": "wajong-uitkering", - "uuid": "b1a6a4f3-c039-4410-abdf-0c9e1007c7cb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wapenvergunning", - "value": "wapenvergunning", - "uuid": "a60146e2-5689-4c60-9029-bef43c8a9326" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wapenvergunning", - "value": "wapenvergunning", - "uuid": "78548dd9-35c9-493b-a69d-17ab8d377cfb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wapenvergunning", - "value": "wapenvergunning", - "uuid": "40ebcd4b-4b42-460c-9c9c-ab3633237dbf" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterbeheer_schadevergoeding", - "value": "waterbeheer schadevergoeding", - "uuid": "7eba2ad4-1fc4-43e1-ae59-14d125abd3b4" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterbeheerplan", - "value": "waterbeheerplan", - "uuid": "7074d064-5c5f-44c5-b343-138fe8f1f726" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterbeheerprogramma", - "value": "waterbeheerprogramma", - "uuid": "0f34909a-c032-4364-8581-3bfa4d306c85" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterbeschermingszone-ontheffing", - "value": "waterbeschermingszone-ontheffing", - "uuid": "e7ce6496-bd38-4579-950b-b56dfda12ce2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterbodem_verontreiniging_melding", - "value": "waterbodem verontreiniging melding", - "uuid": "883000db-ae0e-4549-bf0e-aa3517eff6ff" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watergangonderhoud", - "value": "watergangonderhoud", - "uuid": "798223e2-73f0-4a35-b478-adba39b19f21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterlegger", - "value": "waterlegger", - "uuid": "4981144d-3572-4e50-b749-b26ea8bae30a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watermelding", - "value": "watermelding", - "uuid": "b08706d6-61ee-4ae6-bf89-d894b56cdd1b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterschapsbelasting", - "value": "waterschapsbelasting", - "uuid": "15cacb0f-e71a-40da-893e-fe7470e673a6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watersysteemheffing", - "value": "watersysteemheffing", - "uuid": "0251cc87-f5f6-471f-91ad-a0a6bc943d86" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watertoets", - "value": "watertoets", - "uuid": "128ba5d6-2c33-42bb-9b73-6d34c99db25f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watervergunning", - "value": "watervergunning", - "uuid": "176cc95c-7e4a-489b-ac46-6ed16390fcec" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watervergunning_registratie", - "value": "watervergunning registratie", - "uuid": "a57819e2-8bdc-4aa6-ab94-55bd28a3ad17" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/watervergunning_schadevergoeding", - "value": "watervergunning schadevergoeding", - "uuid": "0c9d08aa-74d8-4548-9113-58ab75d57ee7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/waterverkeersbesluit", - "value": "waterverkeersbesluit", - "uuid": "e877644b-636a-4e9a-a65f-717c38aac654" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wedstrijd_op_de_weg", - "value": "wedstrijd op de weg", - "uuid": "879bfab5-9ee0-4bd8-a889-6fde27972d55" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wegenheffing", - "value": "wegenheffing", - "uuid": "7eb21ad0-ee29-4811-97e0-9d2046f21667" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wegenverkeerswetontheffing", - "value": "wegenverkeerswetontheffing", - "uuid": "ef07b59e-1184-44ad-b16f-4f1f280601f1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wegsleepreg", - "value": "wegsleepregeling", - "uuid": "b72da7cd-512f-46d8-b0a2-2c564578793f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/welstandsadvies", - "value": "welstandsadvies", - "uuid": "3474d974-4d9f-403d-9ad0-913ab0a01d21" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/welzijnswerksubsidie", - "value": "welzijnswerksubsidie", - "uuid": "85f1af93-7498-482b-be77-1225edf71c9c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/werkbegeleiding_werkzoekenden", - "value": "werkbegeleiding werkzoekenden", - "uuid": "46397c21-8b14-4132-9456-3e56a4286556" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/werkplekaanpassing", - "value": "werkplekaanpassing", - "uuid": "293338fc-108b-4193-984e-03a45667db26" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/werktijdenAanpVerz", - "value": "werktijden aanpassingsverzoek", - "uuid": "29a1352f-8761-43e0-83c1-9f9367b9574e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/werktijdreg", - "value": "werktijdenregeling", - "uuid": "896ea18a-62ac-43c8-9673-112bd7c133c7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/werkzInschr", - "value": "werkzoekende inschrijving", - "uuid": "01dcc2ef-655e-4a7c-ac05-71322d110511" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wet_milieubeheermelding", - "value": "wet milieubeheermelding", - "uuid": "6d0e0858-cf7c-4035-8cdf-a99b87dfd304" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/beleid_tegemoetk_wijz_gesl_registratie", - "value": "wet wijziging geregistreerd geslacht tegemoetkoming", - "uuid": "8a5c623a-06ee-473a-ad29-d50e0d2ccc37" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wezenuitkering", - "value": "wezenuitkering", - "uuid": "8aed2804-077d-408c-8d77-4c40b7714aaa" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wia-uitkering", - "value": "wia-uitkering", - "uuid": "f2ee2ce2-9041-4bb5-a416-85d49b16be2a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wijnprodreg", - "value": "wijnproducentenregistratie", - "uuid": "3cb0a952-94b3-422f-9f6f-94eb5cae81de" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wijzVoertGegMelding", - "value": "wijziging voertuiggegevens melding", - "uuid": "ca2b6cf6-6c8c-4ca0-b3b7-8f10f4eaf4a2" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wildschade", - "value": "wildschade", - "uuid": "de982163-185e-4800-ba66-8344b0c485e6" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/winkeltijdeninformatie", - "value": "winkeltijdeninformatie", - "uuid": "87ed7b26-6324-444a-8be9-98253d30cb48" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/winkeltijdenontheffing", - "value": "winkeltijdenontheffing", - "uuid": "3fa059ca-96dc-499a-9508-e29e11382edd" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wlzIindicatie", - "value": "wlz-indicatie", - "uuid": "1040289f-3497-4051-b99b-dc018716f219" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wlzZorgBuitVerg", - "value": "wlz-zorg in buitenland vergoeding", - "uuid": "d64913b6-7651-4483-b8ab-4e17ad56eeae" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wmo-voorziening", - "value": "wmo-voorziening", - "uuid": "aef9dd16-de75-4ed1-ab1c-a08e13a8f088" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wmo-voorziening", - "value": "wmo-voorziening", - "uuid": "b23da184-b406-4587-9638-843d2955d59e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wnZkIns", - "value": "woning zoeken inschrijving", - "uuid": "ab37689c-5b61-473b-be5f-ac6dc44eeb11" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woningaanpassing", - "value": "woningaanpassing", - "uuid": "8e1686e5-9b45-436c-ba18-8d9426cb29d3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wonBemVerg", - "value": "woningbemiddelingsvergunning", - "uuid": "4a6b6dc1-786e-4a8c-8e10-2ca4e7e8c12e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woningen_samenvoegsubsidie", - "value": "woningen samenvoegsubsidie", - "uuid": "53bcc07f-b7f6-4bea-9518-757e6302f27e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woningsluiting", - "value": "woningsluiting", - "uuid": "a873054f-02ba-462d-ac68-cc76b0f4c552" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonconsumentenorganisatie_subsidie", - "value": "woonconsumentenorganisatie subsidie", - "uuid": "5a2e7942-aa87-4bf5-9650-80f5b8cda208" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonkostentoeslag", - "value": "woonkostentoeslag", - "uuid": "a9756db2-e1ff-43d6-b748-6bd253b6d9ab" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonomgeving_inrichting", - "value": "woonomgeving inrichting", - "uuid": "4068d9cc-5aa1-4b28-868b-637a33b3bae9" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonruimte_omzettingsvergunning", - "value": "woonruimte omzettingsvergunning", - "uuid": "1d4bcb61-14b4-400b-8393-1a68111aa52b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonruimte_splitsingsvergunning", - "value": "woonruimte splitsingsvergunning", - "uuid": "d982906b-7620-4d42-8eb1-8a231f6b4718" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonsubsidie_ouderen", - "value": "woonsubsidie ouderen", - "uuid": "389559d0-629f-4456-b8c3-1bbb5b940eea" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonvoorziening_gehandicapten_en_ouderen", - "value": "woonvoorziening gehandicapten en ouderen", - "uuid": "030279aa-9b2a-4666-9ddb-296b81d4ac9b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonwagenstandplaats", - "value": "woonwagenstandplaats", - "uuid": "8160fbe1-1cbe-4349-9c36-26bc4d0c2d59" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woonzorgarrSubsidie", - "value": "woonzorgarrangement subsidie", - "uuid": "0b9e0793-3fd8-4c2c-99a5-91c5d588ce0d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wnzCntSrvFlat", - "value": "woonzorgcentrum of serviceflat", - "uuid": "f6e6e8eb-25f0-4713-a899-57f4290b0597" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woz-beschikking", - "value": "woz-beschikking", - "uuid": "df27ed65-9d4e-4d46-a7d6-6bc792880f2b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag", - "value": "woz-taxatieverslag", - "uuid": "b461ccc0-bb52-4fcf-af33-0023e99db71a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag_kopie", - "value": "woz-taxatieverslag kopie", - "uuid": "b188d730-ac8b-431b-8965-f23f9506325e" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/woz-taxatieverslag_kopie", - "value": "woz-taxatieverslag kopie", - "uuid": "78ba25c1-188f-4fd8-9b70-dde3491618cc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wraking", - "value": "wraking", - "uuid": "da27133e-1e0f-49c7-ad36-3b69356b6a6c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wsnp-verklaring", - "value": "wsnp-verklaring", - "uuid": "7ba0ee4d-13a9-4c78-a48e-acf34ffeca41" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wwUitkering", - "value": "ww-uitkering", - "uuid": "7e0fb42b-bacb-4e91-bf59-9db4deebe46a" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/wwUitkBetOnmWG", - "value": "ww-uitkering bij betalingsonmacht werkgever", - "uuid": "6bf33421-7d01-4718-9a27-62fc36d7a605" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zakenpaspoort", - "value": "zakenpaspoort", - "uuid": "42d9f17b-d45f-412a-bee5-1f9150f10344" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zeebrief", - "value": "zeebrief", - "uuid": "7d759e7c-6e2b-46bc-b547-b9e2a0b6e45c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zelf_aangebr_voorz_tegemoetkoming", - "value": "zelf aangebrachte voorziening tegemoetkoming", - "uuid": "727ac5fa-07ad-497c-b2a3-6142a0663a13" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zhuisafvverw", - "value": "ziekenhuisafvalverwerking", - "uuid": "7055d0f4-33ce-4d30-a29b-4a8c916ecddb" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ziekenvervoer", - "value": "ziekenvervoer", - "uuid": "c916a2f7-dce7-4916-9e88-6b5a66154ab0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zkKstVerzCol", - "value": "ziektekostenverzekering collectief", - "uuid": "ea73328a-f5ea-49bf-916b-506d9cefd9d5" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/ziektewetuitkering", - "value": "ziektewetuitkering", - "uuid": "d41c29de-0498-4d9d-8fd1-1518327fd2f7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zienswijze", - "value": "zienswijze", - "uuid": "d3910efe-6f3b-40aa-b70e-b6a0ca78847c" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek", - "uuid": "34cf3516-bb7f-43ab-ac3f-679a048617c0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek", - "uuid": "7666fe18-c7fb-4c2f-80e7-7d87cfc6cd08" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndBekwOnderz", - "value": "zij-instromer onderwijs bekwaamheidsonderzoek", - "uuid": "247549e8-9477-4162-8758-c406d55c8fa1" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz", - "value": "zij-instromer onderwijs geschiktheidsonderzoek", - "uuid": "20489280-670d-44b0-abb2-8e248ffe08dc" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz", - "value": "zij-instromer onderwijs geschiktheidsonderzoek", - "uuid": "61a696dc-6a9f-4ed1-8e2d-e6673ff01d48" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz", - "value": "zij-instromer onderwijs geschiktheidsonderzoek", - "uuid": "5859b1c7-f7c9-46d5-9954-8f99c424cd37" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz", - "value": "zij-instromer onderwijs geschiktheidsonderzoek", - "uuid": "c418b47f-5429-4c37-873a-58e8f5172b07" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zijInstrOndGeschOnderz", - "value": "zij-instromer onderwijs geschiktheidsonderzoek", - "uuid": "c815a1d4-a51f-4bb0-a7e2-815c97c407f3" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zondagsrustverstoring_ontheffing", - "value": "zondagsrustverstoring ontheffing", - "uuid": "75c4adc4-c62d-4ca4-8dfe-7fe09e10b896" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zondagsrustverstoring_ontheffing", - "value": "zondagsrustverstoring ontheffing", - "uuid": "691f64b8-5071-4ae2-b215-dfc866427036" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgaanbiedersmelding", - "value": "zorgaanbiedersmelding", - "uuid": "58169f2c-98e4-4e68-8871-a79867b53a6f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorginstellingtoelatingsvergunning", - "value": "zorginstellingtoelatingsvergunning", - "uuid": "d35cb3bd-4a51-4cd6-af18-6630af2ec1f0" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgplicht_riolering_ontheffing", - "value": "zorgplicht riolering ontheffing", - "uuid": "d5745d50-af25-4c06-aeb8-4a654c996e55" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgtoeslag", - "value": "zorgtoeslag", - "uuid": "082ae323-0e83-42ff-8ac3-b3cf204a055b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgverlof", - "value": "zorgverlof", - "uuid": "004d5db5-e281-4e7b-9130-f40414b5d492" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgverlof", - "value": "zorgverlof", - "uuid": "aaec6fe0-5e8c-4c05-a418-3aef39ccd3e7" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgverlof", - "value": "zorgverlof", - "uuid": "0d483696-39e0-4f7f-939b-4e33e71adc28" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgverzPl", - "value": "zorgverzekeringsplicht", - "uuid": "b82f10ba-1475-41ff-9a41-af4792f21f8b" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgverzPlVrijst", - "value": "zorgverzekeringsplicht vrijstelling", - "uuid": "0fc7c3fe-e0a5-43da-aaef-68bd03159f45" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zorgvoorzieningensubsidie", - "value": "zorgvoorzieningensubsidie", - "uuid": "a8e062b8-fe72-4c60-835b-8966d5c7d97f" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zuiveringsheffing", - "value": "zuiveringsheffing", - "uuid": "5257af3b-870e-4738-afc7-8053f464be32" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwAlcDrankVerk", - "value": "zwakalcoholhoudende-drankverkoop", - "uuid": "1d9a5850-b8d6-483d-9771-81a90f948c98" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalUitk", - "value": "zwangerschaps- en bevallingsuitkering", - "uuid": "06c0d9b9-b7a3-4e0f-a381-192cbb373962" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalUitk", - "value": "zwangerschaps- en bevallingsuitkering", - "uuid": "4f50c444-61e7-4456-92b4-e9d5816a3132" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwangerschBevalVerl", - "value": "zwangerschaps- en bevallingsverlof", - "uuid": "6a277d3a-3d95-4ca0-a118-5f303bfa684d" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwemwater", - "value": "zwemwater", - "uuid": "ebdf45de-00a6-4c4c-8cd1-ffe98ca37588" - }, - { - "uri": "http://standaarden.overheid.nl/owms/terms/zwemwater_aanwijzing_inzage", - "value": "zwemwater aanwijzing inzage", - "uuid": "9cb85357-33af-4439-a4bc-7ea8074085df" - } -]; diff --git a/packages/upl/dist/build/main.d.ts b/packages/upl/dist/build/main.d.ts deleted file mode 100644 index 6adfc6ec..00000000 --- a/packages/upl/dist/build/main.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./UPL-actueel"; -export * from "./UPL-key-value"; diff --git a/packages/upl/dist/build/main.js b/packages/upl/dist/build/main.js deleted file mode 100644 index cc5f0f1e..00000000 --- a/packages/upl/dist/build/main.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./UPL-actueel"), exports); -__exportStar(require("./UPL-key-value"), exports); diff --git a/packages/upl/dist/index.d.ts b/packages/upl/dist/index.d.ts deleted file mode 100644 index cb0ff5c3..00000000 --- a/packages/upl/dist/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/packages/upl/dist/index.js b/packages/upl/dist/index.js deleted file mode 100644 index 2a204561..00000000 --- a/packages/upl/dist/index.js +++ /dev/null @@ -1,115 +0,0 @@ -"use strict"; -var __assign = (this && this.__assign) || function () { - __assign = Object.assign || function(t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) - t[p] = s[p]; - } - return t; - }; - return __assign.apply(this, arguments); -}; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -var axios_1 = __importDefault(require("axios")); -var axios_retry_1 = __importDefault(require("axios-retry")); -var fs = __importStar(require("fs")); -var uuid_1 = require("uuid"); -(0, axios_retry_1.default)(axios_1.default, { - retries: 3, - retryDelay: function (retryCount) { - // eslint-disable-next-line no-console - console.log("retry attempt: ".concat(retryCount)); - return retryCount * 2000; // time interval between retries - }, - retryCondition: function (error) { - return error.response.status >= 500 && error.response.status < 600; - }, -}); -var url = 'https://standaarden.overheid.nl/owms/oquery/UPL-actueel.json'; -var simplifyUPL = function (data) { - return data.results.bindings.map(function (binding) { - return { - uri: binding.URI.value, - value: binding.UniformeProductnaam.value, - uuid: (0, uuid_1.v4)(), - }; - }); -}; -axios_1.default - .request({ - url: url, - headers: { - Accept: 'application/json', - }, -}) - .then(function (response) { return response.data; }) - .then(function (json) { - var UPLKeyValuesArrayOfObjects = simplifyUPL(json); - // Convert the array of objects to a constant (const data = [...]) - var data = __spreadArray([], UPLKeyValuesArrayOfObjects, true); - var dataActueel = __assign({}, json); - var dir = './src/build'; - // Convert the array of objects to a JSON string - var UPLKeyValuesJsonData = JSON.stringify(data, null, 2); - try { - fs.mkdirSync(dir); - // eslint-disable-next-line no-console - console.log('Directory created successfully!'); - } - catch (err) { - if (err.code === 'EEXIST') { - // eslint-disable-next-line no-console - console.log('Directory already exists.'); - } - else { - // eslint-disable-next-line no-console - console.error('Error creating directory:', err); - } - } - // Write the JSON string to two different files - fs.writeFileSync("".concat(dir, "/UPL-actueel.ts"), "export const uplActueel = ".concat(JSON.stringify(dataActueel, null, 2), ";")); - fs.writeFileSync("".concat(dir, "/UPL-key-value.ts"), "export const uplKeyValues = ".concat(UPLKeyValuesJsonData, ";")); - fs.writeFileSync("".concat(dir, "/main.ts"), "export * from \"./UPL-actueel\"\n export * from \"./UPL-key-value\"\n "); - // eslint-disable-next-line no-console - console.log('JSON data has been written to the files successfully!'); -}) - .catch(function (error) { - // eslint-disable-next-line no-console - console.error('Error fetching JSON data:', error); -}); From 02b6ce2fbd436f9c58290a0c9f01ed20d368dc1d Mon Sep 17 00:00:00 2001 From: Bryan de Jong Date: Fri, 18 Aug 2023 09:46:58 +0100 Subject: [PATCH 2/5] chore: remove unused packages and plugins from vth-project --- apps/vth-onderzoek-dashboard/config/plugins.ts | 8 -------- apps/vth-onderzoek-dashboard/package.json | 4 ---- .../src/components/components/audience.json | 15 --------------- 3 files changed, 27 deletions(-) delete mode 100644 apps/vth-onderzoek-dashboard/src/components/components/audience.json diff --git a/apps/vth-onderzoek-dashboard/config/plugins.ts b/apps/vth-onderzoek-dashboard/config/plugins.ts index 1539b66a..1da053b9 100644 --- a/apps/vth-onderzoek-dashboard/config/plugins.ts +++ b/apps/vth-onderzoek-dashboard/config/plugins.ts @@ -31,14 +31,6 @@ export default ({ env }) => ({ }, }, }, - 'preview-button': { - enabled: true, - config: { - domain: env('FRONTEND_PUBLIC_URL'), - token: env('PREVIEW_SECRET_TOKEN'), - slug: 'products', - }, - }, upload: { config: { providerOptions: { diff --git a/apps/vth-onderzoek-dashboard/package.json b/apps/vth-onderzoek-dashboard/package.json index b19fe36a..63fb6375 100644 --- a/apps/vth-onderzoek-dashboard/package.json +++ b/apps/vth-onderzoek-dashboard/package.json @@ -16,10 +16,6 @@ "clean": "rimraf build .cache dist" }, "dependencies": { - "@frameless/preview-button": "0.0.0-semantically-released", - "@frameless/strapi-plugin-gemeente-select": "0.0.0-semantically-released", - "@frameless/strapi-plugin-scheme-select": "0.0.0-semantically-released", - "@frameless/strapi-plugin-uniform-product-name": "0.0.0-semantically-released", "@frameless/strapi-tiptap-editor": "0.0.0-semantically-released", "@strapi/plugin-graphql": "4.10.5", "@strapi/plugin-i18n": "4.10.5", diff --git a/apps/vth-onderzoek-dashboard/src/components/components/audience.json b/apps/vth-onderzoek-dashboard/src/components/components/audience.json deleted file mode 100644 index 5158365b..00000000 --- a/apps/vth-onderzoek-dashboard/src/components/components/audience.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "collectionName": "components_components_audiences", - "info": { - "displayName": "audience", - "description": "" - }, - "options": {}, - "attributes": { - "type": { - "type": "enumeration", - "enum": ["particulier", "ondernemer"], - "required": true - } - } -} From 765fee693ec2f2b710ba56da4fd0eeda15b1bbe6 Mon Sep 17 00:00:00 2001 From: Bryan de Jong Date: Fri, 18 Aug 2023 09:48:22 +0100 Subject: [PATCH 3/5] chore: rename to vth-dashboard --- .eslintrc.js | 5 ++--- .../.eslintignore | 0 .../README.md | 0 .../config/admin.ts | 0 .../config/api.ts | 0 .../config/database.ts | 0 .../config/middlewares.ts | 0 .../config/plugins.ts | 0 .../config/server.ts | 0 .../database/migrations/.gitkeep | 0 .../favicon.ico | Bin .../package.json | 0 .../public/uploads/.gitkeep | 0 .../src/admin/app.ts | 0 .../src/admin/tsconfig.json | 0 .../src/admin/webpack.config.js | 0 .../src/api/.gitkeep | 0 .../src/api/faq/content-types/faq/schema.json | 0 .../src/api/faq/controllers/faq.js | 0 .../src/api/faq/routes/faq.js | 0 .../src/api/faq/services/faq.js | 0 .../content-types/not-found-page/schema.json | 0 .../not-found-page/controllers/not-found-page.ts | 0 .../src/api/not-found-page/routes/not-found-page.ts | 0 .../api/not-found-page/services/not-found-page.ts | 0 .../search-tip/content-types/search-tip/schema.json | 0 .../src/api/search-tip/controllers/search-tip.ts | 0 .../src/api/search-tip/routes/search-tip.ts | 0 .../src/api/search-tip/services/search-tip.ts | 0 .../content-types/visualisatie/schema.json | 0 .../api/visualisatie/controllers/visualisatie.ts | 0 .../src/api/visualisatie/routes/visualisatie.ts | 0 .../src/api/visualisatie/services/visualisatie.ts | 0 .../components/components/accordion-section.json | 0 .../src/components/components/accordion.json | 0 .../src/components/components/block-content.json | 0 .../src/components/components/button-link.json | 0 .../src/components/components/contact.json | 0 .../src/components/components/faq.json | 0 .../src/components/components/group-heading.json | 0 .../src/components/components/image.json | 0 .../src/components/components/link.json | 0 .../src/components/components/logo-button.json | 0 .../components/multi-columns-button-item.json | 0 .../components/components/multi-columns-button.json | 0 .../src/components/components/spatial.json | 0 .../src/components/components/spotlight.json | 0 .../components/components/vega-visualisatie.json | 0 .../src/components/sections/faq-section.json | 0 .../src/components/sections/flexible-section.json | 0 .../src/components/seo/meta.json | 0 .../src/extensions/.gitkeep | 0 .../src/index.ts | 0 .../tsconfig.json | 0 54 files changed, 2 insertions(+), 3 deletions(-) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/.eslintignore (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/README.md (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/admin.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/api.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/database.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/middlewares.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/plugins.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/config/server.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/database/migrations/.gitkeep (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/favicon.ico (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/package.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/public/uploads/.gitkeep (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/admin/app.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/admin/tsconfig.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/admin/webpack.config.js (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/.gitkeep (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/faq/content-types/faq/schema.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/faq/controllers/faq.js (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/faq/routes/faq.js (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/faq/services/faq.js (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/not-found-page/content-types/not-found-page/schema.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/not-found-page/controllers/not-found-page.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/not-found-page/routes/not-found-page.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/not-found-page/services/not-found-page.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/search-tip/content-types/search-tip/schema.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/search-tip/controllers/search-tip.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/search-tip/routes/search-tip.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/search-tip/services/search-tip.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/visualisatie/content-types/visualisatie/schema.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/visualisatie/controllers/visualisatie.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/visualisatie/routes/visualisatie.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/api/visualisatie/services/visualisatie.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/accordion-section.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/accordion.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/block-content.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/button-link.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/contact.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/faq.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/group-heading.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/image.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/link.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/logo-button.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/multi-columns-button-item.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/multi-columns-button.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/spatial.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/spotlight.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/components/vega-visualisatie.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/sections/faq-section.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/sections/flexible-section.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/components/seo/meta.json (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/extensions/.gitkeep (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/src/index.ts (100%) rename apps/{vth-onderzoek-dashboard => vth-dashboard}/tsconfig.json (100%) diff --git a/.eslintrc.js b/.eslintrc.js index 7d662dc2..7085cd0a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -50,12 +50,11 @@ module.exports = { parser: '@typescript-eslint/parser', parserOptions: { project: [ -<<<<<<< HEAD './apps/pdc-frontend/tsconfig.json', './apps/pdc-dashboard/tsconfig.json', './apps/pdc-dashboard/src/admin/tsconfig.json', - './apps/vth-onderzoek-dashboard/tsconfig.json', - './apps/vth-onderzoek-dashboard/src/admin/tsconfig.json', + './apps/vth-dashboard/tsconfig.json', + './apps/vth-dashboard/src/admin/tsconfig.json', './packages/catalogi-data/tsconfig.json', './packages/upl/tsconfig.json', './packages/samenwerkende-catalogi/tsconfig.json', diff --git a/apps/vth-onderzoek-dashboard/.eslintignore b/apps/vth-dashboard/.eslintignore similarity index 100% rename from apps/vth-onderzoek-dashboard/.eslintignore rename to apps/vth-dashboard/.eslintignore diff --git a/apps/vth-onderzoek-dashboard/README.md b/apps/vth-dashboard/README.md similarity index 100% rename from apps/vth-onderzoek-dashboard/README.md rename to apps/vth-dashboard/README.md diff --git a/apps/vth-onderzoek-dashboard/config/admin.ts b/apps/vth-dashboard/config/admin.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/admin.ts rename to apps/vth-dashboard/config/admin.ts diff --git a/apps/vth-onderzoek-dashboard/config/api.ts b/apps/vth-dashboard/config/api.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/api.ts rename to apps/vth-dashboard/config/api.ts diff --git a/apps/vth-onderzoek-dashboard/config/database.ts b/apps/vth-dashboard/config/database.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/database.ts rename to apps/vth-dashboard/config/database.ts diff --git a/apps/vth-onderzoek-dashboard/config/middlewares.ts b/apps/vth-dashboard/config/middlewares.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/middlewares.ts rename to apps/vth-dashboard/config/middlewares.ts diff --git a/apps/vth-onderzoek-dashboard/config/plugins.ts b/apps/vth-dashboard/config/plugins.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/plugins.ts rename to apps/vth-dashboard/config/plugins.ts diff --git a/apps/vth-onderzoek-dashboard/config/server.ts b/apps/vth-dashboard/config/server.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/config/server.ts rename to apps/vth-dashboard/config/server.ts diff --git a/apps/vth-onderzoek-dashboard/database/migrations/.gitkeep b/apps/vth-dashboard/database/migrations/.gitkeep similarity index 100% rename from apps/vth-onderzoek-dashboard/database/migrations/.gitkeep rename to apps/vth-dashboard/database/migrations/.gitkeep diff --git a/apps/vth-onderzoek-dashboard/favicon.ico b/apps/vth-dashboard/favicon.ico similarity index 100% rename from apps/vth-onderzoek-dashboard/favicon.ico rename to apps/vth-dashboard/favicon.ico diff --git a/apps/vth-onderzoek-dashboard/package.json b/apps/vth-dashboard/package.json similarity index 100% rename from apps/vth-onderzoek-dashboard/package.json rename to apps/vth-dashboard/package.json diff --git a/apps/vth-onderzoek-dashboard/public/uploads/.gitkeep b/apps/vth-dashboard/public/uploads/.gitkeep similarity index 100% rename from apps/vth-onderzoek-dashboard/public/uploads/.gitkeep rename to apps/vth-dashboard/public/uploads/.gitkeep diff --git a/apps/vth-onderzoek-dashboard/src/admin/app.ts b/apps/vth-dashboard/src/admin/app.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/admin/app.ts rename to apps/vth-dashboard/src/admin/app.ts diff --git a/apps/vth-onderzoek-dashboard/src/admin/tsconfig.json b/apps/vth-dashboard/src/admin/tsconfig.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/admin/tsconfig.json rename to apps/vth-dashboard/src/admin/tsconfig.json diff --git a/apps/vth-onderzoek-dashboard/src/admin/webpack.config.js b/apps/vth-dashboard/src/admin/webpack.config.js similarity index 100% rename from apps/vth-onderzoek-dashboard/src/admin/webpack.config.js rename to apps/vth-dashboard/src/admin/webpack.config.js diff --git a/apps/vth-onderzoek-dashboard/src/api/.gitkeep b/apps/vth-dashboard/src/api/.gitkeep similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/.gitkeep rename to apps/vth-dashboard/src/api/.gitkeep diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json b/apps/vth-dashboard/src/api/faq/content-types/faq/schema.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/faq/content-types/faq/schema.json rename to apps/vth-dashboard/src/api/faq/content-types/faq/schema.json diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js b/apps/vth-dashboard/src/api/faq/controllers/faq.js similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/faq/controllers/faq.js rename to apps/vth-dashboard/src/api/faq/controllers/faq.js diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js b/apps/vth-dashboard/src/api/faq/routes/faq.js similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/faq/routes/faq.js rename to apps/vth-dashboard/src/api/faq/routes/faq.js diff --git a/apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js b/apps/vth-dashboard/src/api/faq/services/faq.js similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/faq/services/faq.js rename to apps/vth-dashboard/src/api/faq/services/faq.js diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json b/apps/vth-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json rename to apps/vth-dashboard/src/api/not-found-page/content-types/not-found-page/schema.json diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts b/apps/vth-dashboard/src/api/not-found-page/controllers/not-found-page.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/not-found-page/controllers/not-found-page.ts rename to apps/vth-dashboard/src/api/not-found-page/controllers/not-found-page.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts b/apps/vth-dashboard/src/api/not-found-page/routes/not-found-page.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/not-found-page/routes/not-found-page.ts rename to apps/vth-dashboard/src/api/not-found-page/routes/not-found-page.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts b/apps/vth-dashboard/src/api/not-found-page/services/not-found-page.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/not-found-page/services/not-found-page.ts rename to apps/vth-dashboard/src/api/not-found-page/services/not-found-page.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json b/apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/search-tip/content-types/search-tip/schema.json rename to apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/search-tip/controllers/search-tip.ts rename to apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/search-tip/routes/search-tip.ts rename to apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/services/search-tip.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/search-tip/services/search-tip.ts rename to apps/vth-dashboard/src/api/search-tip/services/search-tip.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json b/apps/vth-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json rename to apps/vth-dashboard/src/api/visualisatie/content-types/visualisatie/schema.json diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts b/apps/vth-dashboard/src/api/visualisatie/controllers/visualisatie.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/visualisatie/controllers/visualisatie.ts rename to apps/vth-dashboard/src/api/visualisatie/controllers/visualisatie.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts b/apps/vth-dashboard/src/api/visualisatie/routes/visualisatie.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/visualisatie/routes/visualisatie.ts rename to apps/vth-dashboard/src/api/visualisatie/routes/visualisatie.ts diff --git a/apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts b/apps/vth-dashboard/src/api/visualisatie/services/visualisatie.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/api/visualisatie/services/visualisatie.ts rename to apps/vth-dashboard/src/api/visualisatie/services/visualisatie.ts diff --git a/apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json b/apps/vth-dashboard/src/components/components/accordion-section.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/accordion-section.json rename to apps/vth-dashboard/src/components/components/accordion-section.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/accordion.json b/apps/vth-dashboard/src/components/components/accordion.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/accordion.json rename to apps/vth-dashboard/src/components/components/accordion.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/block-content.json b/apps/vth-dashboard/src/components/components/block-content.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/block-content.json rename to apps/vth-dashboard/src/components/components/block-content.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/button-link.json b/apps/vth-dashboard/src/components/components/button-link.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/button-link.json rename to apps/vth-dashboard/src/components/components/button-link.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/contact.json b/apps/vth-dashboard/src/components/components/contact.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/contact.json rename to apps/vth-dashboard/src/components/components/contact.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/faq.json b/apps/vth-dashboard/src/components/components/faq.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/faq.json rename to apps/vth-dashboard/src/components/components/faq.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/group-heading.json b/apps/vth-dashboard/src/components/components/group-heading.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/group-heading.json rename to apps/vth-dashboard/src/components/components/group-heading.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/image.json b/apps/vth-dashboard/src/components/components/image.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/image.json rename to apps/vth-dashboard/src/components/components/image.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/link.json b/apps/vth-dashboard/src/components/components/link.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/link.json rename to apps/vth-dashboard/src/components/components/link.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/logo-button.json b/apps/vth-dashboard/src/components/components/logo-button.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/logo-button.json rename to apps/vth-dashboard/src/components/components/logo-button.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json b/apps/vth-dashboard/src/components/components/multi-columns-button-item.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button-item.json rename to apps/vth-dashboard/src/components/components/multi-columns-button-item.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json b/apps/vth-dashboard/src/components/components/multi-columns-button.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/multi-columns-button.json rename to apps/vth-dashboard/src/components/components/multi-columns-button.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/spatial.json b/apps/vth-dashboard/src/components/components/spatial.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/spatial.json rename to apps/vth-dashboard/src/components/components/spatial.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/spotlight.json b/apps/vth-dashboard/src/components/components/spotlight.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/spotlight.json rename to apps/vth-dashboard/src/components/components/spotlight.json diff --git a/apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json b/apps/vth-dashboard/src/components/components/vega-visualisatie.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/components/vega-visualisatie.json rename to apps/vth-dashboard/src/components/components/vega-visualisatie.json diff --git a/apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json b/apps/vth-dashboard/src/components/sections/faq-section.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/sections/faq-section.json rename to apps/vth-dashboard/src/components/sections/faq-section.json diff --git a/apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json b/apps/vth-dashboard/src/components/sections/flexible-section.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/sections/flexible-section.json rename to apps/vth-dashboard/src/components/sections/flexible-section.json diff --git a/apps/vth-onderzoek-dashboard/src/components/seo/meta.json b/apps/vth-dashboard/src/components/seo/meta.json similarity index 100% rename from apps/vth-onderzoek-dashboard/src/components/seo/meta.json rename to apps/vth-dashboard/src/components/seo/meta.json diff --git a/apps/vth-onderzoek-dashboard/src/extensions/.gitkeep b/apps/vth-dashboard/src/extensions/.gitkeep similarity index 100% rename from apps/vth-onderzoek-dashboard/src/extensions/.gitkeep rename to apps/vth-dashboard/src/extensions/.gitkeep diff --git a/apps/vth-onderzoek-dashboard/src/index.ts b/apps/vth-dashboard/src/index.ts similarity index 100% rename from apps/vth-onderzoek-dashboard/src/index.ts rename to apps/vth-dashboard/src/index.ts diff --git a/apps/vth-onderzoek-dashboard/tsconfig.json b/apps/vth-dashboard/tsconfig.json similarity index 100% rename from apps/vth-onderzoek-dashboard/tsconfig.json rename to apps/vth-dashboard/tsconfig.json From fb6a24cbc4092c8750c0b7244b13e13e0af5b711 Mon Sep 17 00:00:00 2001 From: Bryan de Jong Date: Tue, 22 Aug 2023 07:23:38 +0100 Subject: [PATCH 4/5] fix: add docker-compose for vth --- apps/vth-dashboard/package.json | 2 +- .../content-types/search-tip/schema.json | 48 ---------- .../api/search-tip/controllers/search-tip.ts | 7 -- .../src/api/search-tip/routes/search-tip.ts | 7 -- .../src/api/search-tip/services/search-tip.ts | 7 -- .../src/components/components/spatial.json | 19 ---- docker-compose.vth.dev.yml | 88 +++++++++++++++++++ package.json | 2 +- 8 files changed, 90 insertions(+), 90 deletions(-) delete mode 100644 apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json delete mode 100644 apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts delete mode 100644 apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts delete mode 100644 apps/vth-dashboard/src/api/search-tip/services/search-tip.ts delete mode 100644 apps/vth-dashboard/src/components/components/spatial.json create mode 100644 docker-compose.vth.dev.yml diff --git a/apps/vth-dashboard/package.json b/apps/vth-dashboard/package.json index 63fb6375..70472e89 100644 --- a/apps/vth-dashboard/package.json +++ b/apps/vth-dashboard/package.json @@ -1,5 +1,5 @@ { - "name": "@frameless/vth-onderzoek-dashboard", + "name": "@frameless/vth-dashboard", "private": false, "version": "0.1.0", "description": "A Strapi application", diff --git a/apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json b/apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json deleted file mode 100644 index 8c02aec2..00000000 --- a/apps/vth-dashboard/src/api/search-tip/content-types/search-tip/schema.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "kind": "singleType", - "collectionName": "search_tips", - "info": { - "singularName": "search-tip", - "pluralName": "search-tips", - "displayName": "Search tip", - "description": "" - }, - "options": { - "draftAndPublish": true - }, - "pluginOptions": { - "i18n": { - "localized": true - } - }, - "attributes": { - "title": { - "pluginOptions": { - "i18n": { - "localized": true - } - }, - "type": "string", - "required": true - }, - "body": { - "pluginOptions": { - "i18n": { - "localized": true - } - }, - "type": "richtext", - "required": true - }, - "seo": { - "type": "component", - "repeatable": false, - "pluginOptions": { - "i18n": { - "localized": true - } - }, - "component": "seo.meta" - } - } -} diff --git a/apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts deleted file mode 100644 index 5ac79e89..00000000 --- a/apps/vth-dashboard/src/api/search-tip/controllers/search-tip.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * search-tip controller - */ - -import { factories } from '@strapi/strapi'; - -export default factories.createCoreController('api::search-tip.search-tip'); diff --git a/apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts deleted file mode 100644 index 5904fc87..00000000 --- a/apps/vth-dashboard/src/api/search-tip/routes/search-tip.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * search-tip router - */ - -import { factories } from '@strapi/strapi'; - -export default factories.createCoreRouter('api::search-tip.search-tip'); diff --git a/apps/vth-dashboard/src/api/search-tip/services/search-tip.ts b/apps/vth-dashboard/src/api/search-tip/services/search-tip.ts deleted file mode 100644 index 946f4f75..00000000 --- a/apps/vth-dashboard/src/api/search-tip/services/search-tip.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * search-tip service - */ - -import { factories } from '@strapi/strapi'; - -export default factories.createCoreService('api::search-tip.search-tip'); diff --git a/apps/vth-dashboard/src/components/components/spatial.json b/apps/vth-dashboard/src/components/components/spatial.json deleted file mode 100644 index a1e79e14..00000000 --- a/apps/vth-dashboard/src/components/components/spatial.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "collectionName": "components_components_spatials", - "info": { - "displayName": "spatial", - "description": "" - }, - "options": {}, - "attributes": { - "resourceIdentifier": { - "type": "customField", - "customField": "plugin::gemeente-select.gemeente" - }, - "scheme": { - "type": "customField", - "customField": "plugin::scheme-select.scheme", - "required": true - } - } -} diff --git a/docker-compose.vth.dev.yml b/docker-compose.vth.dev.yml new file mode 100644 index 00000000..0569e368 --- /dev/null +++ b/docker-compose.vth.dev.yml @@ -0,0 +1,88 @@ +version: "3" +services: + vth_strapi: + container_name: vth_strapi + build: + context: . + dockerfile: Dockerfile.dev + image: vth-strapi:latest + restart: unless-stopped + volumes: + - ./package.json:/opt/app/package.json + - ./yarn.lock:/opt/app/yarn.lock + - ./apps/vth-dashboard/config:/opt/app/apps/vth-dashboard/config + - ./apps/vth-dashboard/src:/opt/app/apps/vth-dashboard/src + - ./apps/vth-dashboard/package.json:/opt/app/apps/vth-dashboard/package.json + - ./apps/vth-dashboard/public/:/opt/app/apps/vth-dashboard/public/ + entrypoint: ["/bin/sh", "-c"] + command: + - | + npm run dev --workspace @frameless/vth-dashboard + environment: + HOST: ${HOST} + PORT: ${PORT} + APP_KEYS: ${APP_KEYS} + ADMIN_JWT_SECRET: ${ADMIN_JWT_SECRET} + JWT_SECRET: ${JWT_SECRET} + API_TOKEN_SALT: ${API_TOKEN_SALT} + PREVIEW_SECRET_TOKEN: ${PREVIEW_SECRET_TOKEN} + TRANSFER_TOKEN_SALT: ${TRANSFER_TOKEN_SALT} + DATABASE_CLIENT: ${DATABASE_CLIENT} + DATABASE_HOST: vth_strapi_db + DATABASE_PORT: ${DATABASE_PORT} + DATABASE_NAME: ${DATABASE_NAME} + DATABASE_USERNAME: ${DATABASE_USERNAME} + DATABASE_PASSWORD: ${DATABASE_PASSWORD} + FRONTEND_PUBLIC_URL: ${FRONTEND_PUBLIC_URL} + NODE_ENV: ${NODE_ENV} + ports: + - "1337:1337" + networks: + - vth_strapi_network + depends_on: + - vth_strapi_db + vth_strapi_db: + container_name: vth_strapi_db + platform: linux/amd64 #for platform error on Apple M1 chips + restart: unless-stopped + image: postgres:12.0-alpine + environment: + POSTGRES_USER: ${DATABASE_USERNAME} + POSTGRES_PASSWORD: ${DATABASE_PASSWORD} + POSTGRES_DB: ${DATABASE_NAME} + healthcheck: + test: + [ + "CMD-SHELL", + "sh -c 'pg_isready -U ${DATABASE_USERNAME} -d ${DATABASE_NAME}'", + ] + interval: 10s + timeout: 3s + retries: 3 + volumes: + - vth-strapi-data:/var/lib/postgresql/data/ + ports: + - "5432:5432" + networks: + - vth_strapi_network + vth_pgadmin: + container_name: vth_pgadmin + image: dpage/pgadmin4 + restart: always + environment: + PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL} + PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD} + ports: + - "8080:80" + networks: + - vth_strapi_network + depends_on: + - vth_strapi_db + +volumes: + vth-strapi-data: + +networks: + vth_strapi_network: + name: Strapi network + driver: bridge diff --git a/package.json b/package.json index 5a941407..d90f6959 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "packages/samenwerkende-catalogi", "apps/pdc-dashboard", "apps/pdc-frontend", - "apps/vth-onderzoek-dashboard", + "apps/vth-dashboard", "packages/*" ], "repository": { From 8beacd064aae3c62251faaa52d96dbfdf4c1a711 Mon Sep 17 00:00:00 2001 From: Bryan de Jong Date: Tue, 22 Aug 2023 08:42:56 +0100 Subject: [PATCH 5/5] build(vth): add prod docker-compose --- Dockerfile.dev | 1 + docker-compose.vth.prod.yml | 79 +++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 docker-compose.vth.prod.yml diff --git a/Dockerfile.dev b/Dockerfile.dev index a6337758..d96f65b3 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -12,6 +12,7 @@ COPY ./package.json ./yarn.lock ./ ENV PATH /opt/app/node_modules/.bin:$PATH COPY ./apps/pdc-frontend/package.json apps/pdc-frontend/package.json COPY ./apps/pdc-dashboard/package.json apps/pdc-dashboard/package.json +COPY ./apps/vth-dashboard/package.json apps/vth-dashboard/package.json COPY ./packages/catalogi-data/package.json packages/catalogi-data/package.json COPY ./packages/preview-button/package.json packages/preview-button/package.json COPY ./packages/samenwerkende-catalogi/package.json packages/samenwerkende-catalogi/package.json diff --git a/docker-compose.vth.prod.yml b/docker-compose.vth.prod.yml new file mode 100644 index 00000000..7ea3824f --- /dev/null +++ b/docker-compose.vth.prod.yml @@ -0,0 +1,79 @@ +version: "3.8" +services: + vth_strapi: + container_name: vth_strapi + build: + context: . + dockerfile: Dockerfile.prod + image: vth-strapi:latest + restart: unless-stopped + volumes: + - ./apps/vth-dashboard/public/uploads:/opt/app/apps/vth-dashboard/public/uploads + command: npm run --workspace @frameless/vth-dashboard start + environment: + HOST: ${HOST} + PORT: ${PORT} + APP_KEYS: ${APP_KEYS} + ADMIN_JWT_SECRET: ${ADMIN_JWT_SECRET} + JWT_SECRET: ${JWT_SECRET} + API_TOKEN_SALT: ${API_TOKEN_SALT} + PREVIEW_SECRET_TOKEN: ${PREVIEW_SECRET_TOKEN} + TRANSFER_TOKEN_SALT: ${TRANSFER_TOKEN_SALT} + FRONTEND_PUBLIC_URL: ${FRONTEND_PUBLIC_URL} + DATABASE_CLIENT: ${DATABASE_CLIENT} + DATABASE_HOST: vth_strapi_db + DATABASE_PORT: ${DATABASE_PORT} + DATABASE_NAME: ${DATABASE_NAME} + DATABASE_USERNAME: ${DATABASE_USERNAME} + DATABASE_PASSWORD: ${DATABASE_PASSWORD} + NODE_ENV: ${NODE_ENV} + ports: + - "1337:1337" + networks: + - vth_strapi_network + depends_on: + - vth_strapi_db + vth_strapi_db: + container_name: vth_strapi_db + platform: linux/amd64 #for platform error on Apple M1 chips + restart: unless-stopped + image: postgres:12.0-alpine + environment: + POSTGRES_USER: ${DATABASE_USERNAME} + POSTGRES_PASSWORD: ${DATABASE_PASSWORD} + POSTGRES_DB: ${DATABASE_NAME} + healthcheck: + test: + [ + "CMD-SHELL", + "sh -c 'pg_isready -U ${DATABASE_USERNAME} -d ${DATABASE_NAME}'", + ] + interval: 10s + timeout: 3s + retries: 3 + volumes: + - vth-strapi-data:/var/lib/postgresql/data/ + ports: + - "5432:5432" + networks: + - vth_strapi_network + vth_pgadmin: + container_name: vth_pgadmin + image: dpage/pgadmin4 + restart: always + environment: + PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL} + PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD} + ports: + - "9000:80" + networks: + - vth_strapi_network + depends_on: + - vth_strapi_db +volumes: + vth-strapi-data: + +networks: + vth_strapi_network: + name: Strapi network + driver: bridge