add new entries

This commit is contained in:
kempersc 2025-12-07 23:08:02 +01:00
parent 57c743b005
commit 7e3559f7e5
359 changed files with 12206 additions and 5256 deletions

View file

@ -1139,6 +1139,11 @@ async def get_admin2_geojson(admin2_id: int) -> GeoJSONFeature:
if not row:
raise HTTPException(status_code=404, detail=f"Admin2 boundary {admin2_id} not found")
# asyncpg may return geometry as string or dict depending on version
geom = row['geometry']
if isinstance(geom, str):
geom = json.loads(geom)
return GeoJSONFeature(
properties={
"id": row['id'],
@ -1150,7 +1155,7 @@ async def get_admin2_geojson(admin2_id: int) -> GeoJSONFeature:
"area_km2": float(row['area_km2']) if row['area_km2'] else None,
"source": row['source'],
},
geometry=row['geometry']
geometry=geom
)
@ -1205,8 +1210,14 @@ async def get_country_admin2_geojson(
ORDER BY ba2.admin2_name
""", country_code.upper(), simplify)
features = [
GeoJSONFeature(
features = []
for r in rows:
# asyncpg may return geometry as string or dict depending on version
geom = r['geometry']
if isinstance(geom, str):
geom = json.loads(geom)
features.append(GeoJSONFeature(
properties={
"id": r['id'],
"code": r['code'],
@ -1216,10 +1227,8 @@ async def get_country_admin2_geojson(
"area_km2": float(r['area_km2']) if r['area_km2'] else None,
"source": r['source'],
},
geometry=r['geometry']
)
for r in rows
]
geometry=geom
))
return GeoJSONFeatureCollection(features=features)

View file

@ -35,7 +35,7 @@ original_entry:
region: CEARÁ
processing_timestamp: '2025-12-06T23:35:51.829321+00:00'
ghcid:
ghcid_current: BR-PE-FDN-O-MC
ghcid_current: BR-CE-FOR-O-MC
ghcid_original: BR-CE-XXX-O-MC
ghcid_uuid: 2b679114-a540-507a-9d11-beb237d292fe
ghcid_uuid_sha256: 92ffa0ad-8933-8142-69a9-70f6cd45babb
@ -43,18 +43,25 @@ ghcid:
record_id: f47959c6-83e9-4b87-b9d2-a3d27b7e44d9
generation_timestamp: '2025-12-06T23:35:51.829321+00:00'
location_resolution:
method: GOOGLE_PLACES_GEONAMES
method: MANUAL_RESEARCH
country_code: BR
region_code: PE
region_name: Pernambuco
city_code: FDN
city_name: Fernando de Noronha (Distrito Estadual)
geonames_id: 6317136
feature_code: PPL
google_place_id: ChIJVYKkOirF5g4R5iduZYRw1a8
latitude: 11.8590985
longitude: -15.589254199999997
resolution_date: '2025-12-07T16:38:44.771316+00:00'
region_code: CE
region_name: Ceará
city_code: FOR
city_name: Fortaleza
geonames_id: 3399415
feature_code: PPLA
latitude: -3.71722
longitude: -38.5434
resolution_date: '2025-12-07T00:00:00+00:00'
research_sources:
- type: website
url: https://mapacultural.secult.ce.gov.br/
notes: Official Ceará state government cultural mapping platform
- type: wikidata
id: Q62061995
claim: P131
notes: Mapa Cultural is a digital platform operated by SECULT (Secretaria da Cultura) of Ceará state, based in Fortaleza. Google Maps returned a wrong match in Guinea-Bissau.
ghcid_history:
- ghcid: BR-CE-XXX-O-MC
ghcid_numeric: 10592361515790348610
@ -64,15 +71,19 @@ ghcid:
- ghcid: BR-PE-FDN-O-MC
ghcid_numeric: 10592361515790348610
valid_from: '2025-12-07T16:38:44.771316+00:00'
reason: 'Location resolved via Google Places + GeoNames: Fernando de Noronha (Distrito
Estadual) (PE)'
valid_to: '2025-12-07T00:00:00+00:00'
reason: 'REJECTED - Google Maps returned wrong country (Guinea-Bissau instead of Brazil)'
- ghcid: BR-CE-FOR-O-MC
ghcid_numeric: 10592361515790348610
valid_from: '2025-12-07T00:00:00+00:00'
reason: 'Manual correction: Mapa Cultural is a Ceará state platform based in Fortaleza'
custodian_name:
claim_type: custodian_name
claim_value: Mapa Cultural
source_type: ch_annotator
identifiers:
- identifier_scheme: GHCID
identifier_value: BR-PE-FDN-O-MC
identifier_value: BR-CE-FOR-O-MC
- identifier_scheme: GHCID_UUID
identifier_value: 2b679114-a540-507a-9d11-beb237d292fe
- identifier_scheme: GHCID_UUID_SHA256
@ -169,10 +180,15 @@ wikidata_enrichment:
wikidata_entity_id: Q62061995
wikidata_label_en: Mapa Cultural
google_maps_enrichment:
place_id: ChIJVYKkOirF5g4R5iduZYRw1a8
formatted_address: VC56+J7Q, Bissau, Guinea-Bissau
website: null
latitude: 11.8590985
longitude: -15.589254199999997
enriched_at: '2025-12-07T16:38:44.771316+00:00'
source: Google Places API (New)
status: REJECTED
rejection_reason: Country mismatch - Google Maps returned a location in Guinea-Bissau (lat 11.86, lon -15.59) instead of Brazil. Mapa Cultural is a Ceará state government platform.
rejected_data:
place_id: ChIJVYKkOirF5g4R5iduZYRw1a8
formatted_address: VC56+J7Q, Bissau, Guinea-Bissau
latitude: 11.8590985
longitude: -15.589254199999997
enriched_at: '2025-12-07T16:38:44.771316+00:00'
expected_country: BR
returned_country: GW
rejection_timestamp: '2025-12-07T00:00:00+00:00'
notes: Mapa Cultural is a digital heritage platform for the state of Ceará, Brazil. The platform URL (mapacultural.secult.ce.gov.br) confirms it is operated by the Ceará state government (SECULT).

View file

@ -27,7 +27,7 @@ original_entry:
country: CL
processing_timestamp: '2025-12-06T23:39:01.875164+00:00'
ghcid:
ghcid_current: CL-LL-TDP-X-CIH
ghcid_current: CL-RM-XXX-X-CIH
ghcid_original: CL-CH-XXX-X-CIH
ghcid_uuid: b3cfeb3a-ec95-56a5-abcf-cf5ca35f2a86
ghcid_uuid_sha256: d69adfd1-2a31-874b-908c-50047c390e74
@ -35,18 +35,28 @@ ghcid:
record_id: e54ca03d-298e-434e-8c55-4a1748d43c18
generation_timestamp: '2025-12-06T23:39:01.875164+00:00'
location_resolution:
method: GOOGLE_PLACES_GEONAMES
method: MANUAL_RESEARCH
country_code: CL
region_code: LL
region_name: Region of Magallanes
city_code: TDP
city_name: Torres del Paine
geonames_id: 7536052
feature_code: PPL
google_place_id: ChIJc0JJHLoMu70R4hoFI8EXX5o
latitude: -50.3313371
longitude: -72.26498959999999
resolution_date: '2025-12-07T16:40:39.215019+00:00'
region_code: RM
region_name: Santiago Metropolitan Region
city_code: XXX
city_name: Chacabuco Province (specific city unknown)
geonames_id: 8181717
feature_code: ADM2
latitude: -33.0
longitude: -70.6
resolution_date: '2025-12-07T00:00:00+00:00'
research_sources:
- type: original_entry
notes: Original extraction mentioned Chacabuco region in Chile
- type: wikidata
id: Q201247
notes: Chacabuco Province is in Santiago Metropolitan Region (RM)
notes: |
Original entry specified Chacabuco, Chile. Google Maps incorrectly returned
"Centro de Interpretación Histórica" in El Calafate, Argentina.
Chacabuco Province is in Santiago Metropolitan Region.
Specific city within Chacabuco needs verification.
ghcid_history:
- ghcid: CL-CH-XXX-X-CIH
ghcid_numeric: 15463918359979079499
@ -56,14 +66,19 @@ ghcid:
- ghcid: CL-LL-TDP-X-CIH
ghcid_numeric: 15463918359979079499
valid_from: '2025-12-07T16:40:39.215019+00:00'
reason: 'Location resolved via Google Places + GeoNames: Torres del Paine (LL)'
valid_to: '2025-12-07T00:00:00+00:00'
reason: 'REJECTED - Google Maps returned wrong country (Argentina instead of Chile)'
- ghcid: CL-RM-XXX-X-CIH
ghcid_numeric: 15463918359979079499
valid_from: '2025-12-07T00:00:00+00:00'
reason: 'Manual correction: Chacabuco Province is in Santiago Metropolitan Region (RM), Chile. Specific city pending verification.'
custodian_name:
claim_type: custodian_name
claim_value: Centro de Interpretación Histórica
source_type: ch_annotator
identifiers:
- identifier_scheme: GHCID
identifier_value: CL-LL-TDP-X-CIH
identifier_value: CL-RM-XXX-X-CIH
- identifier_scheme: GHCID_UUID
identifier_value: b3cfeb3a-ec95-56a5-abcf-cf5ca35f2a86
- identifier_scheme: GHCID_UUID_SHA256
@ -145,10 +160,16 @@ ch_annotator:
creation_date: '2025-12-06T23:39:01.875164+00:00'
creation_method: create_custodian_from_ch_annotator.py
google_maps_enrichment:
place_id: ChIJc0JJHLoMu70R4hoFI8EXX5o
formatted_address: Almirante G. Brown 1175, Z9405 El Calafate, Santa Cruz, Argentina
website: https://centrodeinterpretacioncalafate.my.canva.site/
latitude: -50.3313371
longitude: -72.26498959999999
enriched_at: '2025-12-07T16:40:39.215019+00:00'
source: Google Places API (New)
status: REJECTED
rejection_reason: Country mismatch - Google Maps returned a location in El Calafate, Argentina instead of Chacabuco, Chile
rejected_data:
place_id: ChIJc0JJHLoMu70R4hoFI8EXX5o
formatted_address: Almirante G. Brown 1175, Z9405 El Calafate, Santa Cruz, Argentina
website: https://centrodeinterpretacioncalafate.my.canva.site/
latitude: -50.3313371
longitude: -72.26498959999999
enriched_at: '2025-12-07T16:40:39.215019+00:00'
expected_country: CL
returned_country: AR
rejection_timestamp: '2025-12-07T00:00:00+00:00'
notes: Original entry specified Chacabuco, Chile. Google Maps found a different "Centro de Interpretación Histórica" in El Calafate, Argentina. The Chilean institution needs separate verification.

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Behoud Drentse Schaapskudden
custodian_name:
claim_type: custodian_name
claim_value: behoud drentse schaapskudden
claim_value: Behoud Drentse Schaapskudden
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.406022+00:00'

View file

@ -48,7 +48,7 @@ contact:
website: http://www.boermarken.nl
custodian_name:
claim_type: custodian_name
claim_value: vereniging drentse boermarken
claim_value: Vereniging Drentse Boermarken
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.486841+00:00'

View file

@ -49,7 +49,7 @@ notes: 'We zijn trots dat onze Urut Isiwa-leerlingen de T ukang Urut Isiwa
In januari 2026 presenteren wij met dankbaarheid…'
custodian_name:
claim_type: custodian_name
claim_value: urut isiwa molukse massage
claim_value: Urut Isiwa Molukse massage
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.483770+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.pijprokers.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse federatie voor pijprokers
claim_value: Nederlandse Federatie voor Pijprokers
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.356700+00:00'

View file

@ -68,7 +68,7 @@ contact:
website: https://oliemolens.nl
custodian_name:
claim_type: custodian_name
claim_value: oliemolens.nl
claim_value: Oliemolens.nl
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.507827+00:00'

View file

@ -48,7 +48,7 @@ contact:
website: http://www.piratencultuur.nl
custodian_name:
claim_type: custodian_name
claim_value: piratencultuur
claim_value: Piratencultuur
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.375794+00:00'

View file

@ -87,8 +87,8 @@ enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00'
wikidata_enrichment:
wikidata_entity_id: Q1902577
wikidata_label: Bibliotheek Almere Stad
wikidata_description: Hoofdvestiging en administratief hoofdkantoor van De nieuwe bibliotheek, de openbare bibliotheekvoorziening
in de gemeente Almere
wikidata_description: Hoofdvestiging en administratief hoofdkantoor van De nieuwe
bibliotheek, de openbare bibliotheekvoorziening in de gemeente Almere
fetch_timestamp: '2025-11-28T12:22:39.723477+00:00'
match_method: isil_code_match
wikidata_coordinates:
@ -250,11 +250,14 @@ web_enrichment:
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: description
claim_value: De Nieuwe Bibliotheek (The New Library) is an award-winning, internationally recognized library in Almere
that smashed attendance records when it opened in 2010. Located in a landmark triangular building on Stadhuisplein designed
by MVSA Architects (Meyer & Van Schooten). Pioneered retail-inspired library design - books displayed face-out by lifestyle/interest
themes rather than traditional Dewey classification. Called "a department store for knowledge" with innovative merchandising
approach. Features news café, theater, film room, study areas. Also serves as Seats2meet coworking location.
claim_value: De Nieuwe Bibliotheek (The New Library) is an award-winning, internationally
recognized library in Almere that smashed attendance records when it opened
in 2010. Located in a landmark triangular building on Stadhuisplein designed
by MVSA Architects (Meyer & Van Schooten). Pioneered retail-inspired library
design - books displayed face-out by lifestyle/interest themes rather than traditional
Dewey classification. Called "a department store for knowledge" with innovative
merchandising approach. Features news café, theater, film room, study areas.
Also serves as Seats2meet coworking location.
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
@ -284,25 +287,29 @@ web_enrichment:
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: building_features
claim_value: Triangular building responding to urban design; Majestic central hall open to roof height; Horizontal glazing
strips on sloped facade; Escalator access to library floors; Glass entrance on Stadhuisplein
claim_value: Triangular building responding to urban design; Majestic central
hall open to roof height; Horizontal glazing strips on sloped facade; Escalator
access to library floors; Glass entrance on Stadhuisplein
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: innovations
claim_value: Books grouped by lifestyle/interest instead of Dewey Decimal; Face-out display merchandising (like bookstores);
Staff trained in marketing and customer service; Patron survey-driven redesign; Seats2meet coworking integration
claim_value: Books grouped by lifestyle/interest instead of Dewey Decimal; Face-out
display merchandising (like bookstores); Staff trained in marketing and customer
service; Patron survey-driven redesign; Seats2meet coworking integration
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: facilities
claim_value: News café; Theater room; Film room; Study and work areas; Coffee shop; Performing arts space; Public bathroom
claim_value: News café; Theater room; Film room; Study and work areas; Coffee
shop; Performing arts space; Public bathroom
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: recognition
claim_value: '[{''Library Ranking Europe'': ''5 stars (Excellent)''}, ''Featured in Shareable article on library innovation'',
''International case study for library transformation'']'
claim_value: '[{''Library Ranking Europe'': ''5 stars (Excellent)''}, ''Featured
in Shareable article on library innovation'', ''International case study for
library transformation'']'
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
@ -322,17 +329,20 @@ web_enrichment:
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: services
claim_value: Reading and borrowing; Learning and studying; Working spaces; Events and films; Courses and workshops
claim_value: Reading and borrowing; Learning and studying; Working spaces; Events
and films; Courses and workshops
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: opening_hours
claim_value: Extensive hours including Sunday 12:00-17:00, weekday evenings until 20:00
claim_value: Extensive hours including Sunday 12:00-17:00, weekday evenings until
20:00
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.9
- claim_type: google_place_types_note
claim_value: Multiple types including library, coffee shop, movie theater, performing arts theater, café, event venue
claim_value: Multiple types including library, coffee shop, movie theater, performing
arts theater, café, event venue
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
@ -352,7 +362,8 @@ web_enrichment:
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
- claim_type: historical_note
claim_value: Almere is a new town established in 1976; library replaced original founding-year facility
claim_value: Almere is a new town established in 1976; library replaced original
founding-year facility
source_url: https://www.denieuwebibliotheek.nl/
extraction_timestamp: '2025-11-28T16:00:00+00:00'
confidence: 0.8
@ -451,12 +462,14 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:56:28.410444+00:00'
- claim_type: description_short
claim_value: Right next door to the town hall in one of Almeres most prominent locations Stadhuisplein stands a highly
successful building; Almeres new public library. It is one of the latest construction projects forming part of Almeres
city-centre renewal and for which OMA drafted master plans from…
raw_value: Right next door to the town hall in one of Almeres most prominent locations Stadhuisplein stands a highly
successful building; Almeres new public library. It is one of the latest construction projects forming part of Almeres
city-centre renewal and for which OMA drafted master plans from…
claim_value: Right next door to the town hall in one of Almeres most prominent
locations Stadhuisplein stands a highly successful building; Almeres new
public library. It is one of the latest construction projects forming part of
Almeres city-centre renewal and for which OMA drafted master plans from…
raw_value: Right next door to the town hall in one of Almeres most prominent
locations Stadhuisplein stands a highly successful building; Almeres new
public library. It is one of the latest construction projects forming part of
Almeres city-centre renewal and for which OMA drafted master plans from…
source_url: https://www.archiweb.cz/en/b/nova-mestska-knihovna-de-nieuwe-bibliotheek
retrieved_on: '2025-11-29T22:02:08.442893+00:00'
xpath: /html/head/meta[4]
@ -801,7 +814,8 @@ unesco_enrichment:
- unesco_id: '1349'
uuid: 4a1ec831-4d4b-544f-bbdb-f98ef9b25c03
name_en: Seventeenth-Century Canal Ring Area of Amsterdam inside the Singelgracht
name_local: Zone des canaux concentriques du 17e siècle à l'intérieur du Singelgracht à Amsterdam
name_local: Zone des canaux concentriques du 17e siècle à l'intérieur du Singelgracht
à Amsterdam
category: Cultural
date_inscribed: '2010'
in_danger: false
@ -814,11 +828,13 @@ unesco_enrichment:
lon: 4.8877777778
lat: 52.365
url: https://whc.unesco.org/en/list/1349
short_description: The historic urban ensemble of the canal district of Amsterdam was a project for a new port city
built at the end of the 16th and beginning of the 17th centuries. It comprises a network of canals to the west and south
of the historic old town and the medieval port that encircled the old town and was accompanied by the repositioning
inland of the citys fortified boundaries, the Singelgracht. This was a long-term programme that involved extending
the city by draining the swampland, using a syst...
short_description: The historic urban ensemble of the canal district of Amsterdam
was a project for a new port city built at the end of the 16th and beginning
of the 17th centuries. It comprises a network of canals to the west and south
of the historic old town and the medieval port that encircled the old town and
was accompanied by the repositioning inland of the citys fortified boundaries,
the Singelgracht. This was a long-term programme that involved extending the
city by draining the swampland, using a syst...
- unesco_id: '899'
uuid: c2642bfe-5a38-5b78-8076-b3ab6b6eb78e
name_en: Droogmakerij de Beemster (Beemster Polder)
@ -835,8 +851,9 @@ unesco_enrichment:
lon: 4.911111111
lat: 52.54888889
url: https://whc.unesco.org/en/list/899
short_description: The Beemster Polder, dating from the early 17th century, is is an exceptional example of reclaimed
land in the Netherlands. It has preserved intact its well-ordered landscape of fields, roads, canals, dykes and settlements,
short_description: The Beemster Polder, dating from the early 17th century, is
is an exceptional example of reclaimed land in the Netherlands. It has preserved
intact its well-ordered landscape of fields, roads, canals, dykes and settlements,
laid out in accordance with classical and Renaissance planning principles.
- unesco_id: '965'
uuid: 518092a5-4ae1-572f-982d-1b95cca62e3e
@ -854,11 +871,13 @@ unesco_enrichment:
lon: 5.1475555556
lat: 52.0853333333
url: https://whc.unesco.org/en/list/965
short_description: The Rietveld Schröder House in Utrecht was commissioned by Ms Truus Schröder-Schräder, designed by
the architect Gerrit Thomas Rietveld, and built in 1924. This small family house, with its interior, the flexible spatial
arrangement, and the visual and formal qualities, was a manifesto of the ideals of the De Stijl group of artists and
architects in the Netherlands in the 1920s, and has since been considered one of the icons of the Modern Movement in
architecture.
short_description: The Rietveld Schröder House in Utrecht was commissioned by
Ms Truus Schröder-Schräder, designed by the architect Gerrit Thomas Rietveld,
and built in 1924. This small family house, with its interior, the flexible
spatial arrangement, and the visual and formal qualities, was a manifesto of
the ideals of the De Stijl group of artists and architects in the Netherlands
in the 1920s, and has since been considered one of the icons of the Modern Movement
in architecture.
- unesco_id: '759'
uuid: 618d2607-65c1-56a4-864a-f0dc23350f7f
name_en: Dutch Water Defence Lines
@ -875,11 +894,13 @@ unesco_enrichment:
lon: 4.7913888889
lat: 52.555
url: https://whc.unesco.org/en/list/759
short_description: The Dutch Water Defence Lines represents a defence system extending over 200 km along the edge of the
administrative and economic heartland of Holland. It is comprised of the New Dutch Waterline and the Defence Line of
Amsterdam. Built between 1815 and 1940, the system consists of a network of forts, dikes, sluices, pumping stations,
canals and inundation polders, working in concert to protect the Netherlands by applying the principle of temporary
flooding of the land. It has been developed than...
short_description: The Dutch Water Defence Lines represents a defence system extending
over 200 km along the edge of the administrative and economic heartland of Holland.
It is comprised of the New Dutch Waterline and the Defence Line of Amsterdam.
Built between 1815 and 1940, the system consists of a network of forts, dikes,
sluices, pumping stations, canals and inundation polders, working in concert
to protect the Netherlands by applying the principle of temporary flooding of
the land. It has been developed than...
- unesco_id: '739'
uuid: 46eedc7a-a087-55dc-b552-49d7cac966a2
name_en: Schokland and Surroundings
@ -896,10 +917,12 @@ unesco_enrichment:
lon: 5.771666667
lat: 52.63861111
url: https://whc.unesco.org/en/list/739
short_description: Schokland was a peninsula that by the 15th century had become an island. Occupied and then abandoned
as the sea encroached, it had to be evacuated in 1859. But following the draining of the Zuider Zee, it has, since the
1940s, formed part of the land reclaimed from the sea. Schokland has vestiges of human habitation going back to prehistoric
times. It symbolizes the heroic, age-old struggle of the people of the Netherlands against the encroachment of the waters.
short_description: Schokland was a peninsula that by the 15th century had become
an island. Occupied and then abandoned as the sea encroached, it had to be evacuated
in 1859. But following the draining of the Zuider Zee, it has, since the 1940s,
formed part of the land reclaimed from the sea. Schokland has vestiges of human
habitation going back to prehistoric times. It symbolizes the heroic, age-old
struggle of the people of the Netherlands against the encroachment of the waters.
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -912,9 +935,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -922,8 +947,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -932,9 +958,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -942,8 +970,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -952,8 +981,9 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
ch_annotator:
convention_id: ch_annotator-v1_7_0
@ -1029,3 +1059,10 @@ ch_annotator:
integrated_from: netherlands_complete_ch_annotator.yaml
integration_date: '2025-12-06T23:20:45.489390+00:00'
match_type: wikidata
timespan:
begin_of_the_begin: '2010-01-01T00:00:00Z'
end_of_the_begin: '2010-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q1902577'

View file

@ -49,7 +49,7 @@ contact:
website: http://www.npsf.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse pencak silat federatie
claim_value: Nederlandse Pencak Silat Federatie
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.359682+00:00'

View file

@ -48,7 +48,7 @@ contact:
website: http://www.nationaleoldtimerdag.nl
custodian_name:
claim_type: custodian_name
claim_value: nationale oldtimerdag
claim_value: Nationale Oldtimerdag
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.345815+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.nardus.eu
custodian_name:
claim_type: custodian_name
claim_value: nardus samenwerkende uitvaartorganisaties
claim_value: Nardus Samenwerkende Uitvaartorganisaties
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.340576+00:00'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Gondelvaart op wielen Drogeham
custodian_name:
claim_type: custodian_name
claim_value: gondelvaart op wielen drogeham
claim_value: Gondelvaart op Wielen Drogeham
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.423910+00:00'

View file

@ -47,7 +47,7 @@ contact:
website: http://sintpiter.nl/
custodian_name:
claim_type: custodian_name
claim_value: sint piterfeest in grou
claim_value: Sint Piterfeest in Grou
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.392839+00:00'

View file

@ -49,7 +49,7 @@ legal_status:
original_name_with_legal_form: Stichting Amelander Musea en Stichting Paardenreddingboot Ameland
custodian_name:
claim_type: custodian_name
claim_value: amelander musea en stichting paardenreddingboot ameland
claim_value: Amelander Musea en Stichting Paardenreddingboot Ameland
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.403775+00:00'

View file

@ -566,9 +566,11 @@ unesco_enrichment:
lon: 5.67889
lat: 52.84583
url: https://whc.unesco.org/en/list/867
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland opened in 1920. It is the largest
steam-pumping station ever built and is still in operation. It represents the high point of the contribution made by
Netherlands engineers and architects in protecting their people and land against the natural forces of water.
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland
opened in 1920. It is the largest steam-pumping station ever built and is still
in operation. It represents the high point of the contribution made by Netherlands
engineers and architects in protecting their people and land against the natural
forces of water.
- unesco_id: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -585,11 +587,13 @@ unesco_enrichment:
lon: 6.3915888889
lat: 53.0422222222
url: https://whc.unesco.org/en/list/1555
short_description: 'The transnational serial property is an Enlightenment experiment in social reform. These cultural
landscapes demonstrate an innovative, highly influential 19th-century model of pauper relief and of settler colonialism,
which today is known as an agricultural domestic colony. The property encompasses four Colonies of Benevolence in three
component parts: Frederiksoord-Wilhelminaoord and Veenhuizen in the Netherlands, and Wortel in Belgium. Together they
bear witness to a 19th century experiment i...'
short_description: 'The transnational serial property is an Enlightenment experiment
in social reform. These cultural landscapes demonstrate an innovative, highly
influential 19th-century model of pauper relief and of settler colonialism,
which today is known as an agricultural domestic colony. The property encompasses
four Colonies of Benevolence in three component parts: Frederiksoord-Wilhelminaoord
and Veenhuizen in the Netherlands, and Wortel in Belgium. Together they bear
witness to a 19th century experiment i...'
- unesco_id: '739'
uuid: 46eedc7a-a087-55dc-b552-49d7cac966a2
name_en: Schokland and Surroundings
@ -606,10 +610,12 @@ unesco_enrichment:
lon: 5.771666667
lat: 52.63861111
url: https://whc.unesco.org/en/list/739
short_description: Schokland was a peninsula that by the 15th century had become an island. Occupied and then abandoned
as the sea encroached, it had to be evacuated in 1859. But following the draining of the Zuider Zee, it has, since the
1940s, formed part of the land reclaimed from the sea. Schokland has vestiges of human habitation going back to prehistoric
times. It symbolizes the heroic, age-old struggle of the people of the Netherlands against the encroachment of the waters.
short_description: Schokland was a peninsula that by the 15th century had become
an island. Occupied and then abandoned as the sea encroached, it had to be evacuated
in 1859. But following the draining of the Zuider Zee, it has, since the 1940s,
formed part of the land reclaimed from the sea. Schokland has vestiges of human
habitation going back to prehistoric times. It symbolizes the heroic, age-old
struggle of the people of the Netherlands against the encroachment of the waters.
- unesco_id: '1683'
uuid: 8417513b-60b8-52e2-b90c-d150e6a942df
name_en: Eisinga Planetarium in Franeker
@ -626,11 +632,13 @@ unesco_enrichment:
lon: 5.5437527778
lat: 53.187375
url: https://whc.unesco.org/en/list/1683
short_description: Built between 1774 and 1781, this property is a moving mechanical scale model of the solar system as
it was known at the time. Conceived and built by an ordinary citizen the wool manufacturer Eise Eisinga the model
is built into the ceiling and south wall of the former living room/bedroom of its creator. Powered by one single pendulum
clock, it provides a realistic image of the positions of the Sun, the Moon, the Earth and five other planets (Mercury,
Venus, Mars, Jupiter and Saturn). The pl...
short_description: Built between 1774 and 1781, this property is a moving mechanical
scale model of the solar system as it was known at the time. Conceived and built
by an ordinary citizen the wool manufacturer Eise Eisinga the model is built
into the ceiling and south wall of the former living room/bedroom of its creator.
Powered by one single pendulum clock, it provides a realistic image of the positions
of the Sun, the Moon, the Earth and five other planets (Mercury, Venus, Mars,
Jupiter and Saturn). The pl...
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -643,9 +651,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -653,8 +663,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -663,9 +674,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -673,8 +686,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -683,6 +697,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '2004-01-01T00:00:00Z'
end_of_the_begin: '2004-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q12013196'

View file

@ -45,7 +45,7 @@ contact:
website: https://www.skutsjesilen.nl/
custodian_name:
claim_type: custodian_name
claim_value: sintrale kommisje skûtsjesilen
claim_value: Sintrale Kommisje Skûtsjesilen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.393883+00:00'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Comité Lanenkaatsen
custodian_name:
claim_type: custodian_name
claim_value: comité lanenkaatsen
claim_value: Comité Lanenkaatsen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.417053+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: https://zeilvaartcollegeworkum.nl/contact/
custodian_name:
claim_type: custodian_name
claim_value: zeilvaart college workum
claim_value: Zeilvaart College Workum
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.505266+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.mondraopleidingen.nl
custodian_name:
claim_type: custodian_name
claim_value: smederij cornelis pronk
claim_value: Smederij Cornelis Pronk
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.396201+00:00'

View file

@ -49,7 +49,7 @@ legal_status:
original_name_with_legal_form: Stichting Indisch Erfgoed
custodian_name:
claim_type: custodian_name
claim_value: indisch erfgoed
claim_value: Indisch Erfgoed
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.436428+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2758326
custodian_name:
claim_type: custodian_name
claim_value: 1 april vereniging
claim_value: 1 April Vereniging
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.152728+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2758864
custodian_name:
claim_type: custodian_name
claim_value: arresleeclub glijen en rijen
claim_value: Arresleeclub Glijen en Rijen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.155844+00:00'

View file

@ -52,7 +52,7 @@ locations:
geonames_id: 2749738
custodian_name:
claim_type: custodian_name
claim_value: bloemencorso bollenstreek
claim_value: Bloemencorso Bollenstreek
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.169430+00:00'

View file

@ -56,7 +56,7 @@ locations:
geonames_id: 2751792
custodian_name:
claim_type: custodian_name
claim_value: bond friese vogelwachten (bfvw)
claim_value: Bond Friese VogelWachten (BFVW)
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.172475+00:00'

View file

@ -58,7 +58,7 @@ legal_status:
original_name_with_legal_form: Ben Morshuis Stichting
custodian_name:
claim_type: custodian_name
claim_value: ben morshuis
claim_value: Ben Morshuis
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.164983+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2747351
custodian_name:
claim_type: custodian_name
claim_value: commissie uit de ingezetenen van de afdeling orthen
claim_value: Commissie uit de Ingezetenen van de Afdeling Orthen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.190424+00:00'

View file

@ -54,7 +54,7 @@ locations:
geonames_id: 2745872
custodian_name:
claim_type: custodian_name
claim_value: comité tot instandhouding van neerlands oudste paardenmarkt
claim_value: Comité tot Instandhouding van Neerlands Oudste Paardenmarkt
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.187252+00:00'

View file

@ -52,7 +52,7 @@ locations:
geonames_id: 2743595
custodian_name:
claim_type: custodian_name
claim_value: carnavalsvereniging het masker
claim_value: Carnavalsvereniging Het Masker
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.185748+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2756878
custodian_name:
claim_type: custodian_name
claim_value: diepenheimse schutterij
claim_value: Diepenheimse Schutterij
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.210014+00:00'

View file

@ -54,7 +54,7 @@ locations:
geonames_id: 2744549
custodian_name:
claim_type: custodian_name
claim_value: dick timmerman
claim_value: Dick Timmerman
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.207215+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2743698
custodian_name:
claim_type: custodian_name
claim_value: erfgoed platform schouwen-duiveland
claim_value: Erfgoed Platform Schouwen-Duiveland
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.230643+00:00'

View file

@ -52,7 +52,7 @@ locations:
geonames_id: 2751792
custodian_name:
claim_type: custodian_name
claim_value: friesche vogelvangersbelang
claim_value: Friesche vogelvangersbelang
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.259592+00:00'

View file

@ -54,7 +54,7 @@ locations:
geonames_id: 2751816
custodian_name:
claim_type: custodian_name
claim_value: gilde st. jan baptista leenderstrijp
claim_value: Gilde St. Jan Baptista Leenderstrijp
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.264193+00:00'

View file

@ -55,7 +55,7 @@ locations:
geonames_id: 2757244
custodian_name:
claim_type: custodian_name
claim_value: gemeente texel
claim_value: Gemeente Texel
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.263147+00:00'

View file

@ -54,7 +54,7 @@ locations:
geonames_id: 2754697
custodian_name:
claim_type: custodian_name
claim_value: harddraverijvereniging heemskerk
claim_value: Harddraverijvereniging Heemskerk
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.275288+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.duivensportbond.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse postduivenhouders organisatie
claim_value: Nederlandse Postduivenhouders Organisatie
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.362199+00:00'

View file

@ -57,7 +57,7 @@ locations:
geonames_id: 2743619
custodian_name:
claim_type: custodian_name
claim_value: de stoelenmatter
claim_value: De Stoelenmatter
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.204644+00:00'

View file

@ -57,7 +57,7 @@ locations:
geonames_id: 2743619
custodian_name:
claim_type: custodian_name
claim_value: de stoelenmatter
claim_value: De Stoelenmatter
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.204644+00:00'

View file

@ -59,7 +59,7 @@ legal_status:
original_name_with_legal_form: Stichting SPLIKA
custodian_name:
claim_type: custodian_name
claim_value: splika
claim_value: Splika
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.150433+00:00'

View file

@ -57,7 +57,7 @@ locations:
geonames_id: 2748371
custodian_name:
claim_type: custodian_name
claim_value: bottermarkt raalte
claim_value: Bottermarkt Raalte
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.174537+00:00'

View file

@ -52,7 +52,7 @@ locations:
geonames_id: 2744360
custodian_name:
claim_type: custodian_name
claim_value: frans komen & zn. visserijen
claim_value: Frans Komen & Zn. Visserijen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.244278+00:00'
@ -61,34 +61,39 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-T-FK&ZV
identifier_value: NL-GE-ARN-T-FKZV
- identifier_scheme: GHCID_UUID
identifier_value: aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
identifier_url: urn:uuid:aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
identifier_value: 16cec366-2a7c-519a-add0-8b4ba7091edd
identifier_url: urn:uuid:16cec366-2a7c-519a-add0-8b4ba7091edd
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 893f3ea5-53f5-802d-a6e0-62d54a556e1e
identifier_url: urn:uuid:893f3ea5-53f5-802d-a6e0-62d54a556e1e
identifier_value: 66dfd4e4-b609-8a9d-0cf1-9a3eb645687d
identifier_url: urn:uuid:66dfd4e4-b609-8a9d-0cf1-9a3eb645687d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9889692186528047149'
identifier_value: '7412877590446824093'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7d49-b3da-2b0eb9427351
identifier_url: urn:uuid:019aedca-642e-7d49-b3da-2b0eb9427351
safeguards:
- https://nde.nl/ontology/hc/heritage-form/riviervisserij
ghcid:
ghcid_current: NL-GE-ARN-T-FK&ZV
ghcid_current: NL-GE-ARN-T-FKZV
ghcid_original: NL-GE-ARN-T-FK&ZV
ghcid_uuid: aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
ghcid_uuid_sha256: 893f3ea5-53f5-802d-a6e0-62d54a556e1e
ghcid_numeric: 9889692186528047149
ghcid_uuid: 16cec366-2a7c-519a-add0-8b4ba7091edd
ghcid_uuid_sha256: 66dfd4e4-b609-8a9d-0cf1-9a3eb645687d
ghcid_numeric: 7412877590446824093
record_id: 019aedca-642e-7d49-b3da-2b0eb9427351
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2025-12-07T00:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-ARN-T-FKZV
ghcid_numeric: 7412877590446824093
valid_from: '2025-12-07T00:00:00.000000+00:00'
valid_to: null
reason: Corrected GHCID - removed special character & from abbreviation per AGENTS.md Rule 10
- ghcid: NL-GE-ARN-T-FK&ZV
ghcid_numeric: 9889692186528047149
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN batch import December 2025)
valid_to: '2025-12-07T00:00:00.000000+00:00'
reason: Initial GHCID assignment (KIEN batch import December 2025) - contained invalid & character
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661

View file

@ -1,164 +0,0 @@
original_entry:
organisatie: Frans Komen & Zn. Visserijen
webadres_organisatie: null
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- T
entry_index: 1712
processing_timestamp: '2025-12-04T06:59:52.244268+00:00'
enrichment_status: kien_extracted
provenance:
schema_version: 1.0.0
generated_at: '2025-12-04T06:59:52.244273+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
fetch_timestamp: '2025-12-03T23:23:57.926149+00:00'
data_tier: TIER_2_VERIFIED
claims_extracted:
- name
- website
- email
- phone
- description
- locations
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE: []
TIER_2_VERIFIED:
- kien_intangible_heritage_registry
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- 'safeguards slot added 2025-12-04T21:02:21.276630+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:06:12.629032+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.371795+00:00: linked to 1 IntangibleHeritageForm(s)'
kien_enrichment:
kien_name: Frans Komen & Zn. Visserijen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
heritage_forms:
- Riviervisserij
enrichment_timestamp: '2025-12-04T06:59:52.244275+00:00'
source: https://www.immaterieelerfgoed.nl
locations:
- city: Woudrichem
country: NL
latitude: 51.8125
longitude: 5.0
geonames_id: 2744360
custodian_name:
claim_type: custodian_name
claim_value: frans komen & zn. visserijen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.244278+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4897/frans-komen-zn.-visserijen
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-T-FK&ZV
- identifier_scheme: GHCID_UUID
identifier_value: aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
identifier_url: urn:uuid:aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 893f3ea5-53f5-802d-a6e0-62d54a556e1e
identifier_url: urn:uuid:893f3ea5-53f5-802d-a6e0-62d54a556e1e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9889692186528047149'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7d49-b3da-2b0eb9427351
identifier_url: urn:uuid:019aedca-642e-7d49-b3da-2b0eb9427351
safeguards:
- https://nde.nl/ontology/hc/heritage-form/riviervisserij
ghcid:
ghcid_current: NL-GE-ARN-T-FK&ZV
ghcid_original: NL-GE-ARN-T-FK&ZV
ghcid_uuid: aeb80c1e-ccc5-57a6-9c03-1650f20eaba4
ghcid_uuid_sha256: 893f3ea5-53f5-802d-a6e0-62d54a556e1e
ghcid_numeric: 9889692186528047149
record_id: 019aedca-642e-7d49-b3da-2b0eb9427351
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
ghcid_history:
- ghcid: NL-GE-ARN-T-FK&ZV
ghcid_numeric: 9889692186528047149
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN batch import December 2025)
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
country_code: NL
geonames_id: 2759661
google_maps_enrichment:
api_status: NOT_FOUND
fetch_timestamp: '2025-12-06T19:31:56.891426+00:00'
search_query: frans komen & zn. visserijen
wikidata_enrichment:
status: NOT_FOUND
fetch_timestamp: '2025-12-06T19:35:52.334461+00:00'
search_query: frans komen & zn. visserijen
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
enrichment_timestamp: '2025-12-06T20:22:51.199568+00:00'
elements:
- unesco_ich_id: '1870'
name: Rotterdam Summer Carnival
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Wooko Makandie
custodian_name:
claim_type: custodian_name
claim_value: wooko makandie
claim_value: Wooko Makandie
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.472320+00:00'

View file

@ -50,7 +50,7 @@ contact:
website: https://www.papiermakerij-doesburg.nl
custodian_name:
claim_type: custodian_name
claim_value: papiermakerij doesburg
claim_value: Papiermakerij Doesburg
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.373008+00:00'

View file

@ -43,7 +43,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse bijenhoudersvereniging, de nbv
claim_value: Nederlandse Bijenhoudersvereniging, de NBV
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.351729+00:00'

View file

@ -45,7 +45,7 @@ contact:
website: http://www.grolsewanten.nl
custodian_name:
claim_type: custodian_name
claim_value: sociëteit grolse wanten
claim_value: Sociëteit Grolse Wanten
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.397193+00:00'

View file

@ -251,10 +251,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:13.518121+00:00'
- claim_type: description_short
claim_value: Ontdek het Nationaal Museum Tachtigjarige Oorlog in Groenlo. Leer over de fascinerende geschiedenis, beleef
interactieve tentoonstellingen en geniet van een uniek museumbezoek.
raw_value: Ontdek het Nationaal Museum Tachtigjarige Oorlog in Groenlo. Leer over de fascinerende geschiedenis, beleef
interactieve tentoonstellingen en geniet van een uniek museumbezoek.
claim_value: Ontdek het Nationaal Museum Tachtigjarige Oorlog in Groenlo. Leer
over de fascinerende geschiedenis, beleef interactieve tentoonstellingen en
geniet van een uniek museumbezoek.
raw_value: Ontdek het Nationaal Museum Tachtigjarige Oorlog in Groenlo. Leer over
de fascinerende geschiedenis, beleef interactieve tentoonstellingen en geniet
van een uniek museumbezoek.
source_url: https://www.nmto.nl/
retrieved_on: ''
xpath: /html/head/meta[2]
@ -409,9 +411,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -419,8 +423,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -429,9 +434,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -439,8 +446,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -449,6 +457,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '2025-04-12T00:00:00Z'
end_of_the_begin: '2025-04-12T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q125399143'

View file

@ -49,7 +49,7 @@ legal_status:
original_name_with_legal_form: Stichting Bevordering Toerisme Didam
custodian_name:
claim_type: custodian_name
claim_value: bevordering toerisme didam
claim_value: Bevordering Toerisme Didam
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.411193+00:00'

View file

@ -118,7 +118,8 @@ google_maps_enrichment:
business_status: CLOSED_TEMPORARILY
rating: 4
total_ratings: 1995
editorial_summary: Groot museum naast een Romeinse vindplaats, met collecties archeologische vondsten en moderne kunst.
editorial_summary: Groot museum naast een Romeinse vindplaats, met collecties archeologische
vondsten en moderne kunst.
google_maps_url: https://maps.google.com/?cid=4224633416857917932&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: Valkhof Museum, Netherlands
@ -328,7 +329,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Groot museum naast een Romeinse vindplaats, met collecties archeologische vondsten en moderne kunst.
digital_collections: Groot museum naast een Romeinse vindplaats, met collecties
archeologische vondsten en moderne kunst.
technology_stack: Standard web technology
data_standards:
- Open Graph
@ -349,9 +351,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -359,8 +363,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -369,9 +374,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -379,8 +386,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -389,6 +397,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1999-01-01T00:00:00Z'
end_of_the_begin: '1999-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q1127079'

View file

@ -44,7 +44,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: politie sport vereniging 'renkum' /airborne wandeltocht
claim_value: Politie Sport Vereniging 'Renkum' /Airborne Wandeltocht
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.379877+00:00'
@ -53,15 +53,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
- identifier_scheme: GHCID
identifier_value: NL-GE-OOS-I-PSR/W
identifier_value: NL-GE-OOS-I-PSRW
- identifier_scheme: GHCID_UUID
identifier_value: 02100ebf-7651-567c-ad12-e03242ceecac
identifier_url: urn:uuid:02100ebf-7651-567c-ad12-e03242ceecac
identifier_value: ce3aa3c4-b7f4-55a9-8d7f-1c5286dabc54
identifier_url: urn:uuid:ce3aa3c4-b7f4-55a9-8d7f-1c5286dabc54
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
identifier_url: urn:uuid:27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
identifier_value: 3e529352-7511-87ac-c0ba-7832d9c62e7e
identifier_url: urn:uuid:3e529352-7511-87ac-c0ba-7832d9c62e7e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2859093722680155585'
identifier_value: '4490813760802461612'
- identifier_scheme: RECORD_ID
identifier_value: 019aede6-0402-7e81-97dd-c23591856aea
identifier_url: urn:uuid:019aede6-0402-7e81-97dd-c23591856aea
@ -83,15 +83,15 @@ location_resolution:
region_code: GE
extraction_timestamp: '2025-12-05T09:44:20.308298+00:00'
ghcid:
ghcid_current: NL-GE-OOS-I-PSR/W
ghcid_current: NL-GE-OOS-I-PSRW
ghcid_original: NL-GE-OOS-I-PSR/W
ghcid_uuid: 02100ebf-7651-567c-ad12-e03242ceecac
ghcid_uuid_sha256: 27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
ghcid_uuid: ce3aa3c4-b7f4-55a9-8d7f-1c5286dabc54
ghcid_uuid_sha256: 3e529352-7511-87ac-c0ba-7832d9c62e7e
ghcid_numeric: 2859093722680155585
record_id: 019aede6-0402-7e81-97dd-c23591856aea
generation_timestamp: '2025-12-05T09:44:25.062117+00:00'
ghcid_history:
- ghcid: NL-GE-OOS-I-PSR/W
- ghcid: NL-GE-OOS-I-PSRW
ghcid_numeric: 2859093722680155585
valid_from: '2025-12-05T09:44:25.062117+00:00'
valid_to: null

View file

@ -1,219 +0,0 @@
original_entry:
organisatie: Politie Sport Vereniging 'Renkum' /Airborne Wandeltocht
webadres_organisatie: null
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1773
processing_timestamp: '2025-12-04T06:59:52.379871+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2025-12-04T06:59:52.379873+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
fetch_timestamp: '2025-12-03T23:30:38.892769+00:00'
data_tier: TIER_2_VERIFIED
claims_extracted:
- name
- website
- email
- phone
- description
- locations
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE: []
TIER_2_VERIFIED:
- kien_intangible_heritage_registry
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from organization name 'Politie Sport Vereniging 'Renkum' /Airborne Wandeltocht' - matched place 'Oosterbeek'
(NAME_EXTRACTION_GEONAMES)
kien_enrichment:
kien_name: Politie Sport Vereniging 'Renkum' /Airborne Wandeltocht
kien_url: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
heritage_forms: []
enrichment_timestamp: '2025-12-04T06:59:52.379875+00:00'
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: politie sport vereniging 'renkum' /airborne wandeltocht
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.379877+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6822/politie-sport-vereniging-renkum-airborne-wandeltocht
- identifier_scheme: GHCID
identifier_value: NL-GE-OOS-I-PSR/W
- identifier_scheme: GHCID_UUID
identifier_value: 02100ebf-7651-567c-ad12-e03242ceecac
identifier_url: urn:uuid:02100ebf-7651-567c-ad12-e03242ceecac
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
identifier_url: urn:uuid:27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2859093722680155585'
- identifier_scheme: RECORD_ID
identifier_value: 019aede6-0402-7e81-97dd-c23591856aea
identifier_url: urn:uuid:019aede6-0402-7e81-97dd-c23591856aea
locations:
- city: Oosterbeek
country: NL
latitude: 51.98583
longitude: 5.84583
location_resolution:
method: NAME_EXTRACTION_GEONAMES
extracted_from: Politie Sport Vereniging 'Renkum' /Airborne Wandeltocht
matched_place: Oosterbeek
is_regional: true
geonames_id: 2749503
geonames_name: Oosterbeek
feature_code: PPL
population: 11138
admin1_code: '03'
region_code: GE
extraction_timestamp: '2025-12-05T09:44:20.308298+00:00'
ghcid:
ghcid_current: NL-GE-OOS-I-PSR/W
ghcid_original: NL-GE-OOS-I-PSR/W
ghcid_uuid: 02100ebf-7651-567c-ad12-e03242ceecac
ghcid_uuid_sha256: 27ad8a97-b7e6-8dc1-a12e-b91a2dfe3736
ghcid_numeric: 2859093722680155585
record_id: 019aede6-0402-7e81-97dd-c23591856aea
generation_timestamp: '2025-12-05T09:44:25.062117+00:00'
ghcid_history:
- ghcid: NL-GE-OOS-I-PSR/W
ghcid_numeric: 2859093722680155585
valid_from: '2025-12-05T09:44:25.062117+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN batch import December 2025)
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2749503
geonames_name: Oosterbeek
feature_code: PPL
population: 11138
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.98583
longitude: 5.84583
distance_km: 0.0
geonames_id: 2749503
google_maps_enrichment:
place_id: ChIJEebY_2qvx0cRqDO-Zra9zgI
name: PSVR / Airborne March
formatted_address: J.J. Talsmalaan 13, 6862 BZ Oosterbeek, Netherlands
fetch_timestamp: '2025-12-06T19:32:03.362920+00:00'
api_status: OK
coordinates:
latitude: 51.9865328
longitude: 5.8340913
phone_international: +31 26 333 7960
phone_local: 026 333 7960
website: https://www.airbornewandeltocht.nl/
google_place_types:
- event_venue
- hiking_area
- sports_activity_location
- park
- point_of_interest
- establishment
business_status: OPERATIONAL
rating: 4.7
user_rating_count: 481
photo_count: 10
wikidata_enrichment:
status: NOT_FOUND
fetch_timestamp: '2025-12-06T19:36:11.524820+00:00'
search_query: politie sport vereniging 'renkum' /airborne wandeltocht
unesco_enrichment:
fetch_timestamp: '2025-12-06T20:09:33.741924+00:00'
max_search_radius_km: 50
nearby_world_heritage_sites:
- unesco_id: '965'
uuid: 518092a5-4ae1-572f-982d-1b95cca62e3e
name_en: Rietveld Schröderhuis (Rietveld Schröder House)
name_local: Rietveld Schröderhuis (Maison Schröder de Rietveld)
category: Cultural
date_inscribed: '2000'
in_danger: false
country_codes: NL
region: Europe and North America
distance_km: 48.23
criteria: (i)(ii)
area_hectares: 0.0075
coordinates:
lon: 5.1475555556
lat: 52.0853333333
url: https://whc.unesco.org/en/list/965
short_description: The Rietveld Schröder House in Utrecht was commissioned by Ms Truus Schröder-Schräder, designed by
the architect Gerrit Thomas Rietveld, and built in 1924. This small family house, with its interior, the flexible spatial
arrangement, and the visual and formal qualities, was a manifesto of the ideals of the De Stijl group of artists and
architects in the Netherlands in the 1920s, and has since been considered one of the icons of the Modern Movement in
architecture.
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
enrichment_timestamp: '2025-12-06T20:23:47.813189+00:00'
elements:
- unesco_ich_id: '1870'
name: Rotterdam Summer Carnival
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...

View file

@ -43,7 +43,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: sport en spel
claim_value: Sport en Spel
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.508975+00:00'

View file

@ -54,7 +54,7 @@ locations:
longitude: 5.7455106
custodian_name:
claim_type: custodian_name
claim_value: buurt ede en veldhuizen
claim_value: Buurt Ede en Veldhuizen
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.181598+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: https://knjv.com/
custodian_name:
claim_type: custodian_name
claim_value: knjv
claim_value: KNJV
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.308790+00:00'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting MOZA
custodian_name:
claim_type: custodian_name
claim_value: moza
claim_value: Moza
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.452914+00:00'

View file

@ -51,7 +51,7 @@ legal_status:
original_name_with_legal_form: Stichting Heg & Landschap
custodian_name:
claim_type: custodian_name
claim_value: heg & landschap
claim_value: Heg & Landschap
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.428322+00:00'
@ -60,15 +60,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
- identifier_scheme: GHCID
identifier_value: NL-GE-WAG-I-H&L
identifier_value: NL-GE-WAG-I-HL
- identifier_scheme: GHCID_UUID
identifier_value: 039ebae2-ee98-59c8-81d8-484d4e2dbd7a
identifier_url: urn:uuid:039ebae2-ee98-59c8-81d8-484d4e2dbd7a
identifier_value: d48a51f9-0afb-596c-8491-0dff2f1d64ef
identifier_url: urn:uuid:d48a51f9-0afb-596c-8491-0dff2f1d64ef
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 5ed90016-6edf-80d6-9e0e-a39b5b419bd3
identifier_url: urn:uuid:5ed90016-6edf-80d6-9e0e-a39b5b419bd3
identifier_value: d24c171f-156f-835b-8617-7ecf13118683
identifier_url: urn:uuid:d24c171f-156f-835b-8617-7ecf13118683
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6834494005860864214'
identifier_value: '15153512268465943387'
- identifier_scheme: RECORD_ID
identifier_value: 019aee2b-2bfd-7829-a679-bb244db6a7d3
identifier_url: urn:uuid:019aee2b-2bfd-7829-a679-bb244db6a7d3
@ -85,15 +85,15 @@ location_resolution:
region_code: GE
extraction_timestamp: '2025-12-05T10:30:59.528208+00:00'
ghcid:
ghcid_current: NL-GE-WAG-I-H&L
ghcid_current: NL-GE-WAG-I-HL
ghcid_original: NL-GE-WAG-I-H&L
ghcid_uuid: 039ebae2-ee98-59c8-81d8-484d4e2dbd7a
ghcid_uuid_sha256: 5ed90016-6edf-80d6-9e0e-a39b5b419bd3
ghcid_uuid: d48a51f9-0afb-596c-8491-0dff2f1d64ef
ghcid_uuid_sha256: d24c171f-156f-835b-8617-7ecf13118683
ghcid_numeric: 6834494005860864214
record_id: 019aee2b-2bfd-7829-a679-bb244db6a7d3
generation_timestamp: '2025-12-05T10:59:56.993747+00:00'
ghcid_history:
- ghcid: NL-GE-WAG-I-H&L
- ghcid: NL-GE-WAG-I-HL
ghcid_numeric: 6834494005860864214
valid_from: '2025-12-05T10:59:56.993747+00:00'
valid_to: null

View file

@ -1,258 +0,0 @@
original_entry:
organisatie: Stichting Heg & Landschap
webadres_organisatie: http://www.hegenlandschap.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1807
processing_timestamp: '2025-12-04T06:59:52.428316+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2025-12-04T06:59:52.428318+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
fetch_timestamp: '2025-12-03T23:32:26.537514+00:00'
data_tier: TIER_2_VERIFIED
claims_extracted:
- name
- website
- email
- phone
- description
- locations
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE: []
TIER_2_VERIFIED:
- kien_intangible_heritage_registry
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from KIEN_PROFILE_SCRAPE - https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
kien_enrichment:
kien_name: Stichting Heg & Landschap
kien_url: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
heritage_forms: []
enrichment_timestamp: '2025-12-04T06:59:52.428320+00:00'
source: https://www.immaterieelerfgoed.nl
notes: De stichting Heg & Landschap zet zich in voor aanleg en duurzaam beheer van  heggen en bomen. Het heggenvlechten is
een paradepaardje van de stichting. Zij doet onderzoek naar de geschiedenis van dit…
contact:
email: info@hegenlandschap.nl
website: http://www.hegenlandschap.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Heg & Landschap
custodian_name:
claim_type: custodian_name
claim_value: heg & landschap
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.428322+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
- identifier_scheme: GHCID
identifier_value: NL-GE-WAG-I-H&L
- identifier_scheme: GHCID_UUID
identifier_value: 039ebae2-ee98-59c8-81d8-484d4e2dbd7a
identifier_url: urn:uuid:039ebae2-ee98-59c8-81d8-484d4e2dbd7a
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 5ed90016-6edf-80d6-9e0e-a39b5b419bd3
identifier_url: urn:uuid:5ed90016-6edf-80d6-9e0e-a39b5b419bd3
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6834494005860864214'
- identifier_scheme: RECORD_ID
identifier_value: 019aee2b-2bfd-7829-a679-bb244db6a7d3
identifier_url: urn:uuid:019aee2b-2bfd-7829-a679-bb244db6a7d3
locations:
- city: Wageningen
country: NL
latitude: 51.97
longitude: 5.66667
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/809/stichting-heg-landschap
geonames_id: 2745088
geonames_name: Wageningen
region_code: GE
extraction_timestamp: '2025-12-05T10:30:59.528208+00:00'
ghcid:
ghcid_current: NL-GE-WAG-I-H&L
ghcid_original: NL-GE-WAG-I-H&L
ghcid_uuid: 039ebae2-ee98-59c8-81d8-484d4e2dbd7a
ghcid_uuid_sha256: 5ed90016-6edf-80d6-9e0e-a39b5b419bd3
ghcid_numeric: 6834494005860864214
record_id: 019aee2b-2bfd-7829-a679-bb244db6a7d3
generation_timestamp: '2025-12-05T10:59:56.993747+00:00'
ghcid_history:
- ghcid: NL-GE-WAG-I-H&L
ghcid_numeric: 6834494005860864214
valid_from: '2025-12-05T10:59:56.993747+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN batch import December 2025)
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2745088
geonames_name: Wageningen
feature_code: PPL
population: 35433
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.97
longitude: 5.66667
distance_km: 0.0
geonames_id: 2745088
digital_platforms:
- platform_name: Stichting Heg & Landschap Website
platform_url: http://www.hegenlandschap.nl
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Organizational website with heritage information
technology_stack: KIEN
data_standards:
- HTML5
user_services: General information, Contact
sustainability_model: Institutional funding
enrichment_timestamp: '2025-12-05T11:40:26.256317+00:00'
source_method: automated_extraction
web_enrichment:
web_archives:
- url: http://www.hegenlandschap.nl
directory: web/1807/hegenlandschap.nl
archive_timestamp: '2025-12-05T14:58:26.861663+00:00'
status: new
platform_archive_timestamp: '2025-12-05T14:58:30.087014+00:00'
google_maps_enrichment:
place_id: ChIJ5_-zW5erx0cRF0Dps8ia5_g
name: Stichting Heg-en-Landschap
formatted_address: Tuindorpweg 42, 3951 BG Maarn, Netherlands
fetch_timestamp: '2025-12-06T19:32:07.357504+00:00'
api_status: OK
coordinates:
latitude: 52.0652729
longitude: 5.3687846
website: http://www.hegenlandschap.nl/
google_place_types:
- point_of_interest
- establishment
business_status: OPERATIONAL
wikidata_enrichment:
wikidata_entity_id: Q98904486
wikidata_url: https://www.wikidata.org/wiki/Q98904486
fetch_timestamp: '2025-12-06T19:36:18.292609+00:00'
wikidata_description: organisatie uit Nederland
labels:
en: Heg & Landschap
nl: Heg & Landschap
unesco_enrichment:
fetch_timestamp: '2025-12-06T20:09:37.199965+00:00'
max_search_radius_km: 50
nearby_world_heritage_sites:
- unesco_id: '965'
uuid: 518092a5-4ae1-572f-982d-1b95cca62e3e
name_en: Rietveld Schröderhuis (Rietveld Schröder House)
name_local: Rietveld Schröderhuis (Maison Schröder de Rietveld)
category: Cultural
date_inscribed: '2000'
in_danger: false
country_codes: NL
region: Europe and North America
distance_km: 15.28
criteria: (i)(ii)
area_hectares: 0.0075
coordinates:
lon: 5.1475555556
lat: 52.0853333333
url: https://whc.unesco.org/en/list/965
short_description: The Rietveld Schröder House in Utrecht was commissioned by Ms Truus Schröder-Schräder, designed by
the architect Gerrit Thomas Rietveld, and built in 1924. This small family house, with its interior, the flexible spatial
arrangement, and the visual and formal qualities, was a manifesto of the ideals of the De Stijl group of artists and
architects in the Netherlands in the 1920s, and has since been considered one of the icons of the Modern Movement in
architecture.
- unesco_id: '1349'
uuid: 4a1ec831-4d4b-544f-bbdb-f98ef9b25c03
name_en: Seventeenth-Century Canal Ring Area of Amsterdam inside the Singelgracht
name_local: Zone des canaux concentriques du 17e siècle à l'intérieur du Singelgracht à Amsterdam
category: Cultural
date_inscribed: '2010'
in_danger: false
country_codes: NL
region: Europe and North America
distance_km: 46.74
criteria: (i)(ii)(iv)
area_hectares: 198.2
coordinates:
lon: 4.8877777778
lat: 52.365
url: https://whc.unesco.org/en/list/1349
short_description: The historic urban ensemble of the canal district of Amsterdam was a project for a new port city
built at the end of the 16th and beginning of the 17th centuries. It comprises a network of canals to the west and south
of the historic old town and the medieval port that encircled the old town and was accompanied by the repositioning
inland of the citys fortified boundaries, the Singelgracht. This was a long-term programme that involved extending
the city by draining the swampland, using a syst...
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
enrichment_timestamp: '2025-12-06T20:23:57.512391+00:00'
elements:
- unesco_ich_id: '1870'
name: Rotterdam Summer Carnival
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
list_type: RL
list_name: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...

View file

@ -51,7 +51,7 @@ legal_status:
original_name_with_legal_form: Stichting MUHABBAT
custodian_name:
claim_type: custodian_name
claim_value: muhabbat
claim_value: Muhabbat
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.455201+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.handschriftontwikkeling.nl/
custodian_name:
claim_type: custodian_name
claim_value: platform handschriftontwikkeling
claim_value: Platform Handschriftontwikkeling
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.377360+00:00'

View file

@ -51,7 +51,7 @@ legal_status:
original_name_with_legal_form: Stichting Oud Hollandsche Gerechten
custodian_name:
claim_type: custodian_name
claim_value: oud hollandsche gerechten
claim_value: Oud Hollandsche Gerechten
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.461442+00:00'

View file

@ -44,7 +44,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: het genootschap ambachtelijke grunneger aaierbal
claim_value: Het Genootschap Ambachtelijke Grunneger Aaierbal
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.289815+00:00'

View file

@ -53,7 +53,7 @@ contact:
website: http://www.vksj.nl
custodian_name:
claim_type: custodian_name
claim_value: vereniging klassieke scherpe jachten
claim_value: Vereniging Klassieke Scherpe Jachten
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.488862+00:00'

View file

@ -45,7 +45,7 @@ contact:
website: http://www.volksvermakengroningen.nl
custodian_name:
claim_type: custodian_name
claim_value: koninklijke vereeniging voor volksvermaken
claim_value: Koninklijke Vereeniging voor Volksvermaken
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.320523+00:00'

View file

@ -43,7 +43,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: meierblis
claim_value: Meierblis
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.323625+00:00'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Menno Jeltema Stichting
custodian_name:
claim_type: custodian_name
claim_value: menno jeltema
claim_value: Menno Jeltema
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.325492+00:00'

View file

@ -43,7 +43,7 @@ kien_enrichment:
source: https://www.immaterieelerfgoed.nl
custodian_name:
claim_type: custodian_name
claim_value: scholen in het hogeland
claim_value: Scholen in het Hogeland
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.388859+00:00'

View file

@ -45,7 +45,7 @@ contact:
email: pieter.hielema@nederlandsefierljepbond.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse fierljepbond
claim_value: Nederlandse Fierljepbond
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.358166+00:00'

View file

@ -45,7 +45,7 @@ contact:
website: http://www.jonkheid-banholt.nl
custodian_name:
claim_type: custodian_name
claim_value: jonkheid banholt
claim_value: Jonkheid Banholt
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.305539+00:00'

View file

@ -271,10 +271,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:06.963444+00:00'
- claim_type: description_short
claim_value: SCHUNCK Museum presenteert vanuit het Glaspaleis een afwisselend programma van tentoonstellingen, activiteiten
en pro...
raw_value: SCHUNCK Museum presenteert vanuit het Glaspaleis een afwisselend programma van tentoonstellingen, activiteiten
en pro...
claim_value: SCHUNCK Museum presenteert vanuit het Glaspaleis een afwisselend
programma van tentoonstellingen, activiteiten en pro...
raw_value: SCHUNCK Museum presenteert vanuit het Glaspaleis een afwisselend programma
van tentoonstellingen, activiteiten en pro...
source_url: http://www.schunck.nl/museum
retrieved_on: ''
xpath: /html/head/meta[5]
@ -489,9 +489,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -499,8 +501,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -509,9 +512,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -519,8 +524,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -529,6 +535,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '2009-01-01T00:00:00Z'
end_of_the_begin: '2009-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q135441375'

View file

@ -48,7 +48,7 @@ contact:
website: http://Schuttersbroederschap%20St.%20Sebastianus
custodian_name:
claim_type: custodian_name
claim_value: schuttersbroederschap "st. sebastianus" 1617 kerkrade
claim_value: Schuttersbroederschap "St. Sebastianus" 1617 Kerkrade
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.390237+00:00'

View file

@ -48,7 +48,7 @@ contact:
website: http://www.beugelen.nl
custodian_name:
claim_type: custodian_name
claim_value: nederlandse beugel bond
claim_value: Nederlandse Beugel Bond
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.350165+00:00'

View file

@ -53,7 +53,7 @@ locations:
longitude: 5.6909768
custodian_name:
claim_type: custodian_name
claim_value: broederschap van onze lieve vrouw sterre der zee
claim_value: Broederschap van Onze Lieve Vrouw Sterre der Zee
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.179773+00:00'

View file

@ -51,7 +51,7 @@ legal_status:
original_name_with_legal_form: Stichting organisatie Schinderhannes
custodian_name:
claim_type: custodian_name
claim_value: organisatie schinderhannes
claim_value: Organisatie Schinderhannes
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.476802+00:00'

View file

@ -49,7 +49,7 @@ contact:
website: http://www.slowfood.nl
custodian_name:
claim_type: custodian_name
claim_value: slow food presidium limburgse stroop
claim_value: Slow Food Presidium Limburgse Stroop
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.394983+00:00'

View file

@ -176,7 +176,8 @@ google_maps_enrichment:
- 'zondag: 11:0017:00'
rating: 4.3
total_ratings: 3074
editorial_summary: Kunstmuseum met een opvallende koepeltoren, tijdelijke shows, middeleeuwse en hedendaagse collecties.
editorial_summary: Kunstmuseum met een opvallende koepeltoren, tijdelijke shows,
middeleeuwse en hedendaagse collecties.
google_maps_url: https://maps.google.com/?cid=5165231776774927223&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: Bonnefanten museum, Netherlands
@ -276,10 +277,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:11.786843+00:00'
- claim_type: description_short
claim_value: The Bonnefanten in Maastricht presents remarkable permanent collections and temporary exhibitions with non-mainstream
art and artists.
raw_value: The Bonnefanten in Maastricht presents remarkable permanent collections and temporary exhibitions with non-mainstream
art and artists.
claim_value: The Bonnefanten in Maastricht presents remarkable permanent collections
and temporary exhibitions with non-mainstream art and artists.
raw_value: The Bonnefanten in Maastricht presents remarkable permanent collections
and temporary exhibitions with non-mainstream art and artists.
source_url: http://www.bonnefanten.nl/
retrieved_on: ''
xpath: /html/head/meta[2]
@ -444,7 +445,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Kunstmuseum met een opvallende koepeltoren, tijdelijke shows, middeleeuwse en hedendaagse collecties.
digital_collections: Kunstmuseum met een opvallende koepeltoren, tijdelijke shows,
middeleeuwse en hedendaagse collecties.
technology_stack: Standard web technology
data_standards:
- HTML5
@ -464,9 +466,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -474,8 +478,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -484,9 +489,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -494,8 +501,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -504,6 +512,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1884-01-01T00:00:00Z'
end_of_the_begin: '1884-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q892727'

View file

@ -53,7 +53,7 @@ legal_status:
original_name_with_legal_form: Stichting Adoptie Graven Amerikaanse Begraafplaats Margraten
custodian_name:
claim_type: custodian_name
claim_value: adoptie graven amerikaanse begraafplaats margraten
claim_value: Adoptie Graven Amerikaanse Begraafplaats Margraten
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.401997+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.jonkheidnoorbeek.nl
custodian_name:
claim_type: custodian_name
claim_value: jonkheid sancta brigida te noorbeek
claim_value: Jonkheid Sancta Brigida te Noorbeek
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.307650+00:00'

View file

@ -51,7 +51,7 @@ locations:
longitude: 5.9882649
custodian_name:
claim_type: custodian_name
claim_value: bacchusklup remunj
claim_value: Bacchusklup Remunj
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.157073+00:00'

View file

@ -49,7 +49,7 @@ legal_status:
original_name_with_legal_form: Stichting Krombroodrapencomité Sittard
custodian_name:
claim_type: custodian_name
claim_value: krombroodrapencomité sittard
claim_value: Krombroodrapencomité Sittard
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.444695+00:00'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Vlechtheggen Zuid Nederland
custodian_name:
claim_type: custodian_name
claim_value: vlechtheggen zuid nederland
claim_value: Vlechtheggen Zuid Nederland
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.470130+00:00'

View file

@ -48,7 +48,7 @@ contact:
website: http://www.niekhoogland.nl
custodian_name:
claim_type: custodian_name
claim_value: pottenbakkerij hoogland
claim_value: Pottenbakkerij Hoogland
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.380890+00:00'

View file

@ -252,10 +252,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:05.946028+00:00'
- claim_type: description_short
claim_value: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse kunst. Hét museum van de regio
Venlo is er van en voor iedereen.
raw_value: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse kunst. Hét museum van de regio Venlo
is er van en voor iedereen.
claim_value: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse
kunst. Hét museum van de regio Venlo is er van en voor iedereen.
raw_value: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse
kunst. Hét museum van de regio Venlo is er van en voor iedereen.
source_url: http://www.vanbommelvandam.nl/
retrieved_on: ''
xpath: /html/head/meta[14]
@ -691,9 +691,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -701,8 +703,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -711,9 +714,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -721,8 +726,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -731,6 +737,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1971-01-01T00:00:00Z'
end_of_the_begin: '1971-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q1994770'

View file

@ -86,7 +86,8 @@ enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00'
wikidata_enrichment:
wikidata_entity_id: Q59962372
wikidata_label: Bibliocenter
wikidata_description: bibliotheekorganisatie in de gemeenten gemeenten Leudal, Maasgouw, Nederweert en Weert, Nederland
wikidata_description: bibliotheekorganisatie in de gemeenten gemeenten Leudal, Maasgouw,
Nederweert en Weert, Nederland
fetch_timestamp: '2025-11-28T12:22:39.263994+00:00'
match_method: fuzzy_name_match
wikidata_inception: '2008-07-01'
@ -229,17 +230,14 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
- claim_type: source_urls
claim_value: https://www.bibliocenter.nl/; https://nl.linkedin.com/company/bibliocenter; https://www.bibliocenter.nl/tp/jaarverslag2024.html
claim_value: https://www.bibliocenter.nl/; https://nl.linkedin.com/company/bibliocenter;
https://www.bibliocenter.nl/tp/jaarverslag2024.html
source_url: https://www.bibliocenter.nl/
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
- claim_type: description
claim_value: 'Bibliocenter is a public library organization formed on July 1, 2008 through a merger of libraries in four
municipalities in central Limburg, Netherlands. The organization serves approximately 126,000 residents across Weert,
Nederweert, Leudal, and Maasgouw municipalities. Bibliocenter operates three full-service branches, eleven bibliotheekpunten
(library points), and thirteen Bibliotheek op School (dBos) locations.
'
claim_value: |
Bibliocenter is a public library organization formed on July 1, 2008 through a merger of libraries in four municipalities in central Limburg, Netherlands. The organization serves approximately 126,000 residents across Weert, Nederweert, Leudal, and Maasgouw municipalities. Bibliocenter operates three full-service branches, eleven bibliotheekpunten (library points), and thirteen Bibliotheek op School (dBos) locations.
source_url: https://www.bibliocenter.nl/
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
@ -319,8 +317,8 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
- claim_type: bibliotheekpunten_locations
claim_value: Baexem (Baexheimerhuuske, Baexheimerhof); Heel; Heythuysen; Stramproy; Thorn (Trefpunt 1711); Beegden (Gemeenschapshuis
't Leuke); Haler (Het Dorpshuis)
claim_value: Baexem (Baexheimerhuuske, Baexheimerhof); Heel; Heythuysen; Stramproy;
Thorn (Trefpunt 1711); Beegden (Gemeenschapshuis 't Leuke); Haler (Het Dorpshuis)
source_url: https://www.bibliocenter.nl/
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
@ -380,8 +378,9 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
- claim_type: services
claim_value: IDO (Informatiepunt Digitale Overheid); Course offerings (cursusaanbod); Reading and borrowing; Youth programs;
Language support; Speelotheek Keent (toy library)
claim_value: IDO (Informatiepunt Digitale Overheid); Course offerings (cursusaanbod);
Reading and borrowing; Youth programs; Language support; Speelotheek Keent (toy
library)
source_url: https://www.bibliocenter.nl/
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
@ -476,10 +475,8 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
- claim_type: mission
claim_value: 'Creating value by bringing the local community together with the world of knowledge and reading, fulfilling
three core functions: reading, learning, and informing.
'
claim_value: |
Creating value by bringing the local community together with the world of knowledge and reading, fulfilling three core functions: reading, learning, and informing.
source_url: https://www.bibliocenter.nl/
extraction_timestamp: '2025-11-29T11:02:56.737189+00:00'
confidence: 0.8
@ -642,10 +639,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:11.144750+00:00'
- claim_type: description_short
claim_value: In de collectie van de bibliotheek vind je alle genres terug, van Spanning tot Literatuur en van Spiritualiteit
tot Economie. Hier vind je heel veel lees-, luister- en kijktips van de bibliotheek!
raw_value: In de collectie van de bibliotheek vind je alle genres terug, van Spanning tot Literatuur en van Spiritualiteit
tot Economie. Hier vind je heel veel lees-, luister- en kijktips van de bibliotheek!
claim_value: In de collectie van de bibliotheek vind je alle genres terug, van
Spanning tot Literatuur en van Spiritualiteit tot Economie. Hier vind je heel
veel lees-, luister- en kijktips van de bibliotheek!
raw_value: In de collectie van de bibliotheek vind je alle genres terug, van Spanning
tot Literatuur en van Spiritualiteit tot Economie. Hier vind je heel veel lees-,
luister- en kijktips van de bibliotheek!
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -964,10 +963,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:11.216891+00:00'
- claim_type: description_short
claim_value: 'Ben je lid van de Bibliotheek? Dan mag je gratis e-books lenen en luisterboeken downloaden. Dat doe je op
de online Bibliotheek: de online vestiging van je eigen vertrouwde bieb.'
raw_value: 'Ben je lid van de Bibliotheek? Dan mag je gratis e-books lenen en luisterboeken downloaden. Dat doe je op
de online Bibliotheek: de online vestiging van je eigen vertrouwde bieb.'
claim_value: 'Ben je lid van de Bibliotheek? Dan mag je gratis e-books lenen en
luisterboeken downloaden. Dat doe je op de online Bibliotheek: de online vestiging
van je eigen vertrouwde bieb.'
raw_value: 'Ben je lid van de Bibliotheek? Dan mag je gratis e-books lenen en
luisterboeken downloaden. Dat doe je op de online Bibliotheek: de online vestiging
van je eigen vertrouwde bieb.'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -1196,10 +1197,11 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:11.458232+00:00'
- claim_type: description_short
claim_value: Het leesbevorderingsproject Rap that book! spreekt jongeren aan. Leerlingen worden door middel van rappen
enthousiast gemaakt voor het lezen van een boek.
raw_value: Het leesbevorderingsproject Rap that book! spreekt jongeren aan. Leerlingen worden door middel van rappen enthousiast
gemaakt voor het lezen van een boek.
claim_value: Het leesbevorderingsproject Rap that book! spreekt jongeren aan.
Leerlingen worden door middel van rappen enthousiast gemaakt voor het lezen
van een boek.
raw_value: Het leesbevorderingsproject Rap that book! spreekt jongeren aan. Leerlingen
worden door middel van rappen enthousiast gemaakt voor het lezen van een boek.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -1298,10 +1300,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:12.176013+00:00'
- claim_type: description_short
claim_value: Werk je graag met mensen en ben je op zoek naar boeiend en afwisselend vrijwilligerswerk? En wil jij je talent
en enthousiasme inzetten voor de klanten van de bibliotheek ? Dan ben jij de vrijwilliger die we zoeken!
raw_value: Werk je graag met mensen en ben je op zoek naar boeiend en afwisselend vrijwilligerswerk? En wil jij je talent
en enthousiasme inzetten voor de klanten van de bibliotheek ? Dan ben jij de vrijwilliger die we zoeken!
claim_value: Werk je graag met mensen en ben je op zoek naar boeiend en afwisselend
vrijwilligerswerk? En wil jij je talent en enthousiasme inzetten voor de klanten
van de bibliotheek ? Dan ben jij de vrijwilliger die we zoeken!
raw_value: Werk je graag met mensen en ben je op zoek naar boeiend en afwisselend
vrijwilligerswerk? En wil jij je talent en enthousiasme inzetten voor de klanten
van de bibliotheek ? Dan ben jij de vrijwilliger die we zoeken!
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -1400,11 +1404,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:12.434207+00:00'
- claim_type: description_short
claim_value: Activiteitenbegeleiders werken vaak thematisch en maken daarbij gebruik van boeken, kijkboeken en dvd's.
De materialen zijn geschikt voor activiteiten met bewoners als het gaat om herkenning, herinnering, taal- en geheugentraining.
claim_value: Activiteitenbegeleiders werken vaak thematisch en maken daarbij gebruik
van boeken, kijkboeken en dvd's. De materialen zijn geschikt voor activiteiten
met bewoners als het gaat om herkenning, herinnering, taal- en geheugentraining.
Voor het huren van een themacollectie heb je een instellingsabonnement nodig.
raw_value: Activiteitenbegeleiders werken vaak thematisch en maken daarbij gebruik van boeken, kijkboeken en dvd's. De
materialen zijn geschikt voor activiteiten met bewoners als het gaat om herkenning, herinnering, taal- en geheugentraining.
raw_value: Activiteitenbegeleiders werken vaak thematisch en maken daarbij gebruik
van boeken, kijkboeken en dvd's. De materialen zijn geschikt voor activiteiten
met bewoners als het gaat om herkenning, herinnering, taal- en geheugentraining.
Voor het huren van een themacollectie heb je een instellingsabonnement nodig.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
@ -1454,10 +1460,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:12.448289+00:00'
- claim_type: description_short
claim_value: De Kinderboekenweek 2025 staat weer voor de deur! Dit jaar is het thema 'Vol avontuur'. De Bibliotheek heeft
weer leuke boeken verzameld! Geniet van avontuurlijke verhalen tijdens de Kinderboekenweek.
raw_value: De Kinderboekenweek 2025 staat weer voor de deur! Dit jaar is het thema 'Vol avontuur'. De Bibliotheek heeft
weer leuke boeken verzameld! Geniet van avontuurlijke verhalen tijdens de Kinderboekenweek.
claim_value: De Kinderboekenweek 2025 staat weer voor de deur! Dit jaar is het
thema 'Vol avontuur'. De Bibliotheek heeft weer leuke boeken verzameld! Geniet
van avontuurlijke verhalen tijdens de Kinderboekenweek.
raw_value: De Kinderboekenweek 2025 staat weer voor de deur! Dit jaar is het thema
'Vol avontuur'. De Bibliotheek heeft weer leuke boeken verzameld! Geniet van
avontuurlijke verhalen tijdens de Kinderboekenweek.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -1526,10 +1534,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:12.727513+00:00'
- claim_type: description_short
claim_value: 'Ontdek Boekbot: Slim zoeken, lekker lezen. Boekbot is jouw AI boekenbuddy met brains. Vind eenvoudig het
perfect boek, zonder in een leesbubbel te belanden. De app is gratis te downloaden via de iTunes Store en Google Play.'
raw_value: 'Ontdek Boekbot: Slim zoeken, lekker lezen. Boekbot is jouw AI boekenbuddy met brains. Vind eenvoudig het perfect
boek, zonder in een leesbubbel te belanden. De app is gratis te downloaden via de iTunes Store en Google Play.'
claim_value: 'Ontdek Boekbot: Slim zoeken, lekker lezen. Boekbot is jouw AI boekenbuddy
met brains. Vind eenvoudig het perfect boek, zonder in een leesbubbel te belanden.
De app is gratis te downloaden via de iTunes Store en Google Play.'
raw_value: 'Ontdek Boekbot: Slim zoeken, lekker lezen. Boekbot is jouw AI boekenbuddy
met brains. Vind eenvoudig het perfect boek, zonder in een leesbubbel te belanden.
De app is gratis te downloaden via de iTunes Store en Google Play.'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -1788,10 +1798,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.303753+00:00'
- claim_type: description_short
claim_value: Wil je graag werken bij de bieb? Houd deze pagina dan goed in de gaten. Al onze vacatures publiceren we op
onze website.
raw_value: Wil je graag werken bij de bieb? Houd deze pagina dan goed in de gaten. Al onze vacatures publiceren we op
onze website.
claim_value: Wil je graag werken bij de bieb? Houd deze pagina dan goed in de
gaten. Al onze vacatures publiceren we op onze website.
raw_value: Wil je graag werken bij de bieb? Houd deze pagina dan goed in de gaten.
Al onze vacatures publiceren we op onze website.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -1850,8 +1860,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.315258+00:00'
- claim_type: description_short
claim_value: Ben je op zoek naar de gegevens van een van onze contactpersonen? Kijk in deze lijst.
raw_value: Ben je op zoek naar de gegevens van een van onze contactpersonen? Kijk in deze lijst.
claim_value: Ben je op zoek naar de gegevens van een van onze contactpersonen?
Kijk in deze lijst.
raw_value: Ben je op zoek naar de gegevens van een van onze contactpersonen? Kijk
in deze lijst.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -1980,11 +1992,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.324475+00:00'
- claim_type: description_short
claim_value: Steeds meer gebeurt via computer en internet. Daarom is het belangrijk om hiermee om te kunnen gaan, maar
dat is niet voor iedereen vanzelfsprekend. Als digitaal vrijwilliger Digisterker help je inwoners die al een digitale
basis hebben gelegd met Klik & Tik.
raw_value: Steeds meer gebeurt via computer en internet. Daarom is het belangrijk om hiermee om te kunnen gaan, maar dat
is niet voor iedereen vanzelfsprekend. Als digitaal vrijwilliger Digisterker help je inwoners die al een digitale basis
claim_value: Steeds meer gebeurt via computer en internet. Daarom is het belangrijk
om hiermee om te kunnen gaan, maar dat is niet voor iedereen vanzelfsprekend.
Als digitaal vrijwilliger Digisterker help je inwoners die al een digitale basis
hebben gelegd met Klik & Tik.
raw_value: Steeds meer gebeurt via computer en internet. Daarom is het belangrijk
om hiermee om te kunnen gaan, maar dat is niet voor iedereen vanzelfsprekend.
Als digitaal vrijwilliger Digisterker help je inwoners die al een digitale basis
hebben gelegd met Klik & Tik.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
@ -2024,10 +2038,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.332434+00:00'
- claim_type: description_short
claim_value: We zijn op zoek naar een vrijwilliger in Weert en Nederweert die ons wil helpen bij het coördineren van de
taallessen die mensen uit Oekraïne bij ons volgen.
raw_value: We zijn op zoek naar een vrijwilliger in Weert en Nederweert die ons wil helpen bij het coördineren van de
taallessen die mensen uit Oekraïne bij ons volgen.
claim_value: We zijn op zoek naar een vrijwilliger in Weert en Nederweert die
ons wil helpen bij het coördineren van de taallessen die mensen uit Oekraïne
bij ons volgen.
raw_value: We zijn op zoek naar een vrijwilliger in Weert en Nederweert die ons
wil helpen bij het coördineren van de taallessen die mensen uit Oekraïne bij
ons volgen.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2106,10 +2122,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.350294+00:00'
- claim_type: description_short
claim_value: Ben je op zoek naar inspiratie? Praat samen met anderen in een ongedwongen sfeer over mooie boeken. Loop
binnen bij de Boekenpraat! Je bent welkom.
raw_value: Ben je op zoek naar inspiratie? Praat samen met anderen in een ongedwongen sfeer over mooie boeken. Loop binnen
bij de Boekenpraat! Je bent welkom.
claim_value: Ben je op zoek naar inspiratie? Praat samen met anderen in een ongedwongen
sfeer over mooie boeken. Loop binnen bij de Boekenpraat! Je bent welkom.
raw_value: Ben je op zoek naar inspiratie? Praat samen met anderen in een ongedwongen
sfeer over mooie boeken. Loop binnen bij de Boekenpraat! Je bent welkom.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2148,10 +2164,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.358150+00:00'
- claim_type: description_short
claim_value: Wil jij de reserveringen bij je lokale bieb omzeilen en direct je favoriete boek lezen of luisteren? Grijp
nooit meer mis met de online Bibliotheek.
raw_value: Wil jij de reserveringen bij je lokale bieb omzeilen en direct je favoriete boek lezen of luisteren? Grijp
nooit meer mis met de online Bibliotheek.
claim_value: Wil jij de reserveringen bij je lokale bieb omzeilen en direct je
favoriete boek lezen of luisteren? Grijp nooit meer mis met de online Bibliotheek.
raw_value: Wil jij de reserveringen bij je lokale bieb omzeilen en direct je favoriete
boek lezen of luisteren? Grijp nooit meer mis met de online Bibliotheek.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2360,10 +2376,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.680219+00:00'
- claim_type: description_short
claim_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen. Kleine voetafdrukken in het zand,
wielsporen van een kruiwagentje, geplet gras van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
raw_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen. Kleine voetafdrukken in het zand,
wielsporen van een kruiwagentje, geplet gras van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
claim_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje, geplet gras
van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
raw_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje, geplet gras
van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2402,11 +2420,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.726533+00:00'
- claim_type: description_short
claim_value: Van maandag 17 november t/m dinsdag 2 december mag je je schoentje komen zetten bij ons in de bibliotheek
in Weert! Je mag een echt schoentje meenemen, maar je kunt ook zelf een schoentje knutselen. We verzamelen alle schoentjes
claim_value: Van maandag 17 november t/m dinsdag 2 december mag je je schoentje
komen zetten bij ons in de bibliotheek in Weert! Je mag een echt schoentje meenemen,
maar je kunt ook zelf een schoentje knutselen. We verzamelen alle schoentjes
in de bieb… want wie weet komt Sinterklaas wel even kijken hoeveel er al staan!
raw_value: Van maandag 17 november t/m dinsdag 2 december mag je je schoentje komen zetten bij ons in de bibliotheek in
Weert! Je mag een echt schoentje meenemen, maar je kunt ook zelf een schoentje knutselen. We verzamelen alle schoentjes
raw_value: Van maandag 17 november t/m dinsdag 2 december mag je je schoentje
komen zetten bij ons in de bibliotheek in Weert! Je mag een echt schoentje meenemen,
maar je kunt ook zelf een schoentje knutselen. We verzamelen alle schoentjes
in de bieb… want wie weet komt Sinterklaas wel even kijken hoeveel er al staan!
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
@ -2446,10 +2466,12 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.753998+00:00'
- claim_type: description_short
claim_value: Wist je dat er kabouters wonen in De Groote Peel? Tenminste, dat denken ze, want overal zie je kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje.. Ga met je kinderen op zoek!
raw_value: Wist je dat er kabouters wonen in De Groote Peel? Tenminste, dat denken ze, want overal zie je kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje.. Ga met je kinderen op zoek!
claim_value: Wist je dat er kabouters wonen in De Groote Peel? Tenminste, dat
denken ze, want overal zie je kaboutersporen. Kleine voetafdrukken in het zand,
wielsporen van een kruiwagentje.. Ga met je kinderen op zoek!
raw_value: Wist je dat er kabouters wonen in De Groote Peel? Tenminste, dat denken
ze, want overal zie je kaboutersporen. Kleine voetafdrukken in het zand, wielsporen
van een kruiwagentje.. Ga met je kinderen op zoek!
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2488,14 +2510,18 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.764711+00:00'
- claim_type: description_short
claim_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen. Kleine voetafdrukken in het zand,
wielsporen van een kruiwagentje, geplet gras van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
Echt waar! Als je het kabouterpad loopt kom je er achter wat kabouters de hele dag doen. Vergeet onderweg niet te zoeken
naar kaboutersporen! En met een beetje geluk kom je een echte kabouter tegen...
raw_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen. Kleine voetafdrukken in het zand,
wielsporen van een kruiwagentje, geplet gras van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen.
Echt waar! Als je het kabouterpad loopt kom je er achter wat kabouters de hele dag doen. Vergeet onderweg niet te zoeken
naar kaboutersporen! En met een beetje geluk kom je een echte kabouter tegen...
claim_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje, geplet gras
van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen. Echt
waar! Als je het kabouterpad loopt kom je er achter wat kabouters de hele dag
doen. Vergeet onderweg niet te zoeken naar kaboutersporen! En met een beetje
geluk kom je een echte kabouter tegen...
raw_value: Wist je dat hier kabouters wonen? Je ziet namelijk overal kaboutersporen.
Kleine voetafdrukken in het zand, wielsporen van een kruiwagentje, geplet gras
van een middagdutje. En je ziet ook weleens een kabouterdrolletje liggen. Echt
waar! Als je het kabouterpad loopt kom je er achter wat kabouters de hele dag
doen. Vergeet onderweg niet te zoeken naar kaboutersporen! En met een beetje
geluk kom je een echte kabouter tegen...
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2594,14 +2620,14 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.795718+00:00'
- claim_type: description_short
claim_value: 'Kies voor gemak! Wil jij je boeken graag thuisbezorgd krijgen? Geen probleem!
claim_value: |-
Kies voor gemak! Wil jij je boeken graag thuisbezorgd krijgen? Geen probleem!
Met een Boek-aan-Huis abonnement heb je altijd de leukste boeken in huis, zonder dat je er de deur voor uit hoeft!
raw_value: |-
Kies voor gemak! Wil jij je boeken graag thuisbezorgd krijgen? Geen probleem!
Met een Boek-aan-Huis abonnement heb je altijd de leukste boeken in huis, zonder dat je er de deur voor uit hoeft!'
raw_value: 'Kies voor gemak! Wil jij je boeken graag thuisbezorgd krijgen? Geen probleem!
Met een Boek-aan-Huis abonnement heb je altijd de leukste boeken in huis, zonder dat je er de deur voor uit hoeft!'
Met een Boek-aan-Huis abonnement heb je altijd de leukste boeken in huis, zonder dat je er de deur voor uit hoeft!
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[5]
@ -2660,14 +2686,18 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.803143+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - maandag van 14.00 tot 15.00
uur - woensdag van 10.00 tot 12.00 uur en van 14.15 tot 15.45 uur. - vrijdag van 14.30 tot 16.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - maandag van 14.00 tot 15.00
uur - woensdag van 10.00 tot 12.00 uur en van 14.15 tot 15.45 uur. - vrijdag van 14.30 tot 16.00 uur'
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - maandag van 14.00 tot 15.00 uur - woensdag van 10.00 tot 12.00 uur en
van 14.15 tot 15.45 uur. - vrijdag van 14.30 tot 16.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - maandag van 14.00 tot 15.00 uur - woensdag van 10.00 tot 12.00 uur en
van 14.15 tot 15.45 uur. - vrijdag van 14.30 tot 16.00 uur'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2696,11 +2726,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.813389+00:00'
- claim_type: description_short
claim_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
raw_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of
een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
claim_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter.
raw_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
@ -2730,22 +2762,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.822505+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: maandag van 14.30 - 16.30 uur
donderdag van 9.30 - 12.00 uur
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: maandag van 14.30 - 16.30 uur donderdag van 9.30 - 12.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: maandag van 14.30 - 16.30 uur
donderdag van 9.30 - 12.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: maandag van 14.30 - 16.30 uur donderdag van 9.30 - 12.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2774,22 +2800,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.967420+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: dinsdag van 15.00 - 17.00 uur
donderdag van 8.30 - 11.30 uur
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: dinsdag van 15.00 - 17.00 uur donderdag van 8.30 - 11.30 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: dinsdag van 15.00 - 17.00 uur
donderdag van 8.30 - 11.30 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: dinsdag van 15.00 - 17.00 uur donderdag van 8.30 - 11.30 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten'
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2818,20 +2838,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.974707+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek omj 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek omj 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek omj 17.00 uur gesloten.'
5 december, 24 december en 31 december is de bibliotheek omj 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2860,20 +2876,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:14.996323+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december is de bibliotheek om 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
5 december is de bibliotheek om 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december is de bibliotheek om 17.00 uur gesloten.'
5 december is de bibliotheek om 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2922,14 +2934,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.017668+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - dinsdag van 10.00 tot 12.00
uur - woensdag van 13.30 tot 15.30 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - dinsdag van 10.00 tot 12.00
uur - woensdag van 13.30 tot 15.30 uur'
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - dinsdag van 10.00 tot 12.00 uur - woensdag van 13.30 tot 15.30 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - dinsdag van 10.00 tot 12.00 uur - woensdag van 13.30 tot 15.30 uur'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -2958,22 +2972,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.038333+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Deze bibliotheek heeft een collectie voor kinderen van 0 t/m
12 jaar. De collectie voor volwassenen, kinderen van 0 t/m 4 jaar en de oudere jeugd vind je in de bibliotheek aan het
Suikerdoossingel in Maasbracht. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
Er is een vrijwilliger aanwezig om je te helpen op: woensdag van 14.00 - 16.00 uur vrijdag van 14.00 - 16.00 uur
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Deze bibliotheek heeft een collectie voor kinderen van 0 t/m 12 jaar. De collectie voor volwassenen, kinderen van 0 t/m 4 jaar en de oudere jeugd vind je in de bibliotheek aan het Suikerdoossingel in Maasbracht. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: woensdag van 14.00 - 16.00 uur vrijdag van 14.00 - 16.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Deze bibliotheek heeft een collectie voor kinderen van 0 t/m 12
jaar. De collectie voor volwassenen, kinderen van 0 t/m 4 jaar en de oudere jeugd vind je in de bibliotheek aan het
Suikerdoossingel in Maasbracht. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
Er is een vrijwilliger aanwezig om je te helpen op: woensdag van 14.00 - 16.00 uur vrijdag van 14.00 - 16.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Deze bibliotheek heeft een collectie voor kinderen van 0 t/m 12 jaar. De collectie voor volwassenen, kinderen van 0 t/m 4 jaar en de oudere jeugd vind je in de bibliotheek aan het Suikerdoossingel in Maasbracht. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: woensdag van 14.00 - 16.00 uur vrijdag van 14.00 - 16.00 uur
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -3002,14 +3010,16 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.054576+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - dinsdag van 14.00 tot 17.00
uur - donderdag van 14.00 tot 17.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: - dinsdag van 14.00 tot 17.00
uur - donderdag van 14.00 tot 17.00 uur'
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - dinsdag van 14.00 tot 17.00 uur - donderdag van 14.00 tot 17.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: - dinsdag van 14.00 tot 17.00 uur - donderdag van 14.00 tot 17.00 uur'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -3038,28 +3048,22 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.063405+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. GRATIS cursussen: Klik & Tik, omgaan met de computer, Digisterker,
Open Inloop Taal, Tel mee met Taal, Walk & Talk voor werkzoekenden. Met een abonnement kun je boeken en tijdschriften
lenen in alle bibliotheken van Bibliocenter.
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. GRATIS cursussen: Klik & Tik, omgaan met de computer, Digisterker, Open Inloop Taal, Tel mee met Taal, Walk & Talk voor werkzoekenden. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. GRATIS cursussen: Klik & Tik, omgaan met de computer, Digisterker,
Open Inloop Taal, Tel mee met Taal, Walk & Talk voor werkzoekenden. Met een abonnement kun je boeken en tijdschriften
lenen in alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. GRATIS cursussen: Klik & Tik, omgaan met de computer, Digisterker, Open Inloop Taal, Tel mee met Taal, Walk & Talk voor werkzoekenden. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -3088,11 +3092,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.083658+00:00'
- claim_type: description_short
claim_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Mét een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
raw_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of
een boek in te kijken. Dat kan ook zonder lidmaatschap. Mét een abonnement kun je boeken en tijdschriften lenen in alle
claim_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Mét een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter.
raw_value: Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Mét een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
@ -3122,14 +3128,18 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.108627+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: -dinsdag van 13.30 - 16.00 uur
- woensdag van 13.30 - 16.00 uur - vrijdag van 13.30 - 16.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen op: -dinsdag van 13.30 - 16.00 uur
- woensdag van 13.30 - 16.00 uur - vrijdag van 13.30 - 16.00 uur'
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: -dinsdag van 13.30 - 16.00 uur - woensdag van 13.30 - 16.00 uur - vrijdag
van 13.30 - 16.00 uur'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift
te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder
lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle
bibliotheken van Bibliocenter. Er is een vrijwilliger aanwezig om je te helpen
op: -dinsdag van 13.30 - 16.00 uur - woensdag van 13.30 - 16.00 uur - vrijdag
van 13.30 - 16.00 uur'
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -3158,70 +3168,48 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:55:15.149665+00:00'
- claim_type: description_short
claim_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
claim_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
De bibliotheek is van maandag t/m vrijdag open van 8.30 - 20.00 uur en op zaterdag van 10.00 - 13.00 uur.
Er is een medewerker aanwezig om je te helpen op:
- maandag van 14.00 tot 17.00 uur
- dinsdag van 10.00 tot 12.30 uur
- woensdag van 10.00 tot 12.30 uur en van 14.00 tot 17.00 uur
- donderdag van 14.00 tot 17.00 uur
- vrijdag van 14.00 tot 20.00 uur
- zaterdag van 10.00 tot 13.00 uur.
Je vindt de bibliotheek in het Sociaal Maatschappelijk Centrum de Spil.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
raw_value: 'Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken
of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in
alle bibliotheken van Bibliocenter.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
raw_value: |-
Je bent van harte welkom bij Bibliocenter! Loop binnen om een tijdschrift te lezen, internet te gebruiken of een boek in te kijken. Dat kan ook zonder lidmaatschap. Met een abonnement kun je boeken en tijdschriften lenen in alle bibliotheken van Bibliocenter.
De bibliotheek is van maandag t/m vrijdag open van 8.30 - 20.00 uur en op zaterdag van 10.00 - 13.00 uur.
Er is een medewerker aanwezig om je te helpen op:
- maandag van 14.00 tot 17.00 uur
- dinsdag van 10.00 tot 12.30 uur
- woensdag van 10.00 tot 12.30 uur en van 14.00 tot 17.00 uur
- donderdag van 14.00 tot 17.00 uur
- vrijdag van 14.00 tot 20.00 uur
- zaterdag van 10.00 tot 13.00 uur.
Je vindt de bibliotheek in het Sociaal Maatschappelijk Centrum de Spil.
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.'
5 december, 24 december en 31 december is de bibliotheek om 17.00 uur gesloten.
source_url: https://www.bibliocenter.nl/
retrieved_on: '2025-11-29T20:05:38.540845+00:00'
xpath: /html/head/meta[4]
@ -3333,9 +3321,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -3343,8 +3333,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -3353,9 +3344,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -3363,8 +3356,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -3373,8 +3367,9 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
ch_annotator:
convention_id: ch_annotator-v1_7_0
@ -3450,3 +3445,10 @@ ch_annotator:
integrated_from: netherlands_complete_ch_annotator.yaml
integration_date: '2025-12-06T23:20:40.994940+00:00'
match_type: wikidata
timespan:
begin_of_the_begin: '2008-07-01T00:00:00Z'
end_of_the_begin: '2008-07-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q59962372'

View file

@ -45,7 +45,7 @@ contact:
website: http://www.stoelenmatterij-Bakel.nl
custodian_name:
claim_type: custodian_name
claim_value: stoelenmatterij beckers-verhees
claim_value: Stoelenmatterij Beckers-Verhees
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.479867+00:00'

View file

@ -54,7 +54,7 @@ locations:
longitude: 5.9450972
custodian_name:
claim_type: custodian_name
claim_value: brabantse orgelfederatie
claim_value: Brabantse Orgelfederatie
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.177363+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.metworst.nl
custodian_name:
claim_type: custodian_name
claim_value: vereniging "de metworst"
claim_value: Vereniging "De Metworst"
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.485871+00:00'

View file

@ -87,8 +87,8 @@ enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00'
wikidata_enrichment:
wikidata_entity_id: Q60233737
wikidata_label: Bibliotheek Breda Centrum
wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare Bibliotheek Breda in gebouw De Nieuwe
Veste in het centrum van Breda
wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare
Bibliotheek Breda in gebouw De Nieuwe Veste in het centrum van Breda
fetch_timestamp: '2025-11-28T12:22:39.072851+00:00'
match_method: isil_code_match
wikidata_coordinates:
@ -225,12 +225,14 @@ web_enrichment:
source_url: https://www.nieuweveste.nl/
claims:
- claim_type: description
claim_value: Nieuwe Veste is a multifunctional cultural center in the heart of Breda that combines the public library
with extensive arts education and creative workshops. The building integrates the medieval Huis Ocrum with a modern
extension designed by architect Herman Hertzberger. Notable features include 200+ year old mulberry trees in the garden
and the BOMEN café. Nieuwe Veste offers courses and workshops in music, visual arts, photography, theatre, musical theatre,
dance, and writing. Makersbase provides access to modern technology including 3D printers, laser cutters, and vinyl
plotters.
claim_value: Nieuwe Veste is a multifunctional cultural center in the heart of
Breda that combines the public library with extensive arts education and creative
workshops. The building integrates the medieval Huis Ocrum with a modern extension
designed by architect Herman Hertzberger. Notable features include 200+ year
old mulberry trees in the garden and the BOMEN café. Nieuwe Veste offers courses
and workshops in music, visual arts, photography, theatre, musical theatre,
dance, and writing. Makersbase provides access to modern technology including
3D printers, laser cutters, and vinyl plotters.
source_url: https://www.nieuweveste.nl/
extraction_timestamp: '2025-11-28T14:45:00+00:00'
confidence: 0.85
@ -240,15 +242,17 @@ web_enrichment:
extraction_timestamp: '2025-11-28T14:45:00+00:00'
confidence: 0.8
- claim_type: services
claim_value: Public library with extensive collection; Book lending and digital library; Study spaces and reading rooms;
Free Wi-Fi; Printing and computer services; Makersbase (3D printers, laser cutters, vinyl plotters); Arts courses and
workshops; Music education; Theatre and dance programs; Photography and visual arts; Cultural events and performances
claim_value: Public library with extensive collection; Book lending and digital
library; Study spaces and reading rooms; Free Wi-Fi; Printing and computer services;
Makersbase (3D printers, laser cutters, vinyl plotters); Arts courses and workshops;
Music education; Theatre and dance programs; Photography and visual arts; Cultural
events and performances
source_url: https://www.nieuweveste.nl/
extraction_timestamp: '2025-11-28T14:45:00+00:00'
confidence: 0.8
- claim_type: collections
claim_value: General fiction and non-fiction; Children's and young adult materials; E-books and digital resources; Newspapers
and magazines
claim_value: General fiction and non-fiction; Children's and young adult materials;
E-books and digital resources; Newspapers and magazines
source_url: https://www.nieuweveste.nl/
extraction_timestamp: '2025-11-28T14:45:00+00:00'
confidence: 0.8
@ -656,9 +660,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -666,8 +672,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -676,9 +683,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -686,8 +695,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -696,8 +706,9 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
ch_annotator:
convention_id: ch_annotator-v1_7_0
@ -773,3 +784,10 @@ ch_annotator:
integrated_from: netherlands_complete_ch_annotator.yaml
integration_date: '2025-12-06T23:20:38.589728+00:00'
match_type: wikidata
timespan:
begin_of_the_begin: '1993-01-01T00:00:00Z'
end_of_the_begin: '1993-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q60233737'

View file

@ -261,10 +261,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:11.337768+00:00'
- claim_type: description_short
claim_value: Het gezellige museum geeft een mooi beeld van het Kempische leven van weleer. Ontdek de schuilkelder en waan
je terug in de tijd!
raw_value: Het gezellige museum geeft een mooi beeld van het Kempische leven van weleer. Ontdek de schuilkelder en waan
je terug in de tijd!
claim_value: Het gezellige museum geeft een mooi beeld van het Kempische leven
van weleer. Ontdek de schuilkelder en waan je terug in de tijd!
raw_value: Het gezellige museum geeft een mooi beeld van het Kempische leven van
weleer. Ontdek de schuilkelder en waan je terug in de tijd!
source_url: http://www.kempenmuseum.nl/
retrieved_on: ''
xpath: /html/head/meta[4]
@ -530,9 +530,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -540,8 +542,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -550,9 +553,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -560,8 +565,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -570,6 +576,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1977-01-01T00:00:00Z'
end_of_the_begin: '1977-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q153193'

View file

@ -244,55 +244,50 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107245793802057571682/reviews
rating: 3
relative_time_description: 3 weken geleden
text: 'Het Van Abbemuseum in Eindhoven is een indrukwekkend museum dat een bezoek meer dan waard is. Al bij binnenkomst
voel je je welkom: De vrouw naast de balie neemt de tijd om vriendelijk uitleg te geven over wat er te zien is en reikt
een duidelijke brochure aan met de plattegrond en informatie over de tentoonstellingen. Dat geeft meteen een goed gevoel
en maakt het makkelijk om je weg te vinden in het museum.
text: |-
Het Van Abbemuseum in Eindhoven is een indrukwekkend museum dat een bezoek meer dan waard is. Al bij binnenkomst voel je je welkom: De vrouw naast de balie neemt de tijd om vriendelijk uitleg te geven over wat er te zien is en reikt een duidelijke brochure aan met de plattegrond en informatie over de tentoonstellingen. Dat geeft meteen een goed gevoel en maakt het makkelijk om je weg te vinden in het museum.
Het museum zelf is groot en ruim van opzet. Er is veel te zien, variërend van moderne kunst tot meer experimentele installaties. De manier waarop de zalen zijn ingericht nodigt uit om rustig rond te lopen en de kunst op je in te laten werken. Er is aandacht voor detail, en je merkt dat er met zorg nagedacht is over de presentatie.
Het museum zelf is groot en ruim van opzet. Er is veel te zien, variërend van moderne kunst tot meer experimentele installaties.
De manier waarop de zalen zijn ingericht nodigt uit om rustig rond te lopen en de kunst op je in te laten werken. Er
is aandacht voor detail, en je merkt dat er met zorg nagedacht is over de presentatie.
Een minpuntje is wel de ligging midden in de stad. Parkeren in de buurt is een uitdaging: of het is flink duur, of je
rijdt rondjes op zoek naar een plek. Dat kan wat afbreuk doen aan het gemak van het bezoek. Maar eenmaal binnen vergeet
je dat snel — het Van Abbemuseum biedt een inspirerende en goed verzorgde kunstervaring.'
Een minpuntje is wel de ligging midden in de stad. Parkeren in de buurt is een uitdaging: of het is flink duur, of je rijdt rondjes op zoek naar een plek. Dat kan wat afbreuk doen aan het gemak van het bezoek. Maar eenmaal binnen vergeet je dat snel — het Van Abbemuseum biedt een inspirerende en goed verzorgde kunstervaring.
publish_time: '2025-11-05T14:34:59.490506398Z'
- author_name: Didier
author_uri: https://www.google.com/maps/contrib/105589771056184558963/reviews
rating: 4
relative_time_description: een maand geleden
text: Het Van Abbemuseum is echt een prachtig museum voor moderne kunst. Het gebouw zelf is al een kunstwerk ruim, licht
en met mooie doorkijken. De lichtinval is geweldig en zorgt ervoor dat de kunst echt tot leven komt. En vergeet niet
de zingende lift een leuk en onverwacht detail dat perfect past bij de sfeer van het museum. Een fijne plek om rustig
rond te lopen en inspiratie op te doen. Zeker een aanrader voor liefhebbers van moderne kunst én mooie architectuur.
text: Het Van Abbemuseum is echt een prachtig museum voor moderne kunst. Het gebouw
zelf is al een kunstwerk ruim, licht en met mooie doorkijken. De lichtinval
is geweldig en zorgt ervoor dat de kunst echt tot leven komt. En vergeet niet
de zingende lift een leuk en onverwacht detail dat perfect past bij de sfeer
van het museum. Een fijne plek om rustig rond te lopen en inspiratie op te doen.
Zeker een aanrader voor liefhebbers van moderne kunst én mooie architectuur.
publish_time: '2025-10-22T15:01:26.020753690Z'
- author_name: Hugo Laurent
author_uri: https://www.google.com/maps/contrib/117053316805296659159/reviews
rating: 4
relative_time_description: een maand geleden
text: Mooi museum, voor ons alleen soms te modern. We hadden meer schilderkunst verwacht. Heel groot museum, veel trappen
te doen om de verschillende verdiepen te bereiken. Gelukkig is er ook een lift aanwezig. Er zijn ook begeleide tours
text: Mooi museum, voor ons alleen soms te modern. We hadden meer schilderkunst
verwacht. Heel groot museum, veel trappen te doen om de verschillende verdiepen
te bereiken. Gelukkig is er ook een lift aanwezig. Er zijn ook begeleide tours
waar je je voor kan inschrijven aan de balie.
publish_time: '2025-10-13T05:18:28.276774187Z'
- author_name: ingrid lacet
author_uri: https://www.google.com/maps/contrib/113125123314625433800/reviews
rating: 5
relative_time_description: een maand geleden
text: 'Heel mooi en verrassend museum, een aanrader om te bezoeken, ook rolstoelvriendelijk. De videopresentaties hebben
mij verrast. Ook het tijdsbeeld waarin wij ons verkeren kwam mooi terug in de kunstwerken.
De horeca serveerde een heerlijke lunch, leuke menukaart en een fijne bediening ook.'
text: |-
Heel mooi en verrassend museum, een aanrader om te bezoeken, ook rolstoelvriendelijk. De videopresentaties hebben mij verrast. Ook het tijdsbeeld waarin wij ons verkeren kwam mooi terug in de kunstwerken.
De horeca serveerde een heerlijke lunch, leuke menukaart en een fijne bediening ook.
publish_time: '2025-10-05T20:02:09.672826768Z'
- author_name: Gabriella Bazelmans-Janssen
author_uri: https://www.google.com/maps/contrib/113901497859068180335/reviews
rating: 5
relative_time_description: een week geleden
text: Heel apart...nog nooit in n kunstmuseum geweest, viel van de ene in de andere verbazing, maar wel heel leuk en supermooi
museum
text: Heel apart...nog nooit in n kunstmuseum geweest, viel van de ene in de andere
verbazing, maar wel heel leuk en supermooi museum
publish_time: '2025-11-14T10:39:56.898230133Z'
editorial_summary: Hedendaagse en experimentele kunst, installaties en fototentoonstellingen in een strak, modern museum.
editorial_summary: Hedendaagse en experimentele kunst, installaties en fototentoonstellingen
in een strak, modern museum.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ5yXyHQLZxkcR4lktXxAS_RA/photos/AWn5SU43JF2taz33HBUZE5NHomxmHg8e65vsMO4g2w7kyGAQEfPATX5T0pyfI0AwT2OK7flLvRxfVkAupsehmV7zo-dNrvbebsji4pMiMQs1hHMx759xM_pD6HHhO1kZtAAnOTVXgrPMnMrVdEXKKKno9DCyIP_ifxVveuVmdrEX6txaesly96bmP6aKPNWvLzns_LISuYKbiSw3FQQthHduFputt0qGFQI5KGGm8XcyFkBfLfM8DligrkXXybgLPrN8WKrfFscZFSdPfNZTAQJeQ23d1NZHmNLSxgdwnc6ipMbNtA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJ5yXyHQLZxkcR4lktXxAS_RA/photos/AWn5SU5u3Orbmp16FOOOgyl9VIywDmYUtZrtCDButOyv1gXjipt36HQB7AayJ1rIqy9mFC9msBxd-Wy8taKJ5J6Si5eL9GhoYPfR64N0iOIs6sL3i1myJnsmYhO7PSS3u4oR57ZMS6X1mfmZOcdFGVs7SQ0Vt08q4_pHVolppXj6CsN5PUiCE6NRkYqaB8SYgcpPs4zNiH_qo3dtx4IdQD6_aT3qOBJ5VRqr6eLxdy-i7bAfiSDm7EN6R31DX5T502vAHjn1FQ0gbuvMVljZ4rKP9s5zG2eI5ymfZHnbRFZnAKkgTopt0icBjZgu9zXo3olH3POBXJvDfgn_E90EQruc96fKKFxi-2h0tb_-C-CBqw6CmDZgTcXOjU72rmuvGL8d2OeVAK3kNW1mFz34jw7qitp_D2Bcsw2_B9v08rSUlPk/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -422,10 +417,10 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:43:52.624706+00:00'
- claim_type: description_short
claim_value: Het Van Abbemuseum in Eindhoven is een van de meest toonaangevende musea voor hedendaagse kunst in Europa.
Bezoek de doorlopende collectietentoonstellingen.
raw_value: Het Van Abbemuseum in Eindhoven is een van de meest toonaangevende musea voor hedendaagse kunst in Europa.
Bezoek de doorlopende collectietentoonstellingen.
claim_value: Het Van Abbemuseum in Eindhoven is een van de meest toonaangevende
musea voor hedendaagse kunst in Europa. Bezoek de doorlopende collectietentoonstellingen.
raw_value: Het Van Abbemuseum in Eindhoven is een van de meest toonaangevende
musea voor hedendaagse kunst in Europa. Bezoek de doorlopende collectietentoonstellingen.
source_url: http://www.vanabbemuseum.nl/
retrieved_on: '2025-11-29T16:44:02.376213+00:00'
xpath: /html/head/meta[2]
@ -652,7 +647,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Hedendaagse en experimentele kunst, installaties en fototentoonstellingen in een strak, modern museum.
digital_collections: Hedendaagse en experimentele kunst, installaties en fototentoonstellingen
in een strak, modern museum.
technology_stack: TMS/CC
data_standards:
- HTML5
@ -672,9 +668,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -682,8 +680,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -692,9 +691,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -702,8 +703,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -712,6 +714,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1936-01-01T00:00:00Z'
end_of_the_begin: '1936-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q1782422'

View file

@ -56,7 +56,7 @@ contact:
website: http://hawuthellemonds.nl
custodian_name:
claim_type: custodian_name
claim_value: haw ut hellemonds
claim_value: Haw ut Hellemonds
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.287494+00:00'

View file

@ -171,7 +171,8 @@ google_maps_enrichment:
- 'zondag: 10:0017:00'
rating: 4.6
total_ratings: 1133
editorial_summary: Indoor- en outdoorexposities over Van Gogh en de plaatselijke bezienswaardigheden die hij schilderde.
editorial_summary: Indoor- en outdoorexposities over Van Gogh en de plaatselijke
bezienswaardigheden die hij schilderde.
google_maps_url: https://maps.google.com/?cid=4119743144018753726&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: Van Gogh Village Nuenen museum, Netherlands
@ -260,11 +261,13 @@ web_claims:
extraction_method: title_tag
extraction_timestamp: '2025-12-02T08:57:10.183923+00:00'
- claim_type: description_short
claim_value: 'Van Gogh Village Museum, winnaar van Gebouw van het Jaar verkiezing, laat het leven van Vincent in Nuenen
zien en zijn ontdekkingstocht als mens. Hij schilderde in Nuenen het eerste meesterwerk: De aardappeleters. Gratis toegang
claim_value: 'Van Gogh Village Museum, winnaar van Gebouw van het Jaar verkiezing,
laat het leven van Vincent in Nuenen zien en zijn ontdekkingstocht als mens.
Hij schilderde in Nuenen het eerste meesterwerk: De aardappeleters. Gratis toegang
voor kinderen!'
raw_value: 'Van Gogh Village Museum, winnaar van Gebouw van het Jaar verkiezing, laat het leven van Vincent in Nuenen
zien en zijn ontdekkingstocht als mens. Hij schilderde in Nuenen het eerste meesterwerk: De aardappeleters. Gratis toegang
raw_value: 'Van Gogh Village Museum, winnaar van Gebouw van het Jaar verkiezing,
laat het leven van Vincent in Nuenen zien en zijn ontdekkingstocht als mens.
Hij schilderde in Nuenen het eerste meesterwerk: De aardappeleters. Gratis toegang
voor kinderen!'
source_url: http://www.vangoghvillagenuenen.nl/
retrieved_on: ''
@ -600,7 +603,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Indoor- en outdoorexposities over Van Gogh en de plaatselijke bezienswaardigheden die hij schilderde.
digital_collections: Indoor- en outdoorexposities over Van Gogh en de plaatselijke
bezienswaardigheden die hij schilderde.
technology_stack: Standard web technology
data_standards:
- Open Graph
@ -620,9 +624,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -630,8 +636,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -640,9 +647,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -650,8 +659,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -660,6 +670,14 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '2010-07-18T00:00:00Z'
end_of_the_begin: '2010-07-18T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q15883459'

View file

@ -48,7 +48,7 @@ legal_status:
original_name_with_legal_form: Stichting Abrahamdag Oosterhout
custodian_name:
claim_type: custodian_name
claim_value: abrahamdag oosterhout
claim_value: Abrahamdag Oosterhout
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.400681+00:00'

View file

@ -52,7 +52,7 @@ contact:
website: https://www.hetgrootgevolg.nl/
custodian_name:
claim_type: custodian_name
claim_value: nederlandse carnavalsstichting het groot gevolg
claim_value: Nederlandse Carnavalsstichting Het Groot Gevolg
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.353711+00:00'

View file

@ -45,7 +45,7 @@ contact:
website: http://www.karolus-magnus.nl
custodian_name:
claim_type: custodian_name
claim_value: schola cantorum karolus magnus
claim_value: Schola cantorum karolus magnus
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.387711+00:00'

View file

@ -46,7 +46,7 @@ contact:
website: http://www.loterijfondsravenstein.info
custodian_name:
claim_type: custodian_name
claim_value: het loterijfonds ravenstein
claim_value: Het Loterijfonds Ravenstein
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.291304+00:00'

View file

@ -235,11 +235,8 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
- claim_type: description
claim_value: 'Bibliotheek West-Brabant is a regional public library organization serving the West-Brabant region in Noord-Brabant,
Netherlands. Founded in 2019 through merger, it operates multiple branches across the region. The main library in Roosendaal
is located in the Emile van Loonhuis building at Markt 54A, in a renovated Parrotia building designed by includi.
'
claim_value: |
Bibliotheek West-Brabant is a regional public library organization serving the West-Brabant region in Noord-Brabant, Netherlands. Founded in 2019 through merger, it operates multiple branches across the region. The main library in Roosendaal is located in the Emile van Loonhuis building at Markt 54A, in a renovated Parrotia building designed by includi.
source_url: https://www.bibliotheekwb.nl/
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
@ -264,7 +261,8 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
- claim_type: building_note
claim_value: Renovated with includi design intervention, transformed underutilized space
claim_value: Renovated with includi design intervention, transformed underutilized
space
source_url: https://www.bibliotheekwb.nl/
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
@ -274,9 +272,11 @@ web_enrichment:
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
- claim_type: services
claim_value: De Ontdekbieb (discovery library for children); Informatiepunt Digitale Overheid (IDO); Taalpanels (language
panels); Handige bibliotheek apps; Bieb-aan-Huis service (home delivery); Hulp bij (assistance programs); Moeite met
lezen (reading difficulties support); Leesclubs (reading clubs); Geheugenhuis (memory house - dementia support)
claim_value: De Ontdekbieb (discovery library for children); Informatiepunt Digitale
Overheid (IDO); Taalpanels (language panels); Handige bibliotheek apps; Bieb-aan-Huis
service (home delivery); Hulp bij (assistance programs); Moeite met lezen (reading
difficulties support); Leesclubs (reading clubs); Geheugenhuis (memory house
- dementia support)
source_url: https://www.bibliotheekwb.nl/
extraction_timestamp: '2025-11-29T11:02:56.568040+00:00'
confidence: 0.8
@ -602,9 +602,11 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -612,8 +614,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -622,9 +625,11 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: false
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
description: Dating back to the late nineteenth century, a corso is an annual parade of floats or boats decorated with
flowers, fruit, vegetables and, in some cases, people in costumes. Originating in the south of France and Italy, the
practice spread to the Netherlands in the nineteenth century. The parade take...
description: Dating back to the late nineteenth century, a corso is an annual
parade of floats or boats decorated with flowers, fruit, vegetables and, in
some cases, people in costumes. Originating in the south of France and Italy,
the practice spread to the Netherlands in the nineteenth century. The parade
take...
- unesco_ich_id: '1708'
name: Falconry, a living human heritage
list_type: RL
@ -632,8 +637,9 @@ unesco_ich_enrichment:
inscription_year: 2021
multinational: true
url: https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01708
description: Falconry is the traditional art and practice of training and flying falcons (and sometimes eagles, hawks,
buzzards and other birds of prey). It has been practised for over 4000 years. The practice of falconry in early and
description: Falconry is the traditional art and practice of training and flying
falcons (and sometimes eagles, hawks, buzzards and other birds of prey). It
has been practised for over 4000 years. The practice of falconry in early and
medieval periods of history is documented in many parts of the world. Original...
- unesco_ich_id: '1265'
name: Craft of the miller operating windmills and watermills
@ -642,8 +648,9 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
ch_annotator:
convention_id: ch_annotator-v1_7_0
@ -719,3 +726,10 @@ ch_annotator:
integrated_from: netherlands_complete_ch_annotator.yaml
integration_date: '2025-12-06T23:20:40.692020+00:00'
match_type: wikidata
timespan:
begin_of_the_begin: '2019-01-01T00:00:00Z'
end_of_the_begin: '2019-01-01T00:00:00Z'
begin_of_the_end: null
end_of_the_end: null
sources:
- 'Wikidata: Q102180353'

View file

@ -50,7 +50,7 @@ legal_status:
original_name_with_legal_form: Stichting Het Lekkerste Brabantse Worstenbroodje
custodian_name:
claim_type: custodian_name
claim_value: het lekkerste brabantse worstenbroodje
claim_value: Het Lekkerste Brabantse Worstenbroodje
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.430282+00:00'

View file

@ -49,7 +49,7 @@ contact:
website: http://www.nbfs.nl
custodian_name:
claim_type: custodian_name
claim_value: noord-brabantse federatie van schuttersgilden
claim_value: Noord-Brabantse Federatie van Schuttersgilden
source: kien_registry
confidence: 0.9
extraction_timestamp: '2025-12-04T06:59:52.366353+00:00'

Some files were not shown because too many files have changed in this diff Show more