openapi: 3.0.0
info:
title: Landelijke tabellen
description: API voor het ontsluiten van landelijke tabellen die op de website van
BZK worden gepubliceerd.
contact:
url: https://github.com/VNG-Realisatie/Haal-Centraal-BRP-bevragen/tree/master/api-specificatie/Landelijke%20tabellen
license:
name: European Union Public License, version 1.2 (EUPL-1.2)
url: https://eupl.eu/1.2/nl/
version: 1.0.0
servers:
- url: https://virtserver.swaggerhub.com/VNGRealisatie/api/landelijke_tabellen/
description: SwaggerHub API Auto Mocking
paths:
/tabellen:
get:
tags:
- Tabellen
description: Het ophalen van een collectie landelijke tabellen.
operationId: getTabellen
parameters:
- name: tabelidentificatie
in: query
description: De identificatie van een landelijke tabel.
required: false
style: form
explode: true
schema:
type: string
- name: omschrijving
in: query
description: De naam van de tabel.
Bij het zoeken mag er gebruik worden
gemaakt van [wildcards](https://github.com/VNG-Realisatie/Haal-Centraal-common/blob/master/features/wildcard.feature).
Zoeken
is [case-Insensitive](https://github.com/VNG-Realisatie/Bevragingen-ingeschreven-personen/blob/master/features/case_insensitive.feature)
required: false
style: form
explode: true
schema:
type: string
responses:
"200":
description: Zoekactie geslaagd
headers:
api-version:
$ref: '#/components/headers/api_version'
warning:
$ref: '#/components/headers/warning'
content:
application/json:
schema:
$ref: '#/components/schemas/TabelCollectie'
"400":
description: Bad Request
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/BadRequestFoutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1
title: Ten minste één parameter moet worden opgegeven.
status: 400
detail: The request could not be understood by the server due to malformed
syntax. The client SHOULD NOT repeat the request without modification.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: paramsRequired
invalidParams:
- type: https://www.vng.nl/realisatie/api/validaties/integer
name: verblijfplaats__huisnummer
code: integer
reason: Waarde is geen geldige integer.
"401":
description: Unauthorized
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2
title: Niet correct geauthenticeerd.
status: 401
detail: The request requires user authentication. The response MUST
include a WWW-Authenticate header field (section 14.47) containing
a challenge applicable to the requested resource.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: authentication
"403":
description: Forbidden
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4
title: U bent niet geautoriseerd voor deze operatie.
status: 403
detail: The server understood the request, but is refusing to fulfill
it.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: autorisation
"406":
description: Not Acceptable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7
title: Gevraagde contenttype wordt niet ondersteund.
status: 406
detail: The resource identified by the request is only capable of
generating response entities which have content characteristics
not acceptable according to thr accept headers sent in the request
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAcceptable
"500":
description: Internal Server Error
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1
title: Interne server fout.
status: 500
detail: The server encountered an unexpected condition which prevented
it from fulfilling the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: serverError
"501":
description: Not Implemented
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.2
title: Not Implemented
status: 501
detail: The server does not support the functionality required to
fulfill the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notImplemented
"503":
description: Service Unavailable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4
title: Bronservice {bron} is tijdelijk niet beschikbaar.
status: 503
detail: The service is currently unable to handle the request due
to a temporary overloading or maintenance of the server.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAvailable
/tabellen/{tabelidentificatie}:
get:
tags:
- Tabellen
description: Het ophalen van de gegevens van een enkele landelijke tabel
operationId: getTabel
parameters:
- name: tabelidentificatie
in: path
description: De identificatie van een landelijke tabel.
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Zoekactie geslaagd
headers:
api-version:
$ref: '#/components/headers/api_version'
warning:
$ref: '#/components/headers/warning'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/Tabel'
"400":
description: Bad Request
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/BadRequestFoutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1
title: Ten minste één parameter moet worden opgegeven.
status: 400
detail: The request could not be understood by the server due to malformed
syntax. The client SHOULD NOT repeat the request without modification.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: paramsRequired
invalidParams:
- type: https://www.vng.nl/realisatie/api/validaties/integer
name: verblijfplaats__huisnummer
code: integer
reason: Waarde is geen geldige integer.
"401":
description: Unauthorized
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2
title: Niet correct geauthenticeerd.
status: 401
detail: The request requires user authentication. The response MUST
include a WWW-Authenticate header field (section 14.47) containing
a challenge applicable to the requested resource.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: authentication
"403":
description: Forbidden
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4
title: U bent niet geautoriseerd voor deze operatie.
status: 403
detail: The server understood the request, but is refusing to fulfill
it.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: autorisation
"404":
description: Not Found
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.5
title: Opgevraagde resource bestaat niet.
status: 404
detail: The server has not found anything matching the Request-URI.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notFound
"406":
description: Not Acceptable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7
title: Gevraagde contenttype wordt niet ondersteund.
status: 406
detail: The resource identified by the request is only capable of
generating response entities which have content characteristics
not acceptable according to thr accept headers sent in the request
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAcceptable
"500":
description: Internal Server Error
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1
title: Interne server fout.
status: 500
detail: The server encountered an unexpected condition which prevented
it from fulfilling the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: serverError
"501":
description: Not Implemented
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.2
title: Not Implemented
status: 501
detail: The server does not support the functionality required to
fulfill the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notImplemented
"503":
description: Service Unavailable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4
title: Bronservice {bron} is tijdelijk niet beschikbaar.
status: 503
detail: The service is currently unable to handle the request due
to a temporary overloading or maintenance of the server.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAvailable
/tabellen/{tabelidentificatie}/waarden:
get:
tags:
- Tabelwaarden
description: Het ophalen van de tabelwaarden van een landelijke tabel.
Als
er op omschrijving gezocht wordt worden alleen actuele waarden geretourneerd.
Als de parameter inclusief beeindigd met waarde true wordt
meegegeven bij de call worden ook beeindigde waarden geretourneerd.
operationId: getWaarden
parameters:
- name: tabelidentificatie
in: path
description: De identificatie van een landelijke tabel.
required: true
style: simple
explode: false
schema:
type: string
- name: omschrijving
in: query
description: De omschrijving van de tabelwaarde.
Bij het zoeken mag er
gebruik worden gemaakt van [wildcards](https://github.com/VNG-Realisatie/Haal-Centraal-common/blob/master/features/wildcard.feature).
Zoeken is [case-Insensitive](https://github.com/VNG-Realisatie/Bevragingen-ingeschreven-personen/blob/master/features/case_insensitive.feature)
required: false
style: form
explode: true
schema:
type: string
- name: inclusiefbeeindigd
in: query
description: De indicatie waarmee aangegeven wordt of beëindigde waarden moeten
worden meegeleverd. Default worden alleen actuele tabelwaarden geretourneerd.
Wanneer deze wordt opgenomen met de waarde true, dan worden ook beëindigde
tabelwaarden meegeleverd.
required: false
style: form
explode: true
schema:
type: boolean
responses:
"200":
description: Zoekactie geslaagd
headers:
api-version:
$ref: '#/components/headers/api_version'
warning:
$ref: '#/components/headers/warning'
content:
application/json:
schema:
$ref: '#/components/schemas/WaardeCollectie'
"400":
description: Bad Request
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/BadRequestFoutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1
title: Ten minste één parameter moet worden opgegeven.
status: 400
detail: The request could not be understood by the server due to malformed
syntax. The client SHOULD NOT repeat the request without modification.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: paramsRequired
invalidParams:
- type: https://www.vng.nl/realisatie/api/validaties/integer
name: verblijfplaats__huisnummer
code: integer
reason: Waarde is geen geldige integer.
"401":
description: Unauthorized
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2
title: Niet correct geauthenticeerd.
status: 401
detail: The request requires user authentication. The response MUST
include a WWW-Authenticate header field (section 14.47) containing
a challenge applicable to the requested resource.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: authentication
"403":
description: Forbidden
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4
title: U bent niet geautoriseerd voor deze operatie.
status: 403
detail: The server understood the request, but is refusing to fulfill
it.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: autorisation
"406":
description: Not Acceptable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7
title: Gevraagde contenttype wordt niet ondersteund.
status: 406
detail: The resource identified by the request is only capable of
generating response entities which have content characteristics
not acceptable according to thr accept headers sent in the request
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAcceptable
"500":
description: Internal Server Error
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1
title: Interne server fout.
status: 500
detail: The server encountered an unexpected condition which prevented
it from fulfilling the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: serverError
"501":
description: Not Implemented
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.2
title: Not Implemented
status: 501
detail: The server does not support the functionality required to
fulfill the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notImplemented
"503":
description: Service Unavailable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4
title: Bronservice {bron} is tijdelijk niet beschikbaar.
status: 503
detail: The service is currently unable to handle the request due
to a temporary overloading or maintenance of the server.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAvailable
/tabellen/{tabelidentificatie}/waarden/{code}:
get:
tags:
- Tabelwaarden
description: Het ophalen van de gegevens van een enkele waarde uit een landelijke
tabel.
operationId: getWaarde
parameters:
- name: tabelidentificatie
in: path
description: De identificatie van een landelijke tabel.
required: true
style: simple
explode: false
schema:
type: string
- name: code
in: path
description: De code, behorende bij de tabelwaarde.
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Zoekactie geslaagd
headers:
api-version:
$ref: '#/components/headers/api_version'
warning:
$ref: '#/components/headers/warning'
content:
application/json:
schema:
$ref: '#/components/schemas/Waarde'
"400":
description: Bad Request
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/BadRequestFoutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1
title: Ten minste één parameter moet worden opgegeven.
status: 400
detail: The request could not be understood by the server due to malformed
syntax. The client SHOULD NOT repeat the request without modification.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: paramsRequired
invalidParams:
- type: https://www.vng.nl/realisatie/api/validaties/integer
name: verblijfplaats__huisnummer
code: integer
reason: Waarde is geen geldige integer.
"401":
description: Unauthorized
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2
title: Niet correct geauthenticeerd.
status: 401
detail: The request requires user authentication. The response MUST
include a WWW-Authenticate header field (section 14.47) containing
a challenge applicable to the requested resource.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: authentication
"403":
description: Forbidden
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4
title: U bent niet geautoriseerd voor deze operatie.
status: 403
detail: The server understood the request, but is refusing to fulfill
it.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: autorisation
"404":
description: Not Found
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.5
title: Opgevraagde resource bestaat niet.
status: 404
detail: The server has not found anything matching the Request-URI.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notFound
"406":
description: Not Acceptable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7
title: Gevraagde contenttype wordt niet ondersteund.
status: 406
detail: The resource identified by the request is only capable of
generating response entities which have content characteristics
not acceptable according to thr accept headers sent in the request
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAcceptable
"500":
description: Internal Server Error
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.1
title: Interne server fout.
status: 500
detail: The server encountered an unexpected condition which prevented
it from fulfilling the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: serverError
"501":
description: Not Implemented
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.2
title: Not Implemented
status: 501
detail: The server does not support the functionality required to
fulfill the request.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notImplemented
"503":
description: Service Unavailable
headers:
api-version:
$ref: '#/components/headers/api_version'
content:
application/problem+json:
schema:
$ref: '#/components/schemas/Foutbericht'
example:
type: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4
title: Bronservice {bron} is tijdelijk niet beschikbaar.
status: 503
detail: The service is currently unable to handle the request due
to a temporary overloading or maintenance of the server.
instance: https://datapunt.voorbeeldgemeente.nl/api/v1/resourcenaam?parameter=waarde
code: notAvailable
components:
schemas:
Waarde:
allOf:
- $ref: '#/components/schemas/Waardetabel'
- properties:
datumEinde:
title: datumEinde
type: string
description: Einddatum van de geldigheid van de gegevens.
format: date
datumIngang:
title: datumIngang
type: string
description: Begindatum van de geldigheid van de gegevens
format: date
nieuweCode:
title: nieuweCode
maxLength: 4
type: string
description: Code van de nieuwegevormde gemeente waarin deze gemeente
is overgegaan. Dit element komt alleen voor in de Gemeenten-tabel
soort:
title: soort
type: string
description: Soort reden beëindigen of opnemen nationaliteit. Dit element
komt alleen voor in de tabel Reden opnemen - beeindigen Nationaliteit.
example: VK
WaardeCollectie:
type: object
properties:
waarden:
type: array
items:
$ref: '#/components/schemas/Waarde'
Tabel:
type: object
properties:
tabelidentificatie:
type: string
description: De identificatie, behorende bij de tabel.
example: Reden_Nationaliteit
omschrijving:
type: string
description: De omschrijving van de landelijke tabel
example: Reden opnemen - beeindigen Nationaliteit
description: Landelijke tabellen zoals ontsloten door het RvIG.
TabelCollectie:
type: object
properties:
tabellen:
type: array
items:
$ref: '#/components/schemas/Tabel'
BadRequestFoutbericht:
allOf:
- $ref: '#/components/schemas/Foutbericht'
- type: object
properties:
invalidParams:
type: array
description: Foutmelding per fout in een parameter. Alle gevonden fouten
worden één keer teruggemeld.
items:
$ref: '#/components/schemas/InvalidParams'
Foutbericht:
type: object
properties:
type:
type: string
description: Link naar meer informatie over deze fout
format: uri
title:
type: string
description: Beschrijving van de fout
status:
type: integer
description: Http status code
detail:
type: string
description: Details over de fout
instance:
type: string
description: Uri van de aanroep die de fout heeft veroorzaakt
format: uri
code:
minLength: 1
type: string
description: Systeemcode die het type fout aangeeft
description: Terugmelding bij een fout. JSON representatie in lijn met [RFC7807](https://tools.ietf.org/html/rfc7807).
InvalidParams:
type: object
properties:
type:
type: string
format: uri
example: https://www.vng.nl/realisatie/api/{major-versie}/validaties/integer
name:
type: string
description: Naam van de parameter
example: verblijfplaats__huisnummer
code:
minLength: 1
type: string
description: Systeemcode die het type fout aangeeft
example: integer
reason:
type: string
description: Beschrijving van de fout op de parameterwaarde
example: Waarde is geen geldige integer.
description: Details over fouten in opgegeven parameters
Waardetabel:
type: object
properties:
code:
type: string
example: "6030"
omschrijving:
type: string
example: Nederland
parameters:
tabelidentificatie:
name: tabelidentificatie
in: query
description: De identificatie van een landelijke tabel.
required: false
style: form
explode: true
schema:
type: string
tabelidentificatie_path:
name: tabelidentificatie
in: path
description: De identificatie van een landelijke tabel.
required: true
style: simple
explode: false
schema:
type: string
code_path:
name: code
in: path
description: De code, behorende bij de tabelwaarde.
required: true
style: simple
explode: false
schema:
type: string
tabelomschrijving:
name: omschrijving
in: query
description: De naam van de tabel.
Bij het zoeken mag er gebruik worden
gemaakt van [wildcards](https://github.com/VNG-Realisatie/Haal-Centraal-common/blob/master/features/wildcard.feature).
Zoeken
is [case-Insensitive](https://github.com/VNG-Realisatie/Bevragingen-ingeschreven-personen/blob/master/features/case_insensitive.feature)
required: false
style: form
explode: true
schema:
type: string
omschrijving:
name: omschrijving
in: query
description: De omschrijving van de tabelwaarde.
Bij het zoeken mag er
gebruik worden gemaakt van [wildcards](https://github.com/VNG-Realisatie/Haal-Centraal-common/blob/master/features/wildcard.feature).
Zoeken is [case-Insensitive](https://github.com/VNG-Realisatie/Bevragingen-ingeschreven-personen/blob/master/features/case_insensitive.feature)
required: false
style: form
explode: true
schema:
type: string
inclusiefbeeindigd:
name: inclusiefbeeindigd
in: query
description: De indicatie waarmee aangegeven wordt of beëindigde waarden moeten
worden meegeleverd. Default worden alleen actuele tabelwaarden geretourneerd.
Wanneer deze wordt opgenomen met de waarde true, dan worden ook beëindigde
tabelwaarden meegeleverd.
required: false
style: form
explode: true
schema:
type: boolean
headers:
api_version:
schema:
type: string
description: Geeft een specifieke API-versie aan in de context van een specifieke
aanroep.
example: 1.0.0
warning:
schema:
type: string
description: zie RFC 7234. In het geval een major versie wordt uitgefaseerd,
gebruiken we warn-code 299 ("Miscellaneous Persistent Warning") en het API
end-point (inclusief versienummer) als de warn-agent van de warning, gevolgd
door de warn-text met de human-readable waarschuwing
example: '299 https://service.../api/.../v1 "Deze versie van de API is verouderd
en zal uit dienst worden genomen op 2018-02-01. Raadpleeg voor meer informatie
hier de documentatie: https://omgevingswet.../api/.../v1".'