Refactor code structure for improved readability and maintainability

This commit is contained in:
kempersc 2026-01-09 11:05:26 +01:00
parent 0393b321c9
commit c88fd3af70
126 changed files with 17377 additions and 1572 deletions

View file

@ -0,0 +1,215 @@
# Rule 42: No Ontology Prefixes in Slot Names
**CRITICAL**: LinkML slot names MUST NOT include ontology namespace prefixes. Ontology references belong in mapping properties, NOT in element names.
---
## 1. The Problem
Slot names like `rico_has_or_had_holder` or `skos_broader` violate separation of concerns:
- **Slot names** should describe the semantic meaning in plain, readable terms
- **Ontology mappings** belong in `slot_uri`, `exact_mappings`, `close_mappings`, `related_mappings`, `narrow_mappings`, `broad_mappings`
Embedding ontology prefixes in names:
1. Creates coupling between naming and specific ontology versions
2. Reduces readability for non-ontology experts
3. Duplicates information already in mapping properties
4. Makes future ontology migrations harder
---
## 2. Correct Pattern
### Use Descriptive Names + Mapping Properties
```yaml
# CORRECT: Clean name with ontology reference in slot_uri
slots:
record_holder:
description: The custodian that holds or held this record set.
slot_uri: rico:hasOrHadHolder
exact_mappings:
- rico:hasOrHadHolder
close_mappings:
- schema:holdingArchive
range: Custodian
```
### WRONG: Ontology Prefix in Name
```yaml
# WRONG: Ontology prefix embedded in slot name
slots:
rico_has_or_had_holder: # BAD - "rico_" prefix
description: The custodian that holds or held this record set.
slot_uri: rico:hasOrHadHolder
range: string
```
---
## 3. Prohibited Prefixes in Slot Names
The following prefixes MUST NOT appear at the start of slot names:
| Prefix | Ontology | Example Violation |
|--------|----------|-------------------|
| `rico_` | Records in Contexts | `rico_organizational_principle` |
| `skos_` | SKOS | `skos_broader`, `skos_narrower` |
| `schema_` | Schema.org | `schema_name` |
| `dcterms_` | Dublin Core | `dcterms_created` |
| `dct_` | Dublin Core | `dct_identifier` |
| `prov_` | PROV-O | `prov_generated_by` |
| `org_` | W3C Organization | `org_has_member` |
| `crm_` | CIDOC-CRM | `crm_carried_out_by` |
| `foaf_` | FOAF | `foaf_knows` |
| `owl_` | OWL | `owl_same_as` |
| `rdf_` | RDF | `rdf_type` |
| `rdfs_` | RDFS | `rdfs_label` |
| `cpov_` | CPOV | `cpov_public_organisation` |
| `tooi_` | TOOI | `tooi_overheidsorganisatie` |
| `bf_` | BIBFRAME | `bf_title` |
| `edm_` | Europeana | `edm_provided_cho` |
---
## 4. Migration Examples
### Example 1: RiC-O Slots
```yaml
# BEFORE (wrong)
rico_has_or_had_holder:
slot_uri: rico:hasOrHadHolder
range: string
# AFTER (correct)
record_holder:
description: Reference to the custodian that holds or held this record set.
slot_uri: rico:hasOrHadHolder
exact_mappings:
- rico:hasOrHadHolder
range: Custodian
```
### Example 2: SKOS Slots
```yaml
# BEFORE (wrong)
skos_broader:
slot_uri: skos:broader
range: uriorcurie
# AFTER (correct)
broader_concept:
description: A broader concept in the hierarchy.
slot_uri: skos:broader
exact_mappings:
- skos:broader
range: uriorcurie
```
### Example 3: RiC-O Organizational Principle
```yaml
# BEFORE (wrong)
rico_organizational_principle:
slot_uri: rico:hasRecordSetType
range: string
# AFTER (correct)
organizational_principle:
description: The organizational principle (fonds, series, collection) for this record set.
slot_uri: rico:hasRecordSetType
exact_mappings:
- rico:hasRecordSetType
range: string
```
---
## 5. Exceptions
### 5.1 Identifier Slots
Slots that store **identifiers from external systems** may include system names (not ontology prefixes):
```yaml
# ALLOWED: External system identifier
wikidata_id:
description: Wikidata entity identifier (Q-number).
slot_uri: schema:identifier
range: string
pattern: "^Q[0-9]+$"
# ALLOWED: External system identifier
viaf_id:
description: VIAF identifier for authority control.
slot_uri: schema:identifier
range: string
```
### 5.2 Internal Namespace Force Slots
Technical slots for namespace generation are prefixed with `internal_`:
```yaml
# ALLOWED: Technical workaround slot
internal_wd_namespace_force:
description: Internal slot to force WD namespace generation. Do not use.
slot_uri: wd:Q35120
range: string
```
---
## 6. Validation
Run this command to find violations:
```bash
cd schemas/20251121/linkml/modules/slots
ls -1 *.yaml | grep -E "^(rico_|skos_|schema_|dcterms_|dct_|prov_|org_|crm_|foaf_|owl_|rdf_|rdfs_|cpov_|tooi_|bf_|edm_)"
```
Expected output: No files (after migration)
---
## 7. Rationale
### LinkML Best Practices
LinkML provides dedicated properties for ontology alignment:
| Property | Purpose | Example |
|----------|---------|---------|
| `slot_uri` | Primary ontology predicate | `slot_uri: rico:hasOrHadHolder` |
| `exact_mappings` | Semantically equivalent predicates | `exact_mappings: [schema:holdingArchive]` |
| `close_mappings` | Nearly equivalent predicates | `close_mappings: [dc:creator]` |
| `related_mappings` | Related but different predicates | `related_mappings: [prov:wasAttributedTo]` |
| `narrow_mappings` | More specific predicates | `narrow_mappings: [rico:hasInstantiation]` |
| `broad_mappings` | More general predicates | `broad_mappings: [schema:about]` |
See: https://linkml.io/linkml-model/latest/docs/mappings/
### Clean Separation of Concerns
- **Names**: Human-readable, domain-focused terminology
- **URIs**: Machine-readable, ontology-specific identifiers
- **Mappings**: Cross-ontology alignment documentation
This separation allows:
1. Renaming slots without changing ontology bindings
2. Adding new ontology mappings without renaming slots
3. Clear documentation of semantic relationships
4. Easier maintenance and evolution
---
## 8. See Also
- **Rule 38**: Slot Centralization and Semantic URI Requirements
- **Rule 39**: Slot Naming Convention (RiC-O Style) - for temporal naming patterns
- LinkML Mappings Documentation: https://linkml.io/linkml-model/latest/docs/mappings/

View file

@ -0,0 +1,80 @@
# Rule: Slot Nouns Must Be Singular
🚨 **CRITICAL**: LinkML slot names MUST use singular nouns, even for multivalued slots. The `multivalued: true` property indicates cardinality, not the slot name.
## Rationale
1. **Predicate semantics**: Slots represent predicates/relationships. In RDF, `hasCollection` can have multiple objects without changing the predicate name.
2. **Consistency**: Singular names work for both single-valued and multivalued slots.
3. **Ontology alignment**: Standard ontologies use singular predicates (`skos:broader`, `org:hasMember`, `rico:hasOrHadHolder`).
4. **Readability**: `custodian.has_or_had_custodian_type` reads naturally as "custodian has (or had) custodian type".
## Correct Pattern
```yaml
slots:
has_or_had_custodian_type: # ✅ CORRECT - singular noun
slot_uri: org:classification
range: CustodianType
multivalued: true # Cardinality expressed here, not in name
has_or_had_collection: # ✅ CORRECT - singular noun
slot_uri: rico:hasOrHadPart
range: CustodianCollection
multivalued: true
has_or_had_member: # ✅ CORRECT - singular noun
slot_uri: org:hasMember
range: Custodian
multivalued: true
```
## Incorrect Pattern
```yaml
slots:
has_or_had_custodian_types: # ❌ WRONG - plural noun
multivalued: true
collections: # ❌ WRONG - plural noun
multivalued: true
members: # ❌ WRONG - plural noun
multivalued: true
```
## Migration Examples
| Old (Plural) | New (Singular) |
|--------------|----------------|
| `custodian_types` | `has_or_had_custodian_type` |
| `collections` | `has_or_had_collection` |
| `identifiers` | `identifier` |
| `alternative_names` | `alternative_name` |
| `staff_members` | `staff_member` |
## Exceptions
**Compound concepts** where the plural is part of the concept name itself:
- `archives_regionales` - French administrative term (proper noun)
- `united_states` - Geographic proper noun
**NOT exceptions** (still use singular):
- `has_or_had_identifier` not `has_or_had_identifiers` (even if institution has multiple)
- `broader_type` not `broader_types` (even if multiple broader types)
## Implementation
When creating or renaming slots:
1. Extract the noun from the slot name
2. Convert to singular form
3. Combine with relationship prefix (`has_or_had_`, `is_or_was_`, etc.)
4. Set `multivalued: true` if multiple values are expected
## See Also
- `.opencode/rules/slot-naming-convention-rico-style.md` - RiC-O naming patterns
- `.opencode/rules/slot-centralization-and-semantic-uri-rule.md` - Slot centralization requirements

View file

@ -0,0 +1,332 @@
# Rule: LinkML "Types" Classes Define SPARQL Template Variables
**Created**: 2025-01-08
**Status**: Active
**Applies to**: SPARQL template design, RAG pipeline slot extraction
## Core Principle
LinkML classes following the `*Type` / `*Types` naming pattern (Rule 0b) serve as the **single source of truth** for valid values in SPARQL template slot variables.
When designing SPARQL templates, **extract variables from the schema** rather than hardcoding values. This enables:
- **Flexibility**: Same template works across all institution types
- **Extensibility**: Adding new types to schema automatically extends templates
- **Consistency**: Variable values always align with ontology
- **Multilingual support**: Type labels in multiple languages available from schema
## Template Variable Sources
### 1. Institution Type Variable (`institution_type`)
**Schema Source**: `CustodianType` abstract class and its 19 subclasses
| Subclass | Code | Description |
|----------|------|-------------|
| `ArchiveOrganizationType` | A | Archives |
| `BioCustodianType` | B | Botanical gardens, zoos |
| `CommercialOrganizationType` | C | Corporations |
| `DigitalPlatformType` | D | Digital platforms |
| `EducationProviderType` | E | Universities, schools |
| `FeatureCustodianType` | F | Geographic features |
| `GalleryType` | G | Art galleries |
| `HolySacredSiteType` | H | Religious sites |
| `IntangibleHeritageGroupType` | I | Folklore organizations |
| `LibraryType` | L | Libraries |
| `MuseumType` | M | Museums |
| `NonProfitType` | N | NGOs |
| `OfficialInstitutionType` | O | Government agencies |
| `PersonalCollectionType` | P | Private collectors |
| `ResearchOrganizationType` | R | Research centers |
| `HeritageSocietyType` | S | Historical societies |
| `TasteScentHeritageType` | T | Culinary heritage |
| `UnspecifiedType` | U | Unknown |
| `MixedCustodianType` | X | Multiple types |
**Template Slot Definition**:
```yaml
slots:
institution_type:
type: institution_type
required: true
schema_source: "modules/classes/CustodianType.yaml"
# Valid values derived from CustodianType subclasses
```
### 2. Geographic Scope Variable (`location`)
Geographic scope is a **hierarchical variable** with three levels:
| Level | Schema Source | SPARQL Property | Example |
|-------|---------------|-----------------|---------|
| Country | ISO 3166-1 alpha-2 | `hc:countryCode` | NL, DE, BE |
| Subregion | ISO 3166-2 | `hc:subregionCode` | NL-NH, DE-BY |
| Settlement | GeoNames | `hc:settlementName` | Amsterdam, Berlin |
**Template Slot Definition**:
```yaml
slots:
location:
type: location
required: true
schema_source:
- "modules/enums/CountryCodeEnum.yaml" (if exists)
- "data/reference/geonames.db"
resolution_order: [settlement, subregion, country]
# SlotExtractor detects which level user specified
```
### 3. Digital Platform Type Variable (`platform_type`)
**Schema Source**: `DigitalPlatformType` abstract class and 69+ subclasses in `DigitalPlatformTypes.yaml`
Categories include:
- REPOSITORY: DigitalLibrary, DigitalArchivePlatform, OpenAccessRepository
- AGGREGATOR: Europeana-type aggregators, BibliographicDatabasePlatform
- DISCOVERY: WebPortal, OnlineDatabase, OpenDataPortal
- VIRTUAL_HERITAGE: VirtualMuseum, VirtualLibrary, OnlineArtGallery
- RESEARCH: DisciplinaryRepository, PrePrintServer, GenealogyDatabase
- ...and many more
**Template Slot Definition**:
```yaml
slots:
platform_type:
type: platform_type
required: false
schema_source: "modules/classes/DigitalPlatformTypes.yaml"
```
## Template Design Pattern
### Before (Hardcoded - WRONG)
```yaml
# Separate templates for each institution type - DO NOT DO THIS
templates:
count_museums_in_region:
sparql: |
SELECT (COUNT(?s) AS ?count) WHERE {
?s hc:institutionType "M" ;
hc:subregionCode "{{ region }}" .
}
count_archives_in_region:
sparql: |
SELECT (COUNT(?s) AS ?count) WHERE {
?s hc:institutionType "A" ;
hc:subregionCode "{{ region }}" .
}
```
### After (Parameterized - CORRECT)
```yaml
# Single template with institution_type as variable
templates:
count_institutions_by_type_location:
description: "Count heritage institutions by type and location"
slots:
institution_type:
type: institution_type
required: true
schema_source: "modules/classes/CustodianType.yaml"
location:
type: location
required: true
resolution_order: [settlement, subregion, country]
# Multiple SPARQL variants based on location resolution
sparql_template: |
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
hc:settlementName "{{ location }}" .
}
sparql_template_region: |
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
hc:subregionCode "{{ location }}" .
}
sparql_template_country: |
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
hc:countryCode "{{ location }}" .
}
```
## SlotExtractor Responsibilities
The SlotExtractor module must:
1. **Detect institution type** from user query:
- "musea" → M (Dutch plural)
- "archives" → A (English)
- "bibliotheken" → L (Dutch)
- Use synonyms from `_slot_types.institution_type.synonyms`
2. **Detect location level** from user query:
- "Amsterdam" → settlement level → use `sparql_template`
- "Noord-Holland" → subregion level → use `sparql_template_region`
- "Nederland" → country level → use `sparql_template_country`
3. **Normalize values** to schema-compliant codes:
- "Noord-Holland" → "NL-NH"
- "museum" → "M"
## Dynamic Label Resolution (NO HARDCODING)
**CRITICAL**: Labels MUST be resolved at runtime from schema/reference files, NOT hardcoded in templates or code.
### Institution Type Labels
The `CustodianType` classes contain multilingual labels via `type_label` slot:
```yaml
MuseumType:
type_label:
- "Museum"@en
- "museum"@nl
- "Museum"@de
- "museo"@es
```
**Label Resolution Chain**:
1. Load `CustodianType.yaml` and subclass files
2. Parse `type_label` slot for each type code (M, L, A, etc.)
3. Build runtime label dictionary keyed by code + language
### Geographic Labels
Subregion/settlement names come from **reference data files**, not hardcoded:
```yaml
label_sources:
- "data/reference/iso_3166_2_{country}.json" # e.g., iso_3166_2_nl.json
- "data/reference/geonames.db" # GeoNames database
- "data/reference/admin1CodesASCII.txt" # GeoNames fallback
```
**Example**: `iso_3166_2_nl.json` contains:
```json
{
"provinces": {
"Noord-Holland": "NH",
"Zuid-Holland": "ZH",
"North Holland": "NH" // English synonym
}
}
```
### SlotExtractor Label Loading
```python
class SlotExtractor:
def __init__(self, schema_path: str, reference_path: str):
# Load institution type labels from schema
self.type_labels = self._load_custodian_type_labels(schema_path)
# Load geographic labels from reference files
self.subregion_labels = self._load_subregion_labels(reference_path)
def _load_custodian_type_labels(self, schema_path: str) -> dict:
"""Load multilingual labels from CustodianType schema files."""
# Parse YAML, extract type_label slots
# Return: {"M": {"nl": "musea", "en": "museums"}, ...}
def _load_subregion_labels(self, reference_path: str) -> dict:
"""Load subregion labels from ISO 3166-2 JSON files."""
# Load iso_3166_2_nl.json, iso_3166_2_de.json, etc.
# Return: {"NL-NH": {"nl": "Noord-Holland", "en": "North Holland"}, ...}
```
### UI Template Interpolation
```yaml
ui_template:
nl: "Er zijn {{ count }} {{ institution_type_nl }} in {{ location }}."
en: "There are {{ count }} {{ institution_type_en }} in {{ location }}."
```
The RAG pipeline populates `institution_type_nl` / `institution_type_en` from dynamically loaded labels:
```python
# At runtime, NOT hardcoded
template_context["institution_type_nl"] = slot_extractor.type_labels[type_code]["nl"]
template_context["institution_type_en"] = slot_extractor.type_labels[type_code]["en"]
```
## Adding New Types
When the schema gains new institution types:
1. **No template changes needed** - parameterized templates automatically support new types
2. **Update synonyms** in `_slot_types.institution_type.synonyms` for NLP recognition
3. **Labels auto-discovered** from schema files - no code changes needed
## Anti-Patterns (FORBIDDEN)
### Hardcoded Labels in Templates
```yaml
# WRONG - Hardcoded labels
labels:
NL-NH: {nl: "Noord-Holland", en: "North Holland"}
NL-ZH: {nl: "Zuid-Holland", en: "South Holland"}
```
```python
# WRONG - Hardcoded labels in code
INSTITUTION_TYPE_LABELS_NL = {
"M": "musea", "L": "bibliotheken", ...
}
```
### Correct Approach
```yaml
# CORRECT - Reference to schema/data source
label_sources:
- "schemas/20251121/linkml/modules/classes/CustodianType.yaml"
- "data/reference/iso_3166_2_{country}.json"
```
```python
# CORRECT - Load labels at runtime
type_labels = load_labels_from_schema("CustodianType.yaml")
region_labels = load_labels_from_reference("iso_3166_2_nl.json")
```
**Why?**
1. **Single source of truth** - Labels defined once in schema/reference files
2. **Automatic sync** - Schema changes automatically propagate to UI
3. **Extensibility** - Adding new countries/types doesn't require code changes
4. **Multilingual** - All language variants come from same source
## Validation
Templates MUST validate slot values against schema:
```python
def validate_institution_type(value: str) -> bool:
"""Validate institution_type against CustodianType schema."""
valid_codes = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
'L', 'M', 'N', 'O', 'P', 'R', 'S', 'T', 'U', 'X']
return value in valid_codes
```
## Related Rules
- **Rule 0b**: Type/Types file naming convention
- **Rule 13**: Custodian type annotations on LinkML schema elements
- **Rule 37**: Specificity score annotations for template filtering
## References
- Schema: `schemas/20251121/linkml/modules/classes/CustodianType.yaml`
- Types: `schemas/20251121/linkml/modules/classes/*Types.yaml`
- Enums: `schemas/20251121/linkml/modules/enums/InstitutionTypeCodeEnum.yaml`
- Templates: `data/sparql_templates.yaml`

170
AGENTS.md
View file

@ -21,9 +21,7 @@ This is NOT a simple data extraction project. This is an **ontology engineering
## 🚨 CRITICAL RULES FOR ALL AGENTS
## 🚨 CRITICAL RULES FOR ALL AGENTS
This section summarizes 38 critical rules. Each rule has complete documentation in `.opencode/` files.
This section summarizes 41 critical rules. Each rule has complete documentation in `.opencode/` files.
### Rule 0: LinkML Schemas Are the Single Source of Truth
@ -869,6 +867,172 @@ google_maps_enrichment:
---
### Rule 41: LinkML "Types" Classes Define SPARQL Template Variables
🚨 **CRITICAL**: LinkML classes following the `*Type` / `*Types` naming pattern (Rule 0b) serve as the **single source of truth** for valid values in SPARQL template slot variables.
When designing SPARQL templates, **extract variables from the schema** rather than hardcoding separate templates for each institution type or geographic level.
**Why This Matters**:
- Same template works across ALL institution types (musea, archieven, bibliotheken, etc.)
- Same template works across ALL geographic levels (country, subregion, settlement)
- Adding new types to schema automatically extends template capabilities
- Multilingual support comes for free from schema labels
**Template Variable Sources**:
| Variable | Schema Source | Examples |
|----------|---------------|----------|
| `institution_type` | `CustodianType` + 19 subclasses | M (Museum), A (Archive), L (Library) |
| `location` | Hierarchical: Country/Subregion/Settlement | NL, NL-NH, Amsterdam |
| `platform_type` | `DigitalPlatformTypes.yaml` (69+ types) | DigitalLibrary, Aggregator |
**Template Design Pattern**:
```yaml
# CORRECT: Single parameterized template
count_institutions_by_type_location:
slots:
institution_type:
schema_source: "modules/classes/CustodianType.yaml"
location:
resolution_order: [settlement, subregion, country]
# SlotExtractor detects level and selects appropriate SPARQL variant
sparql_template: |
SELECT (COUNT(?s) AS ?count) WHERE {
?s hc:institutionType "{{ institution_type }}" ;
hc:settlementName "{{ location }}" .
}
sparql_template_region: |
SELECT (COUNT(?s) AS ?count) WHERE {
?s hc:institutionType "{{ institution_type }}" ;
hc:subregionCode "{{ location }}" .
}
```
**SlotExtractor Responsibilities**:
1. **Detect institution type** from query: "musea" → M, "archieven" → A
2. **Detect location level**: "Amsterdam" → settlement, "Noord-Holland" → subregion
3. **Normalize values**: "Noord-Holland" → "NL-NH"
**See**: `.opencode/rules/types-classes-as-template-variables.md` for complete documentation
---
### Rule 42: No Ontology Prefixes in Slot Names
🚨 **CRITICAL**: LinkML slot names MUST NOT include ontology namespace prefixes. Ontology references belong in mapping properties (`slot_uri`, `exact_mappings`, `close_mappings`, etc.), NOT in element names.
**Why This Matters**:
- Slot names should be human-readable, domain-focused terminology
- Ontology mappings are documented via LinkML's dedicated mapping properties
- Embedding prefixes creates coupling between naming and specific ontology versions
- Clean separation allows renaming slots without changing ontology bindings
**Prohibited Prefixes**:
| Prefix | Ontology | Example Violation |
|--------|----------|-------------------|
| `rico_` | Records in Contexts | `rico_organizational_principle` |
| `skos_` | SKOS | `skos_broader`, `skos_narrower` |
| `schema_` | Schema.org | `schema_name` |
| `dcterms_` | Dublin Core | `dcterms_created` |
| `prov_` | PROV-O | `prov_generated_by` |
| `org_` | W3C Organization | `org_has_member` |
| `crm_` | CIDOC-CRM | `crm_carried_out_by` |
| `foaf_` | FOAF | `foaf_knows` |
**Correct Pattern**:
```yaml
# CORRECT: Clean name with ontology reference in slot_uri and mappings
slots:
record_holder:
description: The custodian that holds or held this record set.
slot_uri: rico:hasOrHadHolder
exact_mappings:
- rico:hasOrHadHolder
close_mappings:
- schema:holdingArchive
range: Custodian
```
**WRONG Pattern**:
```yaml
# WRONG: Ontology prefix embedded in slot name
slots:
rico_has_or_had_holder: # BAD - "rico_" prefix duplicates slot_uri info
slot_uri: rico:hasOrHadHolder
range: string
```
**Exceptions**:
- **External identifier slots**: `wikidata_id`, `viaf_id`, `isil_code` (system names, not ontology prefixes)
- **Internal technical slots**: `internal_wd_namespace_force` (prefixed with `internal_`)
**See**: `.opencode/rules/no-ontology-prefix-in-slot-names.md` for complete documentation and migration examples
---
### Rule 43: Slot Nouns Must Be Singular
🚨 **CRITICAL**: LinkML slot names MUST use singular nouns, even for multivalued slots. The `multivalued: true` property indicates cardinality, NOT the slot name.
**Rationale**:
1. **Predicate semantics**: Slots represent predicates/relationships. In RDF, `hasCollection` can have multiple objects without changing the predicate name.
2. **Consistency**: Singular names work for both single-valued and multivalued slots.
3. **Ontology alignment**: Standard ontologies use singular predicates (`skos:broader`, `org:hasMember`, `rico:hasOrHadHolder`).
4. **Readability**: `custodian.has_or_had_custodian_type` reads naturally as "custodian has (or had) custodian type".
**Correct Pattern**:
```yaml
slots:
has_or_had_custodian_type: # ✅ CORRECT - singular noun
slot_uri: org:classification
range: CustodianType
multivalued: true # Cardinality expressed here, not in name
has_or_had_collection: # ✅ CORRECT - singular noun
range: CustodianCollection
multivalued: true
has_or_had_member: # ✅ CORRECT - singular noun
range: Custodian
multivalued: true
```
**WRONG Pattern**:
```yaml
slots:
has_or_had_custodian_types: # ❌ WRONG - plural noun
multivalued: true
collections: # ❌ WRONG - plural noun
multivalued: true
```
**Migration Examples**:
| Old (Plural) | New (Singular) |
|--------------|----------------|
| `custodian_types` | `has_or_had_custodian_type` |
| `collections` | `has_or_had_collection` |
| `identifiers` | `identifier` |
| `alternative_names` | `alternative_name` |
| `staff_members` | `staff_member` |
**Exceptions** (compound concepts where plural is part of the proper noun):
- `archives_regionales` - French administrative term
- `united_states` - Geographic proper noun
**See**: `.opencode/rules/slot-noun-singular-convention.md` for complete documentation
---
## Appendix: Full Rule Content (No .opencode Equivalent)
The following rules have no separate .opencode file and are preserved in full:

View file

@ -0,0 +1,555 @@
/**
* ChatMapPanel.tsx - Collapsible MapLibre map panel for chat results
*
* A Material-UI styled map panel that displays heritage institutions
* with coordinates returned from RAG queries.
*
* Features:
* - Collapsible panel that shows/hides the map
* - Real OSM/CartoDB tiles (light/dark mode)
* - GLAMORCUBESFIXPHDNT type colors (19 types)
* - Click markers to show institution details
* - Automatic bounds fitting
*/
import React, { useRef, useEffect, useState, useMemo, useCallback } from 'react'
import maplibregl from 'maplibre-gl'
import type { StyleSpecification, MapLayerMouseEvent, GeoJSONSource } from 'maplibre-gl'
import 'maplibre-gl/dist/maplibre-gl.css'
import {
Box,
Paper,
Typography,
Collapse,
IconButton,
Chip,
Link,
} from '@mui/material'
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
import MapIcon from '@mui/icons-material/Map'
import PlaceIcon from '@mui/icons-material/Place'
import OpenInNewIcon from '@mui/icons-material/OpenInNew'
import CloseIcon from '@mui/icons-material/Close'
// NA Color palette (matches ChatPage.tsx)
const naColors = {
primary: '#007bc7',
red: '#d52b1e',
orange: '#e17000',
green: '#39870c',
cream: '#f7f5f3',
darkBlue: '#154273',
lightBlue: '#e5f0f9',
}
// Custodian type colors matching GLAMORCUBESFIXPHDNT taxonomy (19 types)
const TYPE_COLORS: Record<string, string> = {
G: '#00bcd4', // Gallery - cyan
L: '#2ecc71', // Library - green
A: '#3498db', // Archive - blue
M: '#e74c3c', // Museum - red
O: '#f39c12', // Official - orange
R: '#1abc9c', // Research - teal
C: '#795548', // Corporation - brown
U: '#9e9e9e', // Unknown - gray
B: '#4caf50', // Botanical - green
E: '#ff9800', // Education - amber
S: '#9b59b6', // Society - purple
F: '#95a5a6', // Features - gray
I: '#673ab7', // Intangible - deep purple
X: '#607d8b', // Mixed - blue gray
P: '#8bc34a', // Personal - light green
H: '#607d8b', // Holy sites - blue gray
D: '#34495e', // Digital - dark gray
N: '#e91e63', // NGO - pink
T: '#ff5722', // Taste/smell - deep orange
}
const TYPE_NAMES: Record<string, string> = {
G: 'Galerie',
L: 'Bibliotheek',
A: 'Archief',
M: 'Museum',
O: 'Officieel',
R: 'Onderzoek',
C: 'Bedrijf',
U: 'Onbekend',
B: 'Botanisch',
E: 'Onderwijs',
S: 'Vereniging',
F: 'Monumenten',
I: 'Immaterieel',
X: 'Gemengd',
P: 'Persoonlijk',
H: 'Heilige plaatsen',
D: 'Digitaal',
N: 'NGO',
T: 'Smaak/geur',
}
// Map tile styles
const getMapStyle = (isDarkMode: boolean): StyleSpecification => {
if (isDarkMode) {
return {
version: 8,
sources: {
'carto-dark': {
type: 'raster',
tiles: [
'https://a.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}@2x.png',
'https://b.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}@2x.png',
],
tileSize: 256,
attribution: '&copy; OpenStreetMap &copy; CARTO',
},
},
layers: [
{
id: 'carto-dark-tiles',
type: 'raster',
source: 'carto-dark',
minzoom: 0,
maxzoom: 19,
},
],
}
} else {
return {
version: 8,
sources: {
'osm': {
type: 'raster',
tiles: [
'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png',
'https://b.tile.openstreetmap.org/{z}/{x}/{y}.png',
],
tileSize: 256,
attribution: '&copy; OpenStreetMap contributors',
},
},
layers: [
{
id: 'osm-tiles',
type: 'raster',
source: 'osm',
minzoom: 0,
maxzoom: 19,
},
],
}
}
}
// Institution interface (matches ChatPage.tsx)
export interface Institution {
name: string
type?: string
city?: string
country?: string
description?: string
website?: string
latitude?: number
longitude?: number
score?: number
}
interface ChatMapPanelProps {
institutions: Institution[]
defaultExpanded?: boolean
}
/**
* Map a type name to single-letter code
*/
function mapTypeNameToCode(typeName?: string): string {
if (!typeName) return 'U'
const normalized = typeName.toLowerCase()
if (normalized.includes('museum')) return 'M'
if (normalized.includes('archief') || normalized.includes('archive')) return 'A'
if (normalized.includes('bibliotheek') || normalized.includes('library')) return 'L'
if (normalized.includes('galerie') || normalized.includes('gallery')) return 'G'
if (normalized.includes('universiteit') || normalized.includes('university') || normalized.includes('onderwijs') || normalized.includes('education')) return 'E'
if (normalized.includes('onderzoek') || normalized.includes('research')) return 'R'
if (normalized.includes('vereniging') || normalized.includes('society')) return 'S'
if (normalized.includes('botanisch') || normalized.includes('botanical') || normalized.includes('zoo')) return 'B'
if (normalized.includes('officieel') || normalized.includes('official')) return 'O'
if (normalized.includes('bedrijf') || normalized.includes('corporation')) return 'C'
if (normalized.includes('monument') || normalized.includes('feature')) return 'F'
if (normalized.includes('immaterieel') || normalized.includes('intangible')) return 'I'
if (normalized.includes('persoonlijk') || normalized.includes('personal')) return 'P'
if (normalized.includes('heilig') || normalized.includes('holy') || normalized.includes('kerk')) return 'H'
if (normalized.includes('digitaal') || normalized.includes('digital')) return 'D'
if (normalized.includes('ngo')) return 'N'
if (normalized.includes('smaak') || normalized.includes('taste')) return 'T'
if (normalized.includes('gemengd') || normalized.includes('mixed')) return 'X'
return 'U'
}
/**
* Convert institutions to GeoJSON FeatureCollection
*/
function institutionsToGeoJSON(institutions: Institution[]): GeoJSON.FeatureCollection {
const validInstitutions = institutions.filter(
inst => inst.latitude != null && inst.longitude != null
)
return {
type: 'FeatureCollection',
features: validInstitutions.map((inst, index) => {
const typeCode = mapTypeNameToCode(inst.type)
return {
type: 'Feature' as const,
id: index,
geometry: {
type: 'Point' as const,
coordinates: [inst.longitude!, inst.latitude!],
},
properties: {
index,
name: inst.name,
type: typeCode,
typeName: inst.type || '',
color: TYPE_COLORS[typeCode] || '#9e9e9e',
city: inst.city || '',
country: inst.country || '',
website: inst.website || '',
description: inst.description || '',
},
}
}),
}
}
export const ChatMapPanel: React.FC<ChatMapPanelProps> = ({
institutions,
defaultExpanded = true,
}) => {
const mapContainerRef = useRef<HTMLDivElement>(null)
const mapRef = useRef<maplibregl.Map | null>(null)
const [mapReady, setMapReady] = useState(false)
const [expanded, setExpanded] = useState(defaultExpanded)
const [selectedInstitution, setSelectedInstitution] = useState<Institution | null>(null)
const [isDarkMode] = useState(() =>
window.matchMedia?.('(prefers-color-scheme: dark)').matches ?? false
)
// Filter institutions with valid coordinates
const validInstitutions = useMemo(() =>
institutions.filter(inst => inst.latitude != null && inst.longitude != null),
[institutions]
)
// Convert to GeoJSON
const geoJSON = useMemo(() => institutionsToGeoJSON(institutions), [institutions])
// Calculate bounds
const bounds = useMemo(() => {
if (validInstitutions.length === 0) return null
const lngs = validInstitutions.map(i => i.longitude!)
const lats = validInstitutions.map(i => i.latitude!)
return new maplibregl.LngLatBounds(
[Math.min(...lngs), Math.min(...lats)],
[Math.max(...lngs), Math.max(...lats)]
)
}, [validInstitutions])
// Initialize map
useEffect(() => {
if (!mapContainerRef.current || !expanded || mapRef.current) return
const map = new maplibregl.Map({
container: mapContainerRef.current,
style: getMapStyle(isDarkMode),
center: bounds ? bounds.getCenter().toArray() as [number, number] : [5.2913, 52.1326],
zoom: 7,
attributionControl: true,
})
mapRef.current = map
map.on('load', () => {
setMapReady(true)
// Fit to bounds if we have markers
if (bounds && validInstitutions.length > 1) {
map.fitBounds(bounds, { padding: 50, maxZoom: 14 })
} else if (validInstitutions.length === 1) {
map.setCenter([validInstitutions[0].longitude!, validInstitutions[0].latitude!])
map.setZoom(12)
}
})
map.addControl(new maplibregl.NavigationControl(), 'top-right')
return () => {
map.remove()
mapRef.current = null
setMapReady(false)
}
}, [expanded])
// Add/update GeoJSON source and layers
useEffect(() => {
if (!mapRef.current || !mapReady) return
const map = mapRef.current
const addLayers = () => {
// Remove existing layers and source if they exist
if (map.getLayer('institutions-circles')) map.removeLayer('institutions-circles')
if (map.getLayer('institutions-stroke')) map.removeLayer('institutions-stroke')
if (map.getSource('institutions')) map.removeSource('institutions')
// Add source
map.addSource('institutions', {
type: 'geojson',
data: geoJSON,
})
// Add circle layer
map.addLayer({
id: 'institutions-circles',
type: 'circle',
source: 'institutions',
paint: {
'circle-radius': 8,
'circle-color': ['get', 'color'],
'circle-stroke-width': 2,
'circle-stroke-color': '#ffffff',
'circle-opacity': 0.85,
},
})
// Fit bounds
if (bounds && validInstitutions.length > 1) {
map.fitBounds(bounds, { padding: 50, maxZoom: 14 })
}
}
if (map.isStyleLoaded()) {
addLayers()
} else {
map.once('style.load', addLayers)
}
}, [geoJSON, mapReady, bounds, validInstitutions.length])
// Handle click events
useEffect(() => {
if (!mapRef.current || !mapReady) return
const map = mapRef.current
const handleClick = (e: MapLayerMouseEvent) => {
if (!e.features || e.features.length === 0) return
const feature = e.features[0]
const props = feature.properties
const index = props?.index
if (index !== undefined && validInstitutions[index]) {
setSelectedInstitution(validInstitutions[index])
}
}
const handleMouseEnter = () => {
map.getCanvas().style.cursor = 'pointer'
}
const handleMouseLeave = () => {
map.getCanvas().style.cursor = ''
}
// Wait for layer to exist
const bindEvents = () => {
if (map.getLayer('institutions-circles')) {
map.on('click', 'institutions-circles', handleClick)
map.on('mouseenter', 'institutions-circles', handleMouseEnter)
map.on('mouseleave', 'institutions-circles', handleMouseLeave)
} else {
setTimeout(bindEvents, 100)
}
}
bindEvents()
return () => {
if (map.getLayer('institutions-circles')) {
map.off('click', 'institutions-circles', handleClick)
map.off('mouseenter', 'institutions-circles', handleMouseEnter)
map.off('mouseleave', 'institutions-circles', handleMouseLeave)
}
}
}, [mapReady, validInstitutions])
// Don't render if no valid institutions
if (validInstitutions.length === 0) {
return null
}
// Get unique types for legend
const uniqueTypes = Array.from(new Set(validInstitutions.map(i => mapTypeNameToCode(i.type))))
.filter(code => code !== 'U')
.slice(0, 6)
return (
<Paper
elevation={1}
sx={{
mt: 2,
mb: 2,
overflow: 'hidden',
border: `1px solid ${naColors.lightBlue}`,
}}
>
{/* Header - Clickable to expand/collapse */}
<Box
sx={{
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
px: 2,
py: 1,
bgcolor: naColors.lightBlue,
cursor: 'pointer',
}}
onClick={() => setExpanded(!expanded)}
>
<Box sx={{ display: 'flex', alignItems: 'center', gap: 1 }}>
<MapIcon sx={{ color: naColors.primary }} />
<Typography variant="subtitle2" sx={{ color: naColors.primary, fontWeight: 600 }}>
{validInstitutions.length} instelling{validInstitutions.length !== 1 ? 'en' : ''} op de kaart
</Typography>
</Box>
<IconButton size="small" sx={{ color: naColors.primary }}>
{expanded ? <ExpandLessIcon /> : <ExpandMoreIcon />}
</IconButton>
</Box>
{/* Map Container - Collapsible */}
<Collapse in={expanded}>
<Box sx={{ position: 'relative', height: 350 }}>
<Box
ref={mapContainerRef}
sx={{ width: '100%', height: '100%' }}
/>
{/* Legend */}
<Paper
sx={{
position: 'absolute',
bottom: 10,
left: 10,
p: 1,
bgcolor: 'rgba(255,255,255,0.9)',
borderRadius: 1,
maxWidth: 160,
}}
elevation={2}
>
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 0.5 }}>
Legenda
</Typography>
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 0.25 }}>
{uniqueTypes.map(code => (
<Box key={code} sx={{ display: 'flex', alignItems: 'center', gap: 0.5 }}>
<Box
sx={{
width: 10,
height: 10,
borderRadius: '50%',
bgcolor: TYPE_COLORS[code],
flexShrink: 0,
}}
/>
<Typography variant="caption" sx={{ fontSize: '0.65rem' }}>
{TYPE_NAMES[code]}
</Typography>
</Box>
))}
</Box>
</Paper>
{/* Selected Institution Panel */}
{selectedInstitution && (
<Paper
sx={{
position: 'absolute',
top: 10,
right: 10,
p: 2,
maxWidth: 280,
bgcolor: 'rgba(255,255,255,0.95)',
}}
elevation={3}
>
<Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start' }}>
<Typography variant="subtitle2" sx={{ fontWeight: 600, color: naColors.primary, pr: 2 }}>
{selectedInstitution.name}
</Typography>
<IconButton size="small" onClick={() => setSelectedInstitution(null)}>
<CloseIcon sx={{ fontSize: 18 }} />
</IconButton>
</Box>
{selectedInstitution.type && (
<Chip
label={selectedInstitution.type}
size="small"
sx={{
mt: 0.5,
height: 20,
fontSize: '0.7rem',
bgcolor: TYPE_COLORS[mapTypeNameToCode(selectedInstitution.type)],
color: '#fff',
}}
/>
)}
{(selectedInstitution.city || selectedInstitution.country) && (
<Box sx={{ display: 'flex', alignItems: 'center', gap: 0.5, mt: 1 }}>
<PlaceIcon sx={{ fontSize: 14, color: 'text.secondary' }} />
<Typography variant="caption" color="text.secondary">
{[selectedInstitution.city, selectedInstitution.country].filter(Boolean).join(', ')}
</Typography>
</Box>
)}
{selectedInstitution.description && (
<Typography variant="body2" sx={{ mt: 1, fontSize: '0.75rem', lineHeight: 1.4 }}>
{selectedInstitution.description.slice(0, 150)}
{selectedInstitution.description.length > 150 ? '...' : ''}
</Typography>
)}
{selectedInstitution.website && (
<Link
href={selectedInstitution.website}
target="_blank"
rel="noopener noreferrer"
sx={{
display: 'flex',
alignItems: 'center',
gap: 0.5,
mt: 1,
fontSize: '0.75rem',
color: naColors.primary,
}}
>
Website <OpenInNewIcon sx={{ fontSize: 12 }} />
</Link>
)}
</Paper>
)}
</Box>
</Collapse>
</Paper>
)
}
export default ChatMapPanel

View file

@ -55,6 +55,9 @@ import { DebugPanel } from '../components/DebugPanel'
import type { DebugPanelTab } from '../components/DebugPanel'
import { Code } from 'lucide-react'
// Import ChatMapPanel for geographic visualization
import { ChatMapPanel } from '../components/ChatMapPanel'
// NA Color palette
const naColors = {
primary: '#007bc7',
@ -233,6 +236,8 @@ interface Institution {
country?: string
description?: string
website?: string
latitude?: number
longitude?: number
score?: number
}
@ -719,6 +724,8 @@ function ChatPage() {
country: metadata.country as string | undefined,
description: metadata.description as string | undefined,
website: r.website as string | undefined,
latitude: metadata.latitude as number | undefined,
longitude: metadata.longitude as number | undefined,
score: scores.combined as number | undefined,
}
})
@ -1118,6 +1125,11 @@ function ChatPage() {
}}
/>
)}
{/* Map Panel - Shows institutions with coordinates on a map */}
{message.role === 'assistant' && !message.isLoading && message.institutions && message.institutions.length > 0 && (
<ChatMapPanel institutions={message.institutions} />
)}
</Paper>
</Box>
</Fade>

View file

@ -0,0 +1,112 @@
#!/usr/bin/env python3
"""Debug script to inspect the page structure after login."""
import time
from playwright.sync_api import sync_playwright
BASE_URL = 'https://archief.support'
LOGIN_EMAIL = 'scott@bronhouder.nl'
LOGIN_PASSWORD = 'Olivi@1985'
def debug_page():
print('🔍 Debugging page structure\n')
with sync_playwright() as p:
browser = p.chromium.launch(headless=False, slow_mo=200)
context = browser.new_context()
page = context.new_page()
try:
# Navigate
print('Navigating to archief.support...')
page.goto(BASE_URL)
page.wait_for_load_state('networkidle')
# Check if login is needed
login_button = page.locator('button:has-text("Inloggen")')
if login_button.is_visible(timeout=3000):
print('Logging in...')
login_button.click()
time.sleep(1)
page.fill('input[type="email"], input[name="email"]', LOGIN_EMAIL)
page.fill('input[type="password"], input[name="password"]', LOGIN_PASSWORD)
page.click('button[type="submit"]')
page.wait_for_load_state('networkidle')
time.sleep(2)
# Print page info
print('\n📄 Page title:', page.title())
print('📍 URL:', page.url)
# Find all input elements
print('\n🔍 Looking for input fields:')
inputs = page.locator('input, textarea')
count = inputs.count()
print(f'Found {count} input/textarea elements')
for i in range(min(count, 10)):
el = inputs.nth(i)
try:
tag = el.evaluate('el => el.tagName')
type_attr = el.evaluate('el => el.type || ""')
placeholder = el.evaluate('el => el.placeholder || ""')
visible = el.is_visible()
print(f' [{i}] <{tag}> type={type_attr} placeholder="{placeholder}" visible={visible}')
except:
pass
# Find all buttons
print('\n🔍 Looking for buttons:')
buttons = page.locator('button')
count = buttons.count()
print(f'Found {count} button elements')
for i in range(min(count, 15)):
btn = buttons.nth(i)
try:
text = btn.inner_text()
visible = btn.is_visible()
print(f' [{i}] "{text[:50]}" visible={visible}')
except:
pass
# Take a screenshot
page.screenshot(path='/tmp/archief-debug.png')
print('\n📸 Screenshot saved to /tmp/archief-debug.png')
# Check for chat input specifically
print('\n🔍 Looking for chat input:')
possible_selectors = [
'textarea',
'input[type="text"]',
'[contenteditable="true"]',
'.chat-input',
'#chat-input',
'[data-testid="chat-input"]',
'[placeholder*="vraag"]',
'[placeholder*="bericht"]',
]
for sel in possible_selectors:
try:
el = page.locator(sel).first
if el.is_visible(timeout=1000):
print(f' ✅ Found visible: {sel}')
else:
print(f' ❌ Not visible: {sel}')
except:
print(f' ❌ Not found: {sel}')
print('\n📌 Browser staying open for 60 seconds...')
time.sleep(60)
except Exception as e:
print(f'Error: {e}')
import traceback
traceback.print_exc()
finally:
browser.close()
if __name__ == '__main__':
debug_page()

View file

@ -0,0 +1,246 @@
#!/usr/bin/env node
/**
* Knowledge Graph Cache Fix - Manual Test Script
*
* This script uses Playwright to test that the Knowledge Graph visualization
* works correctly on both fresh API responses AND cached responses.
*
* Run with: npx playwright test tests/knowledge-graph-cache.spec.ts
* Or: node tests/knowledge-graph-cache-manual.mjs
*
* Prerequisites:
* npm install playwright @playwright/test
* npx playwright install chromium
*/
import { chromium } from 'playwright';
const BASE_URL = 'https://archief.support';
const TEST_QUERY = 'Welke archieven zijn er in Den Haag?';
const LOGIN_EMAIL = 'scott@bronhouder.nl';
const LOGIN_PASSWORD = 'Olivi@1985';
async function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function runTest() {
console.log('🚀 Starting Knowledge Graph Cache Test\n');
const browser = await chromium.launch({
headless: false, // Set to true for CI
slowMo: 100 // Slow down for visibility
});
const context = await browser.newContext();
const page = await context.newPage();
// Capture console logs
const consoleLogs = [];
page.on('console', msg => {
const text = msg.text();
consoleLogs.push(text);
if (text.includes('[ChatPage]') || text.includes('Knowledge Graph') || text.includes('Cache')) {
console.log(` 📝 Browser: ${text}`);
}
});
try {
// Step 1: Navigate to archief.support
console.log('Step 1: Navigating to archief.support...');
await page.goto(BASE_URL);
await page.waitForLoadState('networkidle');
console.log(' ✅ Page loaded\n');
// Check if login is needed
const loginButton = page.locator('button:has-text("Inloggen")');
if (await loginButton.isVisible({ timeout: 3000 }).catch(() => false)) {
console.log('Step 1b: Login required...');
await loginButton.click();
await sleep(1000);
// Fill login form
await page.fill('input[type="email"], input[name="email"]', LOGIN_EMAIL);
await page.fill('input[type="password"], input[name="password"]', LOGIN_PASSWORD);
await page.click('button[type="submit"]');
await page.waitForLoadState('networkidle');
console.log(' ✅ Logged in\n');
}
// Step 2: Clear the cache
console.log('Step 2: Clearing cache...');
const clearCacheButton = page.locator('button:has-text("Cache wissen")');
if (await clearCacheButton.isVisible({ timeout: 2000 }).catch(() => false)) {
await clearCacheButton.click();
await sleep(1000);
console.log(' ✅ Cache cleared\n');
} else {
console.log(' ⚠️ Cache clear button not found, continuing...\n');
}
// Step 3: Submit query (fresh API call)
console.log('Step 3: Submitting query (fresh API call)...');
console.log(` Query: "${TEST_QUERY}"`);
// Find the input field
const inputField = page.locator('textarea').first();
await inputField.fill(TEST_QUERY);
// Find and click send button
const sendButton = page.locator('button[type="submit"]').first();
await sendButton.click();
console.log(' ⏳ Waiting for RAG response (this may take 30-60 seconds)...');
// Wait for response
await page.waitForSelector('[data-role="assistant"], .message-content', { timeout: 90000 });
await sleep(3000); // Extra time for processing
console.log(' ✅ Response received\n');
// Step 4: Open Debug Panel and check Knowledge Graph
console.log('Step 4: Opening Debug Panel...');
// Look for debug toggle button
const debugToggle = page.locator('button').filter({ hasText: /debug/i }).first();
if (await debugToggle.isVisible({ timeout: 2000 }).catch(() => false)) {
await debugToggle.click();
await sleep(500);
}
// Click Kennisgraaf tab
const knowledgeGraphTab = page.locator('button').filter({ hasText: 'Kennisgraaf' }).first();
if (await knowledgeGraphTab.isVisible({ timeout: 2000 }).catch(() => false)) {
await knowledgeGraphTab.click();
await sleep(1000);
}
// Check for "no data" message
const noDataMessage = page.locator('text="Geen graafdata beschikbaar"');
const hasNoDataFresh = await noDataMessage.isVisible({ timeout: 2000 }).catch(() => false);
if (hasNoDataFresh) {
console.log(' ❌ FRESH RESPONSE: "No graph data available" - This should have data!');
} else {
console.log(' ✅ FRESH RESPONSE: Knowledge Graph has data');
}
console.log('');
// Step 5: Clear conversation (keep cache)
console.log('Step 5: Clearing conversation (keeping cache)...');
const newChatButton = page.locator('button').filter({ hasText: /nieuw|wis gesprek/i }).first();
if (await newChatButton.isVisible({ timeout: 2000 }).catch(() => false)) {
await newChatButton.click();
await sleep(1000);
console.log(' ✅ Conversation cleared\n');
} else {
// Try refreshing the page
await page.reload();
await page.waitForLoadState('networkidle');
console.log(' ✅ Page refreshed\n');
}
// Step 6: Submit SAME query again (should hit cache)
console.log('Step 6: Submitting same query (should hit cache)...');
consoleLogs.length = 0; // Clear console logs
await inputField.fill(TEST_QUERY);
await sendButton.click();
// Wait for cached response (should be much faster)
await page.waitForSelector('[data-role="assistant"], .message-content', { timeout: 15000 });
await sleep(2000);
// Check for cache hit in console logs
const hasCacheHit = consoleLogs.some(log => log.includes('Cache HIT'));
const hasRestoredResults = consoleLogs.some(log => log.includes('Restored') && log.includes('cached results'));
if (hasCacheHit) {
console.log(' ✅ Cache HIT detected');
} else {
console.log(' ⚠️ No cache hit detected (may be a cache miss)');
}
if (hasRestoredResults) {
console.log(' ✅ Results restored from cache for Knowledge Graph');
} else if (hasCacheHit) {
console.log(' ❌ Cache hit but NO restored results - FIX MAY NOT BE WORKING');
}
console.log('');
// Step 7: Check for Gecached badge
console.log('Step 7: Checking for cached badge...');
const cachedBadge = page.locator('text="Gecached"');
const hasCachedBadge = await cachedBadge.isVisible({ timeout: 3000 }).catch(() => false);
if (hasCachedBadge) {
console.log(' ✅ "Gecached" badge visible');
} else {
console.log(' ⚠️ "Gecached" badge not found');
}
console.log('');
// Step 8: Check Knowledge Graph on cached response
console.log('Step 8: Checking Knowledge Graph on CACHED response...');
// Ensure debug panel is open and on Kennisgraaf tab
if (await debugToggle.isVisible({ timeout: 1000 }).catch(() => false)) {
await debugToggle.click();
await sleep(500);
}
if (await knowledgeGraphTab.isVisible({ timeout: 1000 }).catch(() => false)) {
await knowledgeGraphTab.click();
await sleep(1000);
}
// THE KEY TEST: Check for "no data" message on cached response
const hasNoDataCached = await noDataMessage.isVisible({ timeout: 2000 }).catch(() => false);
console.log('');
console.log('═══════════════════════════════════════════════════════════');
console.log(' TEST RESULTS ');
console.log('═══════════════════════════════════════════════════════════');
if (hasNoDataCached) {
console.log('');
console.log(' ❌ FAILED: Cached response shows "Geen graafdata beschikbaar"');
console.log('');
console.log(' The Knowledge Graph cache fix is NOT working correctly.');
console.log(' Check that:');
console.log(' 1. retrievedResults is being stored in cache');
console.log(' 2. setDebugResults() is called on cache hit');
console.log(' 3. The deployed build includes the latest changes');
console.log('');
} else {
console.log('');
console.log(' ✅ PASSED: Cached response shows Knowledge Graph data!');
console.log('');
console.log(' The Knowledge Graph cache fix is working correctly.');
console.log('');
}
console.log('═══════════════════════════════════════════════════════════');
console.log('');
// Print relevant console logs
console.log('Relevant browser console logs:');
consoleLogs
.filter(log =>
log.includes('[ChatPage]') ||
log.includes('Knowledge Graph') ||
log.includes('extractGraphData') ||
log.includes('graphData')
)
.forEach(log => console.log(` ${log}`));
// Keep browser open for manual inspection
console.log('\n📌 Browser will stay open for 30 seconds for manual inspection...');
await sleep(30000);
} catch (error) {
console.error('❌ Test failed with error:', error.message);
} finally {
await browser.close();
}
}
runTest();

View file

@ -0,0 +1,183 @@
#!/usr/bin/env python3
"""
Knowledge Graph Cache Fix - E2E Test Script (v5)
Better console log capture and verification.
"""
import time
from playwright.sync_api import sync_playwright
BASE_URL = 'https://archief.support'
TEST_QUERY = 'Welke archieven zijn er in Den Haag?'
LOGIN_EMAIL = 'scott@bronhouder.nl'
LOGIN_PASSWORD = 'Olivi@1985'
def run_test():
print('🚀 Starting Knowledge Graph Cache Test\n')
with sync_playwright() as p:
browser = p.chromium.launch(headless=False, slow_mo=100)
context = browser.new_context()
page = context.new_page()
all_logs = []
def capture_log(msg):
text = msg.text
all_logs.append(text)
# Print important logs immediately
if any(kw in text for kw in ['ChatPage', 'Cache', 'Restored', 'extractGraph', 'KnowledgeGraph']):
print(f' 🔵 {text[:200]}')
page.on('console', capture_log)
try:
# Navigate and login
print('Step 1: Navigating and logging in...')
page.goto(BASE_URL)
page.wait_for_load_state('networkidle')
if page.locator('button:has-text("Inloggen")').is_visible(timeout=3000):
page.locator('input[type="email"]').fill(LOGIN_EMAIL)
page.locator('input[type="password"]').fill(LOGIN_PASSWORD)
page.locator('button[type="submit"]').click()
page.wait_for_url(lambda url: '/login' not in url, timeout=15000)
page.wait_for_load_state('networkidle')
time.sleep(2)
print(' ✅ Ready\n')
# FIRST QUERY
print('=' * 70)
print('FIRST QUERY - Creating cache entry')
print('=' * 70)
all_logs.clear()
input_field = page.locator('.MuiOutlinedInput-input').first
input_field.fill(TEST_QUERY)
page.locator('button[type="submit"]').first.click()
print('Waiting for response...')
page.wait_for_selector('.MuiPaper-root', timeout=120000)
time.sleep(5)
# Filter for relevant logs
chat_logs_1 = [l for l in all_logs if '[ChatPage]' in l]
print(f'\nFound {len(chat_logs_1)} ChatPage logs:')
for log in chat_logs_1:
print(f' {log[:150]}')
# Open debug panel and check KG
debug_btn = page.locator('button').filter(has_text='Debug')
kg_tab = page.locator('button, [role="tab"]').filter(has_text='Kennisgraaf')
no_data = page.locator('text="Geen graafdata beschikbaar"')
try:
debug_btn.first.click()
time.sleep(0.5)
kg_tab.first.click()
time.sleep(1)
except:
pass
has_kg_1 = not (no_data.is_visible(timeout=2000) if no_data.count() > 0 else False)
print(f'\n📊 First response KG has data: {has_kg_1}')
page.screenshot(path='/tmp/archief-kg-first.png')
# NEW CONVERSATION
print('\n' + '=' * 70)
print('SECOND QUERY - Should hit cache')
print('=' * 70)
# Start new conversation
new_btn = page.locator('button').filter(has_text='Nieuw')
try:
new_btn.first.click()
time.sleep(2)
except:
page.reload()
page.wait_for_load_state('networkidle')
time.sleep(2)
all_logs.clear()
# Submit same query
input_field = page.locator('.MuiOutlinedInput-input').first
input_field.fill(TEST_QUERY)
page.locator('button[type="submit"]').first.click()
print('Waiting for response...')
page.wait_for_selector('.MuiPaper-root', timeout=30000)
time.sleep(3)
# Get logs
chat_logs_2 = [l for l in all_logs if '[ChatPage]' in l]
print(f'\nFound {len(chat_logs_2)} ChatPage logs:')
for log in chat_logs_2:
print(f' {log[:150]}')
# Analyze
cache_hit = any('Cache HIT' in l for l in all_logs)
cache_miss = any('Cache MISS' in l for l in all_logs)
restored = any('Restored' in l for l in all_logs)
print(f'\n📊 Analysis:')
print(f' Cache HIT: {cache_hit}')
print(f' Cache MISS: {cache_miss}')
print(f' Restored: {restored}')
# Check KG on second response
try:
debug_btn.first.click()
time.sleep(0.5)
kg_tab.first.click()
time.sleep(1)
except:
pass
has_kg_2 = not (no_data.is_visible(timeout=2000) if no_data.count() > 0 else False)
print(f' Second KG: {has_kg_2}')
page.screenshot(path='/tmp/archief-kg-second.png')
# RESULTS
print('\n' + '=' * 70)
print('FINAL RESULTS')
print('=' * 70)
if cache_hit and restored:
print('\n✅✅ PERFECT: Cache hit AND results restored!')
print(' The Knowledge Graph cache fix is working correctly.')
elif cache_hit and not restored:
print('\n⚠️ WARNING: Cache hit but NO results restored')
print(' Check if retrievedResults is in the cached data.')
elif has_kg_2:
print('\n✅ PASSED: Knowledge Graph has data on cached response')
print(' (Even if cache hit not detected in logs)')
else:
print('\n❌ FAILED: Knowledge Graph shows no data on second response')
if not chat_logs_2:
print('\n⚠️ NOTE: No console logs captured. This might be because:')
print(' - The app uses a different logging mechanism')
print(' - Console logs are filtered in production build')
# Print all logs for debugging
print('\n📋 All captured logs (last 30):')
for log in all_logs[-30:]:
if len(log) < 300:
print(f' {log}')
print('\n📌 Browser stays open for 60 seconds...')
time.sleep(60)
except Exception as e:
print(f'\n❌ Error: {e}')
import traceback
traceback.print_exc()
page.screenshot(path='/tmp/archief-error.png')
finally:
browser.close()
if __name__ == '__main__':
run_test()

View file

@ -1321,8 +1321,9 @@ class MultiSourceRetriever:
_template_pipeline_instance = get_template_pipeline()
logger.info("[SPARQL] Template pipeline initialized for MultiSourceRetriever")
# Run template matching
template_result = _template_pipeline_instance(
# Run template matching in thread pool (DSPy is synchronous)
template_result = await asyncio.to_thread(
_template_pipeline_instance,
question=query,
conversation_state=None, # No conversation state in simple retriever
language="nl"
@ -2323,8 +2324,9 @@ async def generate_sparql_endpoint(request: SPARQLRequest) -> SPARQLResponse:
_template_pipeline_instance = get_template_pipeline()
logger.info("[SPARQL] Template pipeline initialized for /api/rag/sparql endpoint")
# Run template matching
template_result = _template_pipeline_instance(
# Run template matching in thread pool (DSPy is synchronous)
template_result = await asyncio.to_thread(
_template_pipeline_instance,
question=request.question,
conversation_state=None,
language=request.language
@ -3007,7 +3009,9 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
# Try template matching (this handles follow-up resolution internally)
# Note: conversation_state already contains history from request.context
template_result = template_pipeline(
# Run in thread pool to avoid blocking the event loop (DSPy is synchronous)
template_result = await asyncio.to_thread(
template_pipeline,
question=request.question,
language=request.language,
conversation_state=conversation_state,
@ -3073,33 +3077,40 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
}
# Add human-readable labels for common slot types
# Map single-letter institution type codes to Dutch/English labels
INSTITUTION_TYPE_LABELS_NL = {
"M": "musea", "L": "bibliotheken", "A": "archieven", "G": "galerijen",
"O": "overheidsinstellingen", "R": "onderzoekscentra", "C": "bedrijfsarchieven",
"U": "onbekende instellingen", "B": "botanische tuinen en dierentuinen",
"E": "onderwijsinstellingen", "S": "verenigingen", "F": "monumenten",
"I": "immaterieel erfgoedorganisaties", "X": "gemengde instellingen",
"P": "persoonlijke collecties", "H": "religieuze erfgoedinstellingen",
"D": "digitale platforms", "N": "NGO's", "T": "culinair erfgoed"
}
INSTITUTION_TYPE_LABELS_EN = {
"M": "museums", "L": "libraries", "A": "archives", "G": "galleries",
"O": "official institutions", "R": "research centers", "C": "corporate archives",
"U": "unknown institutions", "B": "botanical gardens and zoos",
"E": "educational institutions", "S": "societies", "F": "features",
"I": "intangible heritage groups", "X": "mixed institutions",
"P": "personal collections", "H": "holy sites",
"D": "digital platforms", "N": "NGOs", "T": "taste/smell heritage"
}
# Map subregion codes to human-readable names
SUBREGION_LABELS = {
"NL-DR": "Drenthe", "NL-FR": "Friesland", "NL-GE": "Gelderland",
"NL-GR": "Groningen", "NL-LI": "Limburg", "NL-NB": "Noord-Brabant",
"NL-NH": "Noord-Holland", "NL-OV": "Overijssel", "NL-UT": "Utrecht",
"NL-ZE": "Zeeland", "NL-ZH": "Zuid-Holland", "NL-FL": "Flevoland"
}
# Labels loaded from schema/reference files per Rule 41 (no hardcoding)
try:
from schema_labels import get_label_resolver
label_resolver = get_label_resolver()
INSTITUTION_TYPE_LABELS_NL = label_resolver.get_all_institution_type_labels("nl")
INSTITUTION_TYPE_LABELS_EN = label_resolver.get_all_institution_type_labels("en")
SUBREGION_LABELS = label_resolver.get_all_subregion_labels("nl")
except ImportError:
# Fallback if schema_labels module not available (shouldn't happen in prod)
logger.warning("schema_labels module not available, using inline fallback")
INSTITUTION_TYPE_LABELS_NL = {
"M": "musea", "L": "bibliotheken", "A": "archieven", "G": "galerijen",
"O": "overheidsinstellingen", "R": "onderzoekscentra", "C": "bedrijfsarchieven",
"U": "instellingen", "B": "botanische tuinen en dierentuinen",
"E": "onderwijsinstellingen", "S": "heemkundige kringen", "F": "monumenten",
"I": "immaterieel erfgoedgroepen", "X": "gecombineerde instellingen",
"P": "privéverzamelingen", "H": "religieuze erfgoedsites",
"D": "digitale platforms", "N": "erfgoedorganisaties", "T": "culinair erfgoed"
}
INSTITUTION_TYPE_LABELS_EN = {
"M": "museums", "L": "libraries", "A": "archives", "G": "galleries",
"O": "official institutions", "R": "research centers", "C": "corporate archives",
"U": "institutions", "B": "botanical gardens and zoos",
"E": "education providers", "S": "heritage societies", "F": "features",
"I": "intangible heritage groups", "X": "mixed institutions",
"P": "personal collections", "H": "holy sites",
"D": "digital platforms", "N": "heritage NGOs", "T": "taste/smell heritage"
}
SUBREGION_LABELS = {
"NL-DR": "Drenthe", "NL-FR": "Friesland", "NL-GE": "Gelderland",
"NL-GR": "Groningen", "NL-LI": "Limburg", "NL-NB": "Noord-Brabant",
"NL-NH": "Noord-Holland", "NL-OV": "Overijssel", "NL-UT": "Utrecht",
"NL-ZE": "Zeeland", "NL-ZH": "Zuid-Holland", "NL-FL": "Flevoland"
}
# Add institution_type_nl and institution_type_en labels
if "institution_type" in template_result.slots:
@ -3423,41 +3434,48 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
last_error: Exception | None = None
result = None
with dspy.settings.context(lm=lm):
for attempt in range(max_retries):
try:
# Use pipeline() instead of pipeline.forward() per DSPy 3.0 best practices
result = pipeline(
embedding_model=request.embedding_model,
question=request.question,
language=request.language,
history=history,
include_viz=request.include_visualization,
conversation_state=conversation_state, # Pass session state for template SPARQL
)
break # Success, exit retry loop
except Exception as e:
last_error = e
error_str = str(e).lower()
# Check for retryable errors (API overload, rate limits, temporary failures)
is_retryable = any(keyword in error_str for keyword in [
"overloaded", "rate_limit", "rate limit", "too many requests",
"529", "503", "502", "504", # HTTP status codes
"temporarily unavailable", "service unavailable",
"connection reset", "connection refused", "timeout"
])
if is_retryable and attempt < max_retries - 1:
wait_time = 2 ** attempt # Exponential backoff: 1s, 2s, 4s
logger.warning(
f"Transient API error (attempt {attempt + 1}/{max_retries}): {e}. "
f"Retrying in {wait_time}s..."
# Helper function to run pipeline synchronously (for asyncio.to_thread)
def run_pipeline_sync():
"""Run DSPy pipeline in sync context with retry logic."""
nonlocal last_error, result
with dspy.settings.context(lm=lm):
for attempt in range(max_retries):
try:
# Use pipeline() instead of pipeline.forward() per DSPy 3.0 best practices
return pipeline(
embedding_model=request.embedding_model,
question=request.question,
language=request.language,
history=history,
include_viz=request.include_visualization,
conversation_state=conversation_state, # Pass session state for template SPARQL
)
time.sleep(wait_time)
continue
else:
# Non-retryable error or max retries reached
raise
except Exception as e:
last_error = e
error_str = str(e).lower()
# Check for retryable errors (API overload, rate limits, temporary failures)
is_retryable = any(keyword in error_str for keyword in [
"overloaded", "rate_limit", "rate limit", "too many requests",
"529", "503", "502", "504", # HTTP status codes
"temporarily unavailable", "service unavailable",
"connection reset", "connection refused", "timeout"
])
if is_retryable and attempt < max_retries - 1:
wait_time = 2 ** attempt # Exponential backoff: 1s, 2s, 4s
logger.warning(
f"Transient API error (attempt {attempt + 1}/{max_retries}): {e}. "
f"Retrying in {wait_time}s..."
)
time.sleep(wait_time) # OK to block in thread pool
continue
else:
# Non-retryable error or max retries reached
raise
return None
# Run DSPy pipeline in thread pool to avoid blocking the event loop
result = await asyncio.to_thread(run_pipeline_sync)
# If we get here without a result (all retries exhausted), raise the last error
if result is None:

View file

@ -0,0 +1,300 @@
"""
Schema-Driven Label Loading for RAG Templates
Per Rule 41: Labels MUST be resolved at runtime from schema/reference files,
NOT hardcoded in templates or code.
This module loads multilingual labels for:
- Institution types (from CustodianType schema + InstitutionTypeCodeEnum)
- Subregions (from ISO 3166-2 JSON reference files)
- Countries (from ISO 3166-1 reference data)
Usage:
from schema_labels import get_label_resolver
resolver = get_label_resolver()
label_nl = resolver.get_institution_type_label("M", "nl") # "musea"
label_en = resolver.get_subregion_label("NL-NH", "en") # "North Holland"
"""
import json
import logging
import os
from functools import lru_cache
from pathlib import Path
from typing import Dict, Optional
import yaml
logger = logging.getLogger(__name__)
# Base paths - detect deployment location automatically
def _detect_paths():
"""
Detect correct paths for schema and reference files.
Supports two deployment scenarios:
1. Development: /Users/.../glam/backend/rag/schema_labels.py
- Schema at: /Users/.../glam/schemas/20251121/linkml/
- Reference at: /Users/.../glam/data/reference/
2. Production: /opt/glam-backend/rag/schema_labels.py
- Schema at: /opt/glam-backend/rag/schemas/20251121/linkml/ (if deployed)
- Reference at: /opt/glam-backend/rag/data/reference/
"""
script_dir = Path(__file__).parent # .../rag/
# Try different possible locations for reference data
possible_reference_paths = [
script_dir / "data" / "reference", # Production: /opt/glam-backend/rag/data/reference
script_dir.parent.parent / "data" / "reference", # Dev: /Users/.../glam/data/reference
Path("/opt/glam-backend/rag/data/reference"), # Explicit production path
]
reference_path = None
for path in possible_reference_paths:
if path.exists() and list(path.glob("iso_3166_2_*.json")):
reference_path = path
break
if reference_path is None:
# Fallback to first option even if doesn't exist (will use fallback labels)
reference_path = possible_reference_paths[0]
logger.warning(f"No reference path found with ISO 3166-2 files, using {reference_path}")
# Try different possible locations for schema
possible_schema_paths = [
script_dir / "schemas" / "20251121" / "linkml", # Production (if schemas deployed)
script_dir.parent.parent / "schemas" / "20251121" / "linkml", # Dev monorepo
Path("/opt/glam-backend/rag/schemas/20251121/linkml"), # Explicit production
]
schema_path = None
for path in possible_schema_paths:
if path.exists():
schema_path = path
break
if schema_path is None:
# Fallback - will use fallback labels for institution types
schema_path = possible_schema_paths[0]
logger.warning(f"No schema path found, using {schema_path}")
return schema_path, reference_path
SCHEMA_PATH, REFERENCE_PATH = _detect_paths()
class SchemaLabelResolver:
"""
Loads and resolves labels from schema and reference files.
Labels are loaded once at initialization and cached for performance.
"""
def __init__(
self,
schema_path: Optional[Path] = None,
reference_path: Optional[Path] = None
):
self.schema_path = schema_path or SCHEMA_PATH
self.reference_path = reference_path or REFERENCE_PATH
# Lazy-loaded label dictionaries
self._institution_type_labels: Optional[Dict[str, Dict[str, str]]] = None
self._subregion_labels: Optional[Dict[str, Dict[str, str]]] = None
self._country_labels: Optional[Dict[str, Dict[str, str]]] = None
@property
def institution_type_labels(self) -> Dict[str, Dict[str, str]]:
"""Load institution type labels from schema on first access."""
if self._institution_type_labels is None:
self._institution_type_labels = self._load_institution_type_labels()
return self._institution_type_labels
@property
def subregion_labels(self) -> Dict[str, Dict[str, str]]:
"""Load subregion labels from reference files on first access."""
if self._subregion_labels is None:
self._subregion_labels = self._load_subregion_labels()
return self._subregion_labels
def _load_institution_type_labels(self) -> Dict[str, Dict[str, str]]:
"""
Load institution type labels from InstitutionTypeCodeEnum.
Returns dict like:
{"M": {"nl": "musea", "en": "museums", "de": "Museen"}, ...}
"""
labels: Dict[str, Dict[str, str]] = {}
# Primary source: InstitutionTypeCodeEnum with descriptions
enum_path = self.schema_path / "modules" / "enums" / "InstitutionTypeCodeEnum.yaml"
# Fallback labels derived from CustodianType subclass naming
# These match the schema's glamorcubesfixphdnt_code slot
fallback_labels = {
"G": {"en": "galleries", "nl": "galerijen", "de": "Galerien"},
"L": {"en": "libraries", "nl": "bibliotheken", "de": "Bibliotheken"},
"A": {"en": "archives", "nl": "archieven", "de": "Archive"},
"M": {"en": "museums", "nl": "musea", "de": "Museen"},
"O": {"en": "official institutions", "nl": "overheidsinstellingen", "de": "Behörden"},
"R": {"en": "research centers", "nl": "onderzoekscentra", "de": "Forschungszentren"},
"C": {"en": "corporate archives", "nl": "bedrijfsarchieven", "de": "Unternehmensarchive"},
"U": {"en": "institutions", "nl": "instellingen", "de": "Einrichtungen"},
"B": {"en": "botanical gardens and zoos", "nl": "botanische tuinen en dierentuinen", "de": "botanische Gärten und Zoos"},
"E": {"en": "education providers", "nl": "onderwijsinstellingen", "de": "Bildungseinrichtungen"},
"S": {"en": "heritage societies", "nl": "heemkundige kringen", "de": "Heimatvereine"},
"F": {"en": "features", "nl": "monumenten", "de": "Denkmäler"},
"I": {"en": "intangible heritage groups", "nl": "immaterieel erfgoedgroepen", "de": "immaterielles Kulturerbe"},
"X": {"en": "mixed institutions", "nl": "gecombineerde instellingen", "de": "gemischte Einrichtungen"},
"P": {"en": "personal collections", "nl": "privéverzamelingen", "de": "Privatsammlungen"},
"H": {"en": "holy sites", "nl": "religieuze erfgoedsites", "de": "religiöse Stätten"},
"D": {"en": "digital platforms", "nl": "digitale platforms", "de": "digitale Plattformen"},
"N": {"en": "heritage NGOs", "nl": "erfgoedorganisaties", "de": "Kulturerbe-NGOs"},
"T": {"en": "taste/smell heritage", "nl": "culinair erfgoed", "de": "kulinarisches Erbe"},
}
try:
if enum_path.exists():
with open(enum_path, 'r', encoding='utf-8') as f:
enum_data = yaml.safe_load(f)
# Extract labels from enum descriptions
permissible_values = enum_data.get('enums', {}).get('InstitutionTypeCodeEnum', {}).get('permissible_values', {})
for code, value_info in permissible_values.items():
description = value_info.get('description', '')
# Use description as English label, fallback for other languages
labels[code] = {
"en": description.lower() + "s" if description else fallback_labels.get(code, {}).get("en", code),
"nl": fallback_labels.get(code, {}).get("nl", code),
"de": fallback_labels.get(code, {}).get("de", code),
}
logger.info(f"Loaded {len(labels)} institution type labels from schema")
else:
logger.warning(f"Schema file not found: {enum_path}, using fallback labels")
labels = fallback_labels
except Exception as e:
logger.error(f"Error loading institution type labels: {e}, using fallback")
labels = fallback_labels
# Ensure all codes have labels
for code in "GLAMORCUBESFIXPHDNT":
if code not in labels:
labels[code] = fallback_labels.get(code, {"en": code, "nl": code, "de": code})
return labels
def _load_subregion_labels(self) -> Dict[str, Dict[str, str]]:
"""
Load subregion labels from ISO 3166-2 JSON files.
Returns dict like:
{"NL-NH": {"nl": "Noord-Holland", "en": "North Holland"}, ...}
"""
labels: Dict[str, Dict[str, str]] = {}
# Load all iso_3166_2_*.json files
try:
for json_file in self.reference_path.glob("iso_3166_2_*.json"):
country_code = json_file.stem.replace("iso_3166_2_", "").upper()
with open(json_file, 'r', encoding='utf-8') as f:
data = json.load(f)
provinces = data.get('provinces', {})
# Build reverse lookup: code -> names
code_to_names: Dict[str, Dict[str, str]] = {}
for name, subdivision_code in provinces.items():
full_code = f"{country_code}-{subdivision_code}"
if full_code not in code_to_names:
code_to_names[full_code] = {}
# Detect language from name characteristics
# Dutch names often have hyphenated prefixes like "Noord-" or "Zuid-"
if any(name.startswith(prefix) for prefix in ["Noord", "Zuid", "Oost", "West"]):
code_to_names[full_code]["nl"] = name
elif name.startswith("North") or name.startswith("South"):
code_to_names[full_code]["en"] = name
else:
# Default: use for both if no language-specific version exists
if "nl" not in code_to_names[full_code]:
code_to_names[full_code]["nl"] = name
if "en" not in code_to_names[full_code]:
code_to_names[full_code]["en"] = name
labels.update(code_to_names)
logger.debug(f"Loaded {len(provinces)} subregion labels from {json_file.name}")
logger.info(f"Loaded {len(labels)} total subregion labels from reference files")
except Exception as e:
logger.error(f"Error loading subregion labels: {e}")
return labels
def get_institution_type_label(self, code: str, language: str = "en") -> str:
"""Get human-readable label for institution type code."""
labels = self.institution_type_labels.get(code, {})
return labels.get(language, labels.get("en", code))
def get_subregion_label(self, code: str, language: str = "en") -> str:
"""Get human-readable label for subregion code."""
labels = self.subregion_labels.get(code, {})
return labels.get(language, labels.get("en", code))
def get_all_institution_type_labels(self, language: str = "en") -> Dict[str, str]:
"""Get all institution type labels for a language (for template interpolation)."""
return {
code: self.get_institution_type_label(code, language)
for code in self.institution_type_labels
}
def get_all_subregion_labels(self, language: str = "en") -> Dict[str, str]:
"""Get all subregion labels for a language (for template interpolation)."""
return {
code: self.get_subregion_label(code, language)
for code in self.subregion_labels
}
# Singleton instance for efficient reuse
_label_resolver: Optional[SchemaLabelResolver] = None
def get_label_resolver(
schema_path: Optional[Path] = None,
reference_path: Optional[Path] = None
) -> SchemaLabelResolver:
"""
Get the singleton label resolver instance.
Creates a new instance if paths are specified, otherwise returns cached instance.
"""
global _label_resolver
if schema_path or reference_path or _label_resolver is None:
_label_resolver = SchemaLabelResolver(schema_path, reference_path)
return _label_resolver
# Convenience functions for common use cases
def get_institution_type_labels_nl() -> Dict[str, str]:
"""Get Dutch labels for all institution types."""
return get_label_resolver().get_all_institution_type_labels("nl")
def get_institution_type_labels_en() -> Dict[str, str]:
"""Get English labels for all institution types."""
return get_label_resolver().get_all_institution_type_labels("en")
def get_subregion_labels() -> Dict[str, str]:
"""Get default (Dutch) labels for all subregions."""
return get_label_resolver().get_all_subregion_labels("nl")

View file

@ -590,7 +590,8 @@ PREFIX org: <http://www.w3.org/ns/org#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wd: <http://www.wikidata.org/entity/>"""
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>"""
# =============================================================================
@ -806,12 +807,13 @@ class SynonymResolver:
if key not in self._subregions:
self._subregions[key] = v
# Country synonyms (merge with ontology mappings)
# Country synonyms (OVERRIDE ontology mappings - YAML synonyms use ISO codes)
# The ontology mappings have Wikidata IDs (wd:Q31) but we need ISO codes (BE)
country_synonyms = slot_types.get("country", {}).get("synonyms", {})
for k, v in country_synonyms.items():
key = k.lower().replace("_", " ")
if key not in self._countries:
self._countries[key] = v
# Always use YAML value - it has ISO codes, not Wikidata IDs
self._countries[key] = v
# Budget category synonyms
budget_synonyms = slot_types.get("budget_category", {}).get("synonyms", {})
@ -1012,6 +1014,42 @@ class SynonymResolver:
return True
return False
def is_country(self, term: str) -> bool:
"""Check if a term is a known country name.
This is used to disambiguate between city and country patterns
when both would match the same question structure.
Args:
term: Location term to check (e.g., "Belgium", "Netherlands")
Returns:
True if the term resolves to a known country, False otherwise
"""
self.load()
term_lower = term.lower().strip()
# Check if it's in our countries mapping
if term_lower in self._countries:
return True
# Check if it's already a valid ISO country code (2-letter)
if re.match(r'^[A-Z]{2}$', term.upper()):
return True
# Fuzzy match with high threshold to avoid false positives
if self._countries:
match = process.extractOne(
term_lower,
list(self._countries.keys()),
scorer=fuzz.ratio,
score_cutoff=85 # High threshold to avoid "Berlin" matching "Belgium"
)
if match:
return True
return False
# Global synonym resolver instance
@ -2546,10 +2584,10 @@ class TemplateClassifier(dspy.Module):
"""Validate a captured slot value against its expected type.
This is used to disambiguate between templates that have identical patterns
but different slot types (e.g., city vs region).
but different slot types (e.g., city vs region vs country).
Args:
slot_name: Name of the slot (e.g., "city", "region")
slot_name: Name of the slot (e.g., "city", "region", "country")
value: Captured value to validate
template_id: Template ID for context
@ -2562,10 +2600,13 @@ class TemplateClassifier(dspy.Module):
if slot_name in ("region", "subregion"):
# For region slots, check if the value is a known region
return resolver.is_region(value)
elif slot_name == "country":
# For country slots, check if the value is a known country
return resolver.is_country(value)
elif slot_name == "city":
# For city slots, check if the value is NOT a region (inverse logic)
# This helps disambiguate "Noord-Holland" (region) from "Amsterdam" (city)
return not resolver.is_region(value)
# For city slots, check if the value is NOT a region AND NOT a country
# This helps disambiguate "Noord-Holland" (region), "Belgium" (country), and "Amsterdam" (city)
return not resolver.is_region(value) and not resolver.is_country(value)
# Default: accept any value
return True
@ -2994,6 +3035,10 @@ class SlotExtractor(dspy.Module):
resolved_slots[name] = resolved or value
else:
resolved_slots[name] = value
# Ensure all slot values are strings (TemplateMatchResult.slots expects dict[str, str])
# LLM may return integers for limit/offset slots - convert them
resolved_slots = {k: str(v) if v is not None else "" for k, v in resolved_slots.items()}
return resolved_slots, detected_variant
@ -3057,11 +3102,16 @@ class TemplateInstantiator:
try:
# Add prefixes to context
# Note: limit is NOT defaulted here - each template decides via Jinja2
# whether to have a default limit or no limit at all.
# "Show all X" queries should return ALL results, not just 10.
context = {
"prefixes": SPARQL_PREFIXES,
"limit": slots.get("limit", 10),
**slots
}
# Only add limit to context if explicitly provided in slots
if "limit" in slots and slots["limit"] is not None:
context["limit"] = slots["limit"]
# Render template
jinja_template = self.env.from_string(sparql_template)

View file

@ -0,0 +1,165 @@
original_entry:
organisatie: Stichting Bloemencorso Eelde
webadres_organisatie: http://www.bloemencorso-eelde.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1919
processing_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T12:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-eelde
fetch_timestamp: '2026-01-09T12:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via systematic KIEN heritage form page extraction on 2026-01-09
- Organizes annual dahlia flower parade (bloemencorso) in Eelde on first Saturday of September
- Started in 1957, attracts approximately 90,000 visitors annually
- Features 15 competing neighborhoods building flower floats (wijken)
- Approximately 3,000 volunteers involved in organizing the event
- Runs Jong Corso Eelde youth program to involve younger generation
- Collaboration with local asylum seekers center for cultural integration
- Registered in KIEN Inventory March 2013
kien_enrichment:
kien_name: Stichting Bloemencorso Eelde
kien_url: https://www.immaterieelerfgoed.nl/nl/page/720/stichting-bloemencorso-eelde
heritage_forms:
- Bloemencorso Eelde
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorso-eelde
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
Stichting Bloemencorso Eelde organiseert het jaarlijkse Bloemencorso Eelde,
een dahlia bloemencorso die plaatsvindt op de eerste zaterdag van september.
Het corso bestaat uit praalwagens versierd met dahlia's, gebouwd door 15
deelnemende wijken uit de omgeving. De traditie begon in 1957 en is uitgegroeid
tot een groot evenement dat jaarlijks ongeveer 90.000 bezoekers trekt. De
organisatie werkt met ongeveer 3.000 vrijwilligers en heeft het programma
Jong Corso Eelde opgezet om de jongere generatie te betrekken bij deze
traditie. Er is ook samenwerking met het lokale asielzoekerscentrum voor
culturele integratie.
address:
street: Postbus 108
postal_code: 9765ZJ
city: Paterswolde
country: NL
address_type: mailing
registration_date: '2013-03-01'
registration_type: Inventory
legal_status:
legal_form: Stichting
legal_form_prefix: Stichting
original_name_with_legal_form: Stichting Bloemencorso Eelde
notes: Dutch foundation (stichting) organizational form
contact:
website: http://www.bloemencorso-eelde.nl
address:
street: Postbus 108
postal_code: 9765ZJ
city: Paterswolde
country: NL
custodian_name:
claim_type: custodian_name
claim_value: Stichting Bloemencorso Eelde
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/720/stichting-bloemencorso-eelde
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/720/stichting-bloemencorso-eelde
- identifier_scheme: GHCID
identifier_value: NL-DR-EEL-I-SBE
- identifier_scheme: GHCID_UUID
identifier_value: f1336996-aff5-5933-b48d-bb34d68aa849
identifier_url: urn:uuid:f1336996-aff5-5933-b48d-bb34d68aa849
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 122e103a-f325-8eb6-9468-a29d89e1e8e8
identifier_url: urn:uuid:122e103a-f325-8eb6-9468-a29d89e1e8e8
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1310002386984865462'
- identifier_scheme: RECORD_ID
identifier_value: fc09e709-c761-4990-ac19-a32a671e7501
identifier_url: urn:uuid:fc09e709-c761-4990-ac19-a32a671e7501
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-eelde
locations:
- city: Eelde
country: NL
latitude: 53.13583
longitude: 6.5625
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-eelde
geonames_id: 2756408
geonames_name: Eelde
feature_code: PPL
population: 6450
admin1_code: '01'
region_code: DR
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid:
ghcid_current: NL-DR-EEL-I-SBE
ghcid_original: NL-DR-EEL-I-SBE
ghcid_uuid: f1336996-aff5-5933-b48d-bb34d68aa849
ghcid_uuid_sha256: 122e103a-f325-8eb6-9468-a29d89e1e8e8
ghcid_numeric: 1310002386984865462
record_id: fc09e709-c761-4990-ac19-a32a671e7501
generation_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-DR-EEL-I-SBE
ghcid_numeric: 1310002386984865462
valid_from: '2026-01-09T12:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN systematic extraction January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2756408
geonames_name: Eelde
feature_code: PPL
population: 6450
admin1_code: '01'
region_code: DR
country_code: NL
source_coordinates:
latitude: 53.13583
longitude: 6.5625
distance_km: 0.0
geonames_id: 2756408
location:
city: Eelde
region_code: DR
country: NL
latitude: 53.13583
longitude: 6.5625
geonames_id: 2756408
geonames_name: Eelde
feature_code: PPL
normalization_timestamp: '2026-01-09T12:00:00.000000+00:00'
digital_platforms:
- platform_name: Bloemencorso Eelde Website
platform_url: http://www.bloemencorso-eelde.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,145 @@
original_entry:
organisatie: Stichting Carbidschieten Drenthe
webadres_organisatie: http://www.carbidschietendrenthe.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1893
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/791/stichting-carbidschieten-drenthe
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- phone
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Carbidschieten in Drenthe (Carbide shooting) intangible heritage tradition
- Organization focuses on preserving and promoting safe carbide shooting traditions
kien_enrichment:
kien_name: Stichting Carbidschieten Drenthe
kien_url: https://www.immaterieelerfgoed.nl/nl/page/791/stichting-carbidschieten-drenthe
heritage_forms:
- Carbidschieten in Drenthe
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/carbidschieten
registration_date: null
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: "Jos\xE9 Reinholtd"
involvement: Het doel van de stichting Carbidschieten Drenthe is het behoud, levendig
en in standhouden van de traditie carbidschieten in Drenthe voor toekomstige generaties.
Plaatsing op de Nationale lijst voor Immaterieel erfgoed speelt hierin een belangrijke
rol. Naast dit doel willen we graag een platform zijn voor personen en instanties
die zich inzetten voor- en actief deelnemen aan het carbidschieten.
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Carbidschieten Drenthe
contact:
phone: '0528362255'
phone_mobile: '0643275616'
website: http://www.carbidschietendrenthe.nl
address: Blankvoorn 8, 7908VA Hoogeveen, Drenthe
custodian_name:
claim_type: custodian_name
claim_value: Carbidschieten Drenthe
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/791/stichting-carbidschieten-drenthe
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/791/stichting-carbidschieten-drenthe
- identifier_scheme: GHCID
identifier_value: NL-DR-HOO-I-SCD
- identifier_scheme: GHCID_UUID
identifier_value: c6670309-4846-5699-8e85-3de7e3cc9b6d
identifier_url: urn:uuid:c6670309-4846-5699-8e85-3de7e3cc9b6d
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 49e9ba2f-5b7c-8370-8c52-2dc4da0dd512
identifier_url: urn:uuid:49e9ba2f-5b7c-8370-8c52-2dc4da0dd512
- identifier_scheme: GHCID_NUMERIC
identifier_value: '5325992746903405424'
- identifier_scheme: RECORD_ID
identifier_value: c3badb18-b4a5-4f85-8e05-db8926118e6f
identifier_url: urn:uuid:c3badb18-b4a5-4f85-8e05-db8926118e6f
safeguards:
- https://nde.nl/ontology/hc/heritage-form/carbidschieten-in-drenthe
locations:
- city: Hoogeveen
country: NL
latitude: 52.7225
longitude: 6.47639
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/791/stichting-carbidschieten-drenthe
geonames_id: 2753719
geonames_name: Hoogeveen
feature_code: PPL
population: 38754
admin1_code: '01'
region_code: DR
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-DR-HOO-I-SCD
ghcid_original: NL-DR-HOO-I-SCD
ghcid_uuid: c6670309-4846-5699-8e85-3de7e3cc9b6d
ghcid_uuid_sha256: 49e9ba2f-5b7c-8370-8c52-2dc4da0dd512
ghcid_numeric: 5325992746903405424
record_id: c3badb18-b4a5-4f85-8e05-db8926118e6f
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-DR-HOO-I-SCD
ghcid_numeric: 5325992746903405424
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2753719
geonames_name: Hoogeveen
feature_code: PPL
population: 38754
admin1_code: '01'
region_code: DR
country_code: NL
source_coordinates:
latitude: 52.7225
longitude: 6.47639
distance_km: 0.0
geonames_id: 2753719
location:
city: Hoogeveen
region_code: DR
country: NL
latitude: 52.7225
longitude: 6.47639
geonames_id: 2753719
geonames_name: Hoogeveen
feature_code: PPL
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Carbidschieten Drenthe Website
platform_url: http://www.carbidschietendrenthe.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -65,6 +65,8 @@ provenance:
Paardenreddingboot Ameland' - matched place 'Ameland' (NAME_EXTRACTION_HARDCODED)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:52Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:08Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-FR-NES-I-AMPA -> NL-FR-AME-I-AMPA'
kien_enrichment:
kien_name: Stichting Amelander Musea en Stichting Paardenreddingboot Ameland
kien_url: https://www.immaterieelerfgoed.nl/nl/page/19795/stichting-amelander-musea-en-stichting-paardenreddingboot-ameland
@ -87,15 +89,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/19795/stichting-amelander-musea-en-stichting-paardenreddingboot-ameland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/19795/stichting-amelander-musea-en-stichting-paardenreddingboot-ameland
- identifier_scheme: GHCID
identifier_value: NL-FR-NES-I-AMPA
identifier_value: NL-FR-AME-I-AMPA
- identifier_scheme: GHCID_UUID
identifier_value: 6a906f12-7b3d-5bdc-be0e-f555a413ccad
identifier_url: urn:uuid:6a906f12-7b3d-5bdc-be0e-f555a413ccad
identifier_value: d9951935-e843-5174-adbc-6fcf1b9941ee
identifier_url: urn:uuid:d9951935-e843-5174-adbc-6fcf1b9941ee
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 152ac604-e495-87e1-adef-e30f7d5362d0
identifier_url: urn:uuid:152ac604-e495-87e1-adef-e30f7d5362d0
identifier_value: 2b46eeb1-b2ee-8ee1-b1ff-9cf811ba8132
identifier_url: urn:uuid:2b46eeb1-b2ee-8ee1-b1ff-9cf811ba8132
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1525249148135491553'
identifier_value: '3118442238979256033'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-7742-933b-005a7f3c8bdc
identifier_url: urn:uuid:019aede0-6f29-7742-933b-005a7f3c8bdc
@ -114,33 +116,34 @@ location_resolution:
region_code: FR
extraction_timestamp: '2025-12-05T09:38:08.499110+00:00'
ghcid:
ghcid_current: NL-FR-NES-I-AMPA
ghcid_current: NL-FR-AME-I-AMPA
ghcid_original: NL-FR-NES-I-AMPA
ghcid_uuid: 6a906f12-7b3d-5bdc-be0e-f555a413ccad
ghcid_uuid_sha256: 152ac604-e495-87e1-adef-e30f7d5362d0
ghcid_numeric: 1525249148135491553
ghcid_uuid: d9951935-e843-5174-adbc-6fcf1b9941ee
ghcid_uuid_sha256: 2b46eeb1-b2ee-8ee1-b1ff-9cf811ba8132
ghcid_numeric: 3118442238979256033
record_id: 019aede0-6f29-7742-933b-005a7f3c8bdc
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-FR-NES-I-AMPA
ghcid_numeric: 1525249148135491553
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-FR-AME-I-AMPA
ghcid_numeric: 3118442238979256033
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-FR-NES-I-AMPA to NL-FR-AME-I-AMPA'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2750417
geonames_name: Nes
method: GEONAMES_LOOKUP
geonames_id: 2753887
geonames_name: Hollum
feature_code: PPL
population: 1140
population: 1160
admin1_code: '02'
region_code: FR
country_code: NL
source_coordinates:
latitude: 53.45
longitude: 5.75
distance_km: 2.720746538801514
geonames_id: 2750417
geonames_id: 2753887
google_maps_enrichment:
place_id: ChIJQaBBarsQyUcRraeqm1HuZtg
name: Stichting Paardenreddingboot Ameland
@ -256,21 +259,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 53.443047799999995
longitude: 5.636914
latitude: 53.4394
longitude: 5.63805
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:35.454926+00:00'
entity_id: ChIJQaBBarsQyUcRraeqm1HuZtg
city: Nes
city: Hollum
region_code: FR
country: NL
formatted_address: Oranjeweg 18, 9161 CC Hollum, Netherlands
geonames_id: 2750417
geonames_name: Nes
geonames_id: 2753887
geonames_name: Hollum
feature_code: PPL
normalization_timestamp: '2025-12-09T07:00:08.111533+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
firecrawl_enrichment:
fetch_timestamp: '2025-12-14T16:51:10.943558+00:00'
source_url: https://www.amelandermusea.nl

View file

@ -0,0 +1,151 @@
original_entry:
organisatie: Sintrale Kommisje Skutsjesilen
webadres_organisatie: https://www.skutsjesilen.nl/
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1917
processing_timestamp: '2026-01-08T23:45:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:45:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/skutjesilen
fetch_timestamp: '2026-01-08T23:45:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards SKS kampioenschap Skutsjesilen (historic Frisian sailing competition)
- Competition uses skutsjes - traditional Frisian cargo ships built between 1900-1931
- Championship consists of 11 races over 2 weeks
- Attracts approximately 400,000 spectators annually
- Registered in KIEN Network August 2019
- Registered in KIEN Inventory April 2021
- Name in West Frisian language (Sintrale Kommisje = Central Committee)
kien_enrichment:
kien_name: Sintrale Kommisje Skutsjesilen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/4667/sintrale-kommisje-skutsjesilen
heritage_forms:
- SKS kampioenschap Skutsjesilen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/skutjesilen
enrichment_timestamp: '2026-01-08T23:45:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
De Sintrale Kommisje Skutsjesilen (SKS) organiseert het jaarlijkse SKS kampioenschap
Skutsjesilen, een historische zeilwedstrijd met skutsjes - traditionele Friese
vrachtschepen gebouwd tussen 1900 en 1931. Het kampioenschap bestaat uit 11 wedstrijden
verspreid over twee weken en trekt jaarlijks ongeveer 400.000 toeschouwers. De
skutsjes waren oorspronkelijk ontworpen voor goederenvervoer over de Friese meren
en kanalen. Na het verdwijnen van het vrachtvervoer per schip werden de skutsjes
behouden voor de wedstrijdsport, die een belangrijke Friese traditie is geworden.
Het skutsjesilen vertegenwoordigt de maritieme erfgoed van Friesland en de gemeenschapsbanden
rond de watersport.
legal_status:
legal_form: Kommisje
legal_form_prefix: Sintrale Kommisje
original_name_with_legal_form: Sintrale Kommisje Skutsjesilen
notes: West Frisian organizational form (Kommisje = Committee)
contact:
website: https://www.skutsjesilen.nl/
custodian_name:
claim_type: custodian_name
claim_value: Sintrale Kommisje Skutsjesilen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:45:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4667/sintrale-kommisje-skutsjesilen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4667/sintrale-kommisje-skutsjesilen
- identifier_scheme: GHCID
identifier_value: NL-FR-DRA-I-SKS
- identifier_scheme: GHCID_UUID
identifier_value: 72ec315a-ffc7-5efb-9f68-fbac80020f06
identifier_url: urn:uuid:72ec315a-ffc7-5efb-9f68-fbac80020f06
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 49e804b2-9ad4-822b-a914-5886678cf751
identifier_url: urn:uuid:49e804b2-9ad4-822b-a914-5886678cf751
- identifier_scheme: GHCID_NUMERIC
identifier_value: '5325511724513890859'
- identifier_scheme: RECORD_ID
identifier_value: 845f840c-0ca0-485b-95fd-ae6b2d216e72
identifier_url: urn:uuid:845f840c-0ca0-485b-95fd-ae6b2d216e72
safeguards:
- https://nde.nl/ontology/hc/heritage-form/sks-kampioenschap-skutsjesilen
locations:
- city: Drachten
country: NL
latitude: 53.11254
longitude: 6.0989
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/skutjesilen
geonames_id: 2756644
geonames_name: Drachten
feature_code: PPLA2
population: 45186
admin1_code: '02'
region_code: FR
extraction_timestamp: '2026-01-08T23:45:00.000000+00:00'
ghcid:
ghcid_current: NL-FR-DRA-I-SKS
ghcid_original: NL-FR-DRA-I-SKS
ghcid_uuid: 72ec315a-ffc7-5efb-9f68-fbac80020f06
ghcid_uuid_sha256: 49e804b2-9ad4-822b-a914-5886678cf751
ghcid_numeric: 5325511724513890859
record_id: 845f840c-0ca0-485b-95fd-ae6b2d216e72
generation_timestamp: '2026-01-08T23:45:00.000000+00:00'
ghcid_history:
- ghcid: NL-FR-DRA-I-SKS
ghcid_numeric: 5325511724513890859
valid_from: '2026-01-08T23:45:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2756644
geonames_name: Drachten
feature_code: PPLA2
population: 45186
admin1_code: '02'
region_code: FR
country_code: NL
source_coordinates:
latitude: 53.11254
longitude: 6.0989
distance_km: 0.0
geonames_id: 2756644
location:
city: Drachten
region_code: FR
country: NL
latitude: 53.11254
longitude: 6.0989
geonames_id: 2756644
geonames_name: Drachten
feature_code: PPLA2
normalization_timestamp: '2026-01-08T23:45:00.000000+00:00'
digital_platforms:
- platform_name: SKS Skutsjesilen Website
platform_url: https://www.skutsjesilen.nl/
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:45:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,143 @@
original_entry:
organisatie: Stichting Behoud Immaterieel Erfgoed Hindeloopen
webadres_organisatie: http://www.immaterieelerfgoedhindeloopen.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1898
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/752/stichting-tot-behoud-van-immaterieel-erfgoed-hindeloopen
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
- founding_date
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Hindelooper cultuur (The culture of Hindeloopen) intangible heritage tradition
- Foundation for preservation of intangible heritage of Hindeloopen
- Added to inventory September 2013
- Founded in 2011
kien_enrichment:
kien_name: Stichting tot behoud van immaterieel erfgoed Hindeloopen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/752/stichting-tot-behoud-van-immaterieel-erfgoed-hindeloopen
heritage_forms:
- Hindelooper cultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/hindeloopercultuur
registration_date: '2013-09'
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: null
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Behoud Immaterieel Erfgoed Hindeloopen
founding_year: 2011
contact:
email: null
website: http://www.immaterieelerfgoedhindeloopen.nl
address: Oude Weide 22, 8713 KX Hindeloopen, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Behoud Immaterieel Erfgoed Hindeloopen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/752/stichting-tot-behoud-van-immaterieel-erfgoed-hindeloopen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/752/stichting-tot-behoud-van-immaterieel-erfgoed-hindeloopen
- identifier_scheme: GHCID
identifier_value: NL-FR-HIN-I-SBIEH
- identifier_scheme: GHCID_UUID
identifier_value: 099b27de-b521-5307-a71d-a1b06beb5065
identifier_url: urn:uuid:099b27de-b521-5307-a71d-a1b06beb5065
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 633a0f96-c2ae-83ac-a862-1c749ec87ea3
identifier_url: urn:uuid:633a0f96-c2ae-83ac-a862-1c749ec87ea3
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7150044498589799340'
- identifier_scheme: RECORD_ID
identifier_value: 31f68e97-60e0-47cc-81f6-8b26eaff4eca
identifier_url: urn:uuid:31f68e97-60e0-47cc-81f6-8b26eaff4eca
safeguards:
- https://nde.nl/ontology/hc/heritage-form/hindelooper-cultuur
locations:
- city: Hindeloopen
country: NL
latitude: 52.94212
longitude: 5.40081
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/752/stichting-tot-behoud-van-immaterieel-erfgoed-hindeloopen
geonames_id: 2754059
geonames_name: Hindeloopen
feature_code: PPL
population: 810
admin1_code: '02'
region_code: FR
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-FR-HIN-I-SBIEH
ghcid_original: NL-FR-HIN-I-SBIEH
ghcid_uuid: 099b27de-b521-5307-a71d-a1b06beb5065
ghcid_uuid_sha256: 633a0f96-c2ae-83ac-a862-1c749ec87ea3
ghcid_numeric: 7150044498589799340
record_id: 31f68e97-60e0-47cc-81f6-8b26eaff4eca
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-FR-HIN-I-SBIEH
ghcid_numeric: 7150044498589799340
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2754059
geonames_name: Hindeloopen
feature_code: PPL
population: 810
admin1_code: '02'
region_code: FR
country_code: NL
source_coordinates:
latitude: 52.94212
longitude: 5.40081
distance_km: 0.0
geonames_id: 2754059
location:
city: Hindeloopen
region_code: FR
country: NL
latitude: 52.94212
longitude: 5.40081
geonames_id: 2754059
geonames_name: Hindeloopen
feature_code: PPL
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Behoud Immaterieel Erfgoed Hindeloopen Website
platform_url: http://www.immaterieelerfgoedhindeloopen.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -54,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.266822+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-BFVB -> NL-FR-LEE-I-BFVB'
kien_enrichment:
kien_name: Bond Friese VogelWachten (BFVW)
kien_url: https://www.immaterieelerfgoed.nl/nl/page/11548/bond-friese-vogelwachten-bfvw
@ -83,44 +85,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/11548/bond-friese-vogelwachten-bfvw
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/11548/bond-friese-vogelwachten-bfvw
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-BFVB
identifier_value: NL-FR-LEE-I-BFVB
- identifier_scheme: GHCID_UUID
identifier_value: ea7354fe-7cc5-5825-92bb-cbe9bb7b1b8b
identifier_url: urn:uuid:ea7354fe-7cc5-5825-92bb-cbe9bb7b1b8b
identifier_value: b50a7cd3-d148-5229-a206-976d57068d5a
identifier_url: urn:uuid:b50a7cd3-d148-5229-a206-976d57068d5a
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2108792b-97ef-8159-ae2d-52d0e6563187
identifier_url: urn:uuid:2108792b-97ef-8159-ae2d-52d0e6563187
identifier_value: 5456a1ce-124d-8eba-885f-83922c67f8cd
identifier_url: urn:uuid:5456a1ce-124d-8eba-885f-83922c67f8cd
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2380285631204893017'
identifier_value: '6077222653625450170'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7dff-997d-62d0f53e680a
identifier_url: urn:uuid:019aedca-642e-7dff-997d-62d0f53e680a
safeguards:
- https://nde.nl/ontology/hc/heritage-form/aaisykje
ghcid:
ghcid_current: NL-GE-ARN-I-BFVB
ghcid_current: NL-FR-LEE-I-BFVB
ghcid_original: NL-GE-ARN-I-BFVB
ghcid_uuid: ea7354fe-7cc5-5825-92bb-cbe9bb7b1b8b
ghcid_uuid_sha256: 2108792b-97ef-8159-ae2d-52d0e6563187
ghcid_numeric: 2380285631204893017
ghcid_uuid: b50a7cd3-d148-5229-a206-976d57068d5a
ghcid_uuid_sha256: 5456a1ce-124d-8eba-885f-83922c67f8cd
ghcid_numeric: 6077222653625450170
record_id: 019aedca-642e-7dff-997d-62d0f53e680a
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-BFVB
ghcid_numeric: 2380285631204893017
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-FR-LEE-I-BFVB
ghcid_numeric: 6077222653625450170
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-BFVB to NL-FR-LEE-I-BFVB'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
method: GEONAMES_LOOKUP
geonames_id: 2751792
geonames_name: Leeuwarden
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
population: 124481
admin1_code: '02'
region_code: FR
country_code: NL
geonames_id: 2759661
geonames_id: 2751792
digital_platforms:
- platform_name: Bond Friese VogelWachten (BFVW) Website
platform_url: http://www.friesevogelwachten.nl
@ -299,21 +306,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 53.1105807
longitude: 5.687174
latitude: 53.20271
longitude: 5.80973
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:40.951633+00:00'
entity_id: ChIJsw9vC8L6yEcRys3URNTqPNY
city: Arnhem
region_code: GE
city: Leeuwarden
region_code: FR
country: NL
formatted_address: Labadistendyk 2, 8637 VJ Wiuwert, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
geonames_id: 2751792
geonames_name: Leeuwarden
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.332415+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:26:54.796720+00:00'
retrieval_agent: crawl4ai

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T17:22:05.834356+00:00'
search_query: '"Friesche vogelvangersbelang" Arnhem opgericht OR gesticht OR sinds'
search_query: '"Friesche vogelvangersbelang" Arnhem opgericht OR gesticht OR
sinds'
source_urls:
- https://vogelwerkgroeparnhem.nl/
- https://www.vogelbescherming.nl/actueel/bericht/henk-van-der-jeugd-van-het-vogeltrekstation-leeft-in-de-gouden-eeuw-van-het-vogelonderzoek
@ -53,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.377070+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-FV -> NL-FR-LEE-I-FV'
kien_enrichment:
kien_name: Friesche vogelvangersbelang
kien_url: https://www.immaterieelerfgoed.nl/nl/page/12973/friesche-vogelvangersbelang
@ -77,49 +80,55 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/12973/friesche-vogelvangersbelang
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/12973/friesche-vogelvangersbelang
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-FV
identifier_value: NL-FR-LEE-I-FV
- identifier_scheme: GHCID_UUID
identifier_value: 1019563a-4c9b-5952-86a9-8526edae68c6
identifier_url: urn:uuid:1019563a-4c9b-5952-86a9-8526edae68c6
identifier_value: 50bd8c91-130c-5ce8-b7d6-e0ac2dcb92aa
identifier_url: urn:uuid:50bd8c91-130c-5ce8-b7d6-e0ac2dcb92aa
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 66e55f2a-d540-81d9-b06f-fdb2108697c3
identifier_url: urn:uuid:66e55f2a-d540-81d9-b06f-fdb2108697c3
identifier_value: 1ecb34ed-81b5-8a17-b3ec-bb9e35180b2a
identifier_url: urn:uuid:1ecb34ed-81b5-8a17-b3ec-bb9e35180b2a
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7414436999106417113'
identifier_value: '2218925436098181655'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-79d9-9d73-6ac9b068b42b
identifier_url: urn:uuid:019aedca-642e-79d9-9d73-6ac9b068b42b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/wilsterflappen
ghcid:
ghcid_current: NL-GE-ARN-I-FV
ghcid_current: NL-FR-LEE-I-FV
ghcid_original: NL-GE-ARN-I-FV
ghcid_uuid: 1019563a-4c9b-5952-86a9-8526edae68c6
ghcid_uuid_sha256: 66e55f2a-d540-81d9-b06f-fdb2108697c3
ghcid_numeric: 7414436999106417113
ghcid_uuid: 50bd8c91-130c-5ce8-b7d6-e0ac2dcb92aa
ghcid_uuid_sha256: 1ecb34ed-81b5-8a17-b3ec-bb9e35180b2a
ghcid_numeric: 2218925436098181655
record_id: 019aedca-642e-79d9-9d73-6ac9b068b42b
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-FV
ghcid_numeric: 7414436999106417113
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-FR-LEE-I-FV
ghcid_numeric: 2218925436098181655
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-FV to NL-FR-LEE-I-FV'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
method: GEONAMES_LOOKUP
geonames_id: 2751792
geonames_name: Leeuwarden
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
population: 124481
admin1_code: '02'
region_code: FR
country_code: NL
geonames_id: 2759661
geonames_id: 2751792
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Vogelwacht St. Johannesga-Rotsterhaule e.o." (bird watch group - different organization
(watchers vs catchers)) instead of "Friesche vogelvangersbelang" (Frisian bird catchers association). Per Rule 40: KIEN
is authoritative for Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Vogelwacht St. Johannesga-Rotsterhaule
e.o." (bird watch group - different organization (watchers vs catchers)) instead
of "Friesche vogelvangersbelang" (Frisian bird catchers association). Per Rule
40: KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJX9VX8Y9fyEcRfmhRY9611fo
name: Vogelwacht St. Johannesga-Rotsterhaule e.o.
@ -161,9 +170,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: '739'
uuid: 46eedc7a-a087-55dc-b552-49d7cac966a2
name_en: Schokland and Surroundings
@ -180,10 +191,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
@ -200,11 +213,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_id: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -221,11 +236,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_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -238,9 +255,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
@ -248,8 +267,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
@ -258,9 +278,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
@ -268,8 +290,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
@ -278,25 +301,26 @@ 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...
location:
latitude: 52.9337025
longitude: 5.8558935
latitude: 53.20271
longitude: 5.80973
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:47.798967+00:00'
entity_id: ChIJX9VX8Y9fyEcRfmhRY9611fo
city: Arnhem
region_code: GE
city: Leeuwarden
region_code: FR
country: NL
formatted_address: Ringfeart 29, 8464 PC Sintjohannesga, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
geonames_id: 2751792
geonames_name: Leeuwarden
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.777756+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:28:08.182570+00:00'
retrieval_agent: crawl4ai
@ -307,8 +331,9 @@ crawl4ai_enrichment:
links_count: 42
open_graph:
title: Home page
description: Erat pharetra sed at fringilla etiam nullam platea fringilla. Gravida sodales sit mauris amet massa justo.
Egestas ipsum amet tortor hendrerit amet phasellus adipiscing. Eget porta posuere pellentesque sed commodo gravida dignissim
description: Erat pharetra sed at fringilla etiam nullam platea fringilla. Gravida
sodales sit mauris amet massa justo. Egestas ipsum amet tortor hendrerit amet
phasellus adipiscing. Eget porta posuere pellentesque sed commodo gravida dignissim
dignissim iaculis. Elementum nibh duis at in.
url: https://st-johannesga-rotsterhaule.friesevogelwachten.nl/nl
site_name: Firmaq Media

View file

@ -54,6 +54,8 @@ provenance:
place 'Sint Nicolaasga' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:54Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:13Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-FR-SNX-I-CL -> NL-FR-SNI-I-CL'
kien_enrichment:
kien_name: Stichting Comité Lanenkaatsen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/13311/stichting-comit%C3%A9-lanenkaatsen
@ -75,15 +77,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/13311/stichting-comit%C3%A9-lanenkaatsen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/13311/stichting-comit%C3%A9-lanenkaatsen
- identifier_scheme: GHCID
identifier_value: NL-FR-SNX-I-CL
identifier_value: NL-FR-SNI-I-CL
- identifier_scheme: GHCID_UUID
identifier_value: 1f9deca2-967a-5d40-b388-5b5cba3845fa
identifier_url: urn:uuid:1f9deca2-967a-5d40-b388-5b5cba3845fa
identifier_value: bf8473e2-68cf-5a2c-87d4-41e0f9f5afbb
identifier_url: urn:uuid:bf8473e2-68cf-5a2c-87d4-41e0f9f5afbb
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2c97b143-280f-8e33-8067-24389fa7841d
identifier_url: urn:uuid:2c97b143-280f-8e33-8067-24389fa7841d
identifier_value: 5c9e6305-29f3-8024-829c-338daf0405bd
identifier_url: urn:uuid:5c9e6305-29f3-8024-829c-338daf0405bd
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3213231761145138739'
identifier_value: '6673880571639455780'
- identifier_scheme: RECORD_ID
identifier_value: 019aede6-0403-71e7-8a0c-af7529dd60be
identifier_url: urn:uuid:019aede6-0403-71e7-8a0c-af7529dd60be
@ -113,21 +115,26 @@ digital_platforms:
enrichment_timestamp: '2025-12-05T14:00:00+00:00'
enrichment_source: manual_curation
ghcid:
ghcid_current: NL-FR-SNX-I-CL
ghcid_current: NL-FR-SNI-I-CL
ghcid_original: NL-FR-SNX-I-CL
ghcid_uuid: 1f9deca2-967a-5d40-b388-5b5cba3845fa
ghcid_uuid_sha256: 2c97b143-280f-8e33-8067-24389fa7841d
ghcid_numeric: 3213231761145138739
ghcid_uuid: bf8473e2-68cf-5a2c-87d4-41e0f9f5afbb
ghcid_uuid_sha256: 5c9e6305-29f3-8024-829c-338daf0405bd
ghcid_numeric: 6673880571639455780
record_id: 019aede6-0403-71e7-8a0c-af7529dd60be
generation_timestamp: '2025-12-05T09:44:25.062117+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-FR-SNX-I-CL
ghcid_numeric: 3213231761145138739
valid_from: '2025-12-05T09:44:25.062117+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-FR-SNI-I-CL
ghcid_numeric: 6673880571639455780
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-FR-SNX-I-CL to NL-FR-SNI-I-CL'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747231
geonames_name: Sint Nicolaasga
feature_code: PPL
@ -135,10 +142,6 @@ ghcid:
admin1_code: '02'
region_code: FR
country_code: NL
source_coordinates:
latitude: 52.92293
longitude: 5.74242
distance_km: 0.0
geonames_id: 2747231
google_maps_enrichment:
api_status: NOT_FOUND
@ -224,7 +227,7 @@ location:
geonames_id: 2747231
geonames_name: Sint Nicolaasga
feature_code: PPL
normalization_timestamp: '2025-12-09T07:00:13.600153+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -0,0 +1,136 @@
original_entry:
organisatie: Stichting Klompkezeilen
webadres_organisatie: https://zeilvaartcollegeworkum.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1880
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/strontweek
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN batch import January 2026
- Safeguards Klompkezeilen (clog sailing) intangible heritage tradition, part of Strontweek
- Klompkezeilen is a traditional Frisian sailing competition using small boats called skutsjes
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Klompkezeilen
kien_enrichment:
kien_name: Stichting Klompkezeilen
kien_url: https://www.immaterieelerfgoed.nl/nl/strontweek
heritage_forms:
- Klompkezeilen
- Strontweek
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/strontweek
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
notes: Klompkezeilen is part of the annual Strontweek (Manure Week) festival in Workum, Friesland
contact:
website: https://zeilvaartcollegeworkum.nl
custodian_name:
claim_type: custodian_name
claim_value: Klompkezeilen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/strontweek
identifier_url: https://www.immaterieelerfgoed.nl/nl/strontweek
- identifier_scheme: GHCID
identifier_value: NL-FR-WOR-I-SK
- identifier_scheme: GHCID_UUID
identifier_value: b7112222-5a5a-547f-89c3-4012b69ba111
identifier_url: urn:uuid:b7112222-5a5a-547f-89c3-4012b69ba111
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: a71d13c2-2815-89be-adf8-0b4d31f66b2e
identifier_url: urn:uuid:a71d13c2-2815-89be-adf8-0b4d31f66b2e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12041802703275669950'
- identifier_scheme: RECORD_ID
identifier_value: 2fdfe639-1b17-481f-8c60-408263cd5eeb
identifier_url: urn:uuid:2fdfe639-1b17-481f-8c60-408263cd5eeb
safeguards:
- https://nde.nl/ontology/hc/heritage-form/klompkezeilen
- https://nde.nl/ontology/hc/heritage-form/strontweek
locations:
- city: Workum
country: NL
latitude: 52.97969
longitude: 5.4471
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/nl/strontweek
geonames_id: 2744179
geonames_name: Workum
feature_code: PPL
population: 4105
admin1_code: '02'
region_code: FR
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-FR-WOR-I-SK
ghcid_original: NL-FR-WOR-I-SK
ghcid_uuid: b7112222-5a5a-547f-89c3-4012b69ba111
ghcid_uuid_sha256: a71d13c2-2815-89be-adf8-0b4d31f66b2e
ghcid_numeric: 12041802703275669950
record_id: 2fdfe639-1b17-481f-8c60-408263cd5eeb
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-FR-WOR-I-SK
ghcid_numeric: 12041802703275669950
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2744179
geonames_name: Workum
feature_code: PPL
population: 4105
admin1_code: '02'
region_code: FR
country_code: NL
source_coordinates:
latitude: 52.97969
longitude: 5.4471
distance_km: 0.0
geonames_id: 2744179
location:
city: Workum
region_code: FR
country: NL
latitude: 52.97969
longitude: 5.4471
geonames_id: 2744179
geonames_name: Workum
feature_code: PPL
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Zeilvaart College Workum Website
platform_url: https://zeilvaartcollegeworkum.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,136 @@
original_entry:
organisatie: Stichting Indisch Netwerk
webadres_organisatie: https://www.indischerfgoed.nl/
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1899
processing_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/15142/stichting-indisch-netwerk
fetch_timestamp: '2026-01-08T21:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Foundation for preserving Dutch-Indonesian (Indisch) intangible cultural heritage
- Contact person Adrienne Zuiderweg
kien_enrichment:
kien_name: Stichting Indisch Netwerk
kien_url: https://www.immaterieelerfgoed.nl/nl/page/15142/stichting-indisch-netwerk
heritage_forms: []
heritage_form_urls: []
registration_date: null
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Adrienne Zuiderweg
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Indisch Netwerk
contact:
email: null
website: https://www.indischerfgoed.nl/
address: Apeldoorn, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Indisch Netwerk
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/15142/stichting-indisch-netwerk
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/15142/stichting-indisch-netwerk
- identifier_scheme: GHCID
identifier_value: NL-GE-APE-I-SIN
- identifier_scheme: GHCID_UUID
identifier_value: de719e77-1164-58ba-9455-fef52925a4bb
identifier_url: urn:uuid:de719e77-1164-58ba-9455-fef52925a4bb
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: fd273169-d0b4-86c6-96e5-805030f3a6a0
identifier_url: urn:uuid:fd273169-d0b4-86c6-96e5-805030f3a6a0
- identifier_scheme: GHCID_NUMERIC
identifier_value: '18241603146230314694'
- identifier_scheme: RECORD_ID
identifier_value: b46eed20-2bf7-49a9-a15c-a1fcce75c2a9
identifier_url: urn:uuid:b46eed20-2bf7-49a9-a15c-a1fcce75c2a9
safeguards:
- https://nde.nl/ontology/hc/heritage-form/indisch-erfgoed
locations:
- city: Apeldoorn
country: NL
latitude: 52.21
longitude: 5.96944
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/15142/stichting-indisch-netwerk
geonames_id: 2759706
geonames_name: Apeldoorn
feature_code: PPL
population: 136670
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-APE-I-SIN
ghcid_original: NL-GE-APE-I-SIN
ghcid_uuid: de719e77-1164-58ba-9455-fef52925a4bb
ghcid_uuid_sha256: fd273169-d0b4-86c6-96e5-805030f3a6a0
ghcid_numeric: 18241603146230314694
record_id: b46eed20-2bf7-49a9-a15c-a1fcce75c2a9
generation_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-APE-I-SIN
ghcid_numeric: 18241603146230314694
valid_from: '2026-01-08T21:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759706
geonames_name: Apeldoorn
feature_code: PPL
population: 136670
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 52.21
longitude: 5.96944
distance_km: 0.0
geonames_id: 2759706
location:
city: Apeldoorn
region_code: GE
country: NL
latitude: 52.21
longitude: 5.96944
geonames_id: 2759706
geonames_name: Apeldoorn
feature_code: PPL
normalization_timestamp: '2026-01-08T21:30:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Indisch Netwerk Website
platform_url: https://www.indischerfgoed.nl/
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -48,15 +48,17 @@ provenance:
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from organization name 'Stichting Bevordering Toerisme Didam' - matched place 'Didam'
(NAME_EXTRACTION_GEONAMES)
- Location extracted from organization name 'Stichting Bevordering Toerisme Didam'
- matched place 'Didam' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:16:15Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:01:13Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-LOI-I-BTD -> NL-GE-DID-I-BTD'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Oudheidkundige Vereniging
Didam" (ovd-didam.nl) instead of "Bevordering Toerisme Didam" (schuttersbogenroutedidam.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Oudheidkundige
Vereniging Didam" (ovd-didam.nl) instead of "Bevordering Toerisme Didam" (schuttersbogenroutedidam.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Stichting Bevordering Toerisme Didam
@ -81,15 +83,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2478/stichting-bevordering-toerisme-didam
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2478/stichting-bevordering-toerisme-didam
- identifier_scheme: GHCID
identifier_value: NL-GE-LOI-I-BTD
identifier_value: NL-GE-DID-I-BTD
- identifier_scheme: GHCID_UUID
identifier_value: 2e58395f-8319-5531-af26-ac796dc45ebc
identifier_url: urn:uuid:2e58395f-8319-5531-af26-ac796dc45ebc
identifier_value: 80bb938d-8787-59bf-bee5-b47915a581c3
identifier_url: urn:uuid:80bb938d-8787-59bf-bee5-b47915a581c3
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: bb6c4642-45d6-8f03-b65e-c0539c2ba1f4
identifier_url: urn:uuid:bb6c4642-45d6-8f03-b65e-c0539c2ba1f4
identifier_value: 57a04603-bf91-8eed-9fee-ebcf94aff12b
identifier_url: urn:uuid:57a04603-bf91-8eed-9fee-ebcf94aff12b
- identifier_scheme: GHCID_NUMERIC
identifier_value: '13505246633030758147'
identifier_value: '6314123659486273261'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-7746-888d-d7f463a80de2
identifier_url: urn:uuid:019aede0-6f29-7746-888d-d7f463a80de2
@ -111,33 +113,34 @@ location_resolution:
region_code: GE
extraction_timestamp: '2025-12-05T09:38:08.549924+00:00'
ghcid:
ghcid_current: NL-GE-LOI-I-BTD
ghcid_current: NL-GE-DID-I-BTD
ghcid_original: NL-GE-LOI-I-BTD
ghcid_uuid: 2e58395f-8319-5531-af26-ac796dc45ebc
ghcid_uuid_sha256: bb6c4642-45d6-8f03-b65e-c0539c2ba1f4
ghcid_numeric: 13505246633030758147
ghcid_uuid: 80bb938d-8787-59bf-bee5-b47915a581c3
ghcid_uuid_sha256: 57a04603-bf91-8eed-9fee-ebcf94aff12b
ghcid_numeric: 6314123659486273261
record_id: 019aede0-6f29-7746-888d-d7f463a80de2
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-LOI-I-BTD
ghcid_numeric: 13505246633030758147
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-GE-DID-I-BTD
ghcid_numeric: 6314123659486273261
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-LOI-I-BTD to NL-GE-DID-I-BTD'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2751506
geonames_name: Loil
method: GEONAMES_LOOKUP
geonames_id: 2756896
geonames_name: Didam
feature_code: PPL
population: 840
population: 0
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.94083
longitude: 6.13194
distance_km: 1.7583006144857405
geonames_id: 2751506
geonames_id: 2756896
digital_platforms:
- platform_name: Stichting Bevordering Toerisme Didam Website
platform_url: http://www.schuttersbogenroutedidam.nl
@ -161,10 +164,10 @@ web_enrichment:
platform_archive_timestamp: '2025-12-05T14:51:45.450637+00:00'
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Oudheidkundige Vereniging Didam" (website: http://www.ovd-didam.nl/)
instead of "Bevordering Toerisme Didam" (official website: http://www.schuttersbogenroutedidam.nl).
Domain mismatch: ovd-didam.nl vs schuttersbogenroutedidam.nl. Per Rule 40: KIEN is authoritative for
Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Oudheidkundige Vereniging Didam" (website:
http://www.ovd-didam.nl/) instead of "Bevordering Toerisme Didam" (official website:
http://www.schuttersbogenroutedidam.nl). Domain mismatch: ovd-didam.nl vs schuttersbogenroutedidam.nl.
Per Rule 40: KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJ_2vxddGex0cRr8eCdqSOg6U
name: Oudheidkundige Vereniging Didam
@ -203,10 +206,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
@ -214,10 +218,10 @@ 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 choose specific days and periods to manually divert the
water, and the...
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
@ -225,10 +229,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
@ -236,10 +241,10 @@ 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 medieval periods of history is documented in many parts of the
world. Original...
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
@ -247,24 +252,20 @@ 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 from the craft, millers today also play a key role in transmitting
the cultur...
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...
location:
city: Loil
city: Didam
region_code: GE
country: NL
geonames_id: 2751506
geonames_name: Loil
geonames_id: 2756896
geonames_name: Didam
feature_code: PPL
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Oudheidkundige
Vereniging Didam".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 51.938449999999996
original_longitude: 6.127679
normalization_timestamp: '2025-01-08T00:00:00Z'
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 51.94083
longitude: 6.13194
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:34:54.152264+00:00'
retrieval_agent: crawl4ai
@ -279,8 +280,8 @@ digital_platform_v2:
source_status_code: 200
primary_platform:
platform_id: primary_website_ovd-didam_nl
platform_name: Oudheidkundige Vereniging Didam Historie van Didam, Loil en Nieuw-Dijk, alsmede de
buurtschappen Greffelkamp, Oud-Dijk en Holthuizen Website
platform_name: Oudheidkundige Vereniging Didam Historie van Didam, Loil en Nieuw-Dijk,
alsmede de buurtschappen Greffelkamp, Oud-Dijk en Holthuizen Website
platform_url: https://ovd-didam.nl/
platform_type: DISCOVERY_PORTAL
description: ''

View file

@ -52,6 +52,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.527458+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.285048+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location normalized on 2025-12-09T12:29:19Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-OTT-I-BEV -> NL-GE-EDE-I-BEV'
kien_enrichment:
kien_name: Buurt Ede en Veldhuizen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1156/buurt-ede-en-veldhuizen
@ -78,48 +80,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1156/buurt-ede-en-veldhuizen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1156/buurt-ede-en-veldhuizen
- identifier_scheme: GHCID
identifier_value: NL-GE-OTT-I-BEV
identifier_value: NL-GE-EDE-I-BEV
- identifier_scheme: GHCID_UUID
identifier_value: 11c94b3e-4d6c-581a-a465-4f38ae67f44b
identifier_url: urn:uuid:11c94b3e-4d6c-581a-a465-4f38ae67f44b
identifier_value: d0b5747b-ebfa-5056-9419-d35af7eca7b3
identifier_url: urn:uuid:d0b5747b-ebfa-5056-9419-d35af7eca7b3
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 991fda88-c889-85a5-b550-15e3f6a547e3
identifier_url: urn:uuid:991fda88-c889-85a5-b550-15e3f6a547e3
identifier_value: 7e7d40b1-2188-854d-9855-dd7ee9dbc413
identifier_url: urn:uuid:7e7d40b1-2188-854d-9855-dd7ee9dbc413
- identifier_scheme: GHCID_NUMERIC
identifier_value: '11033777893095855525'
identifier_value: '9114512350383703373'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7a5a-9b89-cdf329dd5cb7
identifier_url: urn:uuid:019aedca-642e-7a5a-9b89-cdf329dd5cb7
safeguards:
- https://nde.nl/ontology/hc/heritage-form/buurtspraak-van-de-buurt-ede-en-veldhuizen
ghcid:
ghcid_current: NL-GE-OTT-I-BEV
ghcid_current: NL-GE-EDE-I-BEV
ghcid_original: NL-GE-OTT-I-BEV
ghcid_uuid: 11c94b3e-4d6c-581a-a465-4f38ae67f44b
ghcid_uuid_sha256: 991fda88-c889-85a5-b550-15e3f6a547e3
ghcid_numeric: 11033777893095855525
ghcid_uuid: d0b5747b-ebfa-5056-9419-d35af7eca7b3
ghcid_uuid_sha256: 7e7d40b1-2188-854d-9855-dd7ee9dbc413
ghcid_numeric: 9114512350383703373
record_id: 019aedca-642e-7a5a-9b89-cdf329dd5cb7
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-OTT-I-BEV
ghcid_numeric: 11033777893095855525
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-GE-EDE-I-BEV
ghcid_numeric: 9114512350383703373
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-OTT-I-BEV to NL-GE-EDE-I-BEV'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2749203
geonames_name: Otterlo
method: GEONAMES_LOOKUP
geonames_id: 2756429
geonames_name: Ede
feature_code: PPL
population: 2230
population: 67670
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 52.0716825
longitude: 5.7455106
distance_km: 4.320842144958501
geonames_id: 2749203
geonames_id: 2756429
digital_platforms:
- platform_name: Buurt Ede en Veldhuizen Website
platform_url: http://buurt.ede-en-veldhuizen.nl
@ -288,21 +291,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.0461178
longitude: 5.6674158
latitude: 52.03333
longitude: 5.65833
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:32:04.533537+00:00'
entity_id: ChIJ1VRKp1atx0cRlcF3psJRvH0
city: Otterlo
city: Ede
region_code: GE
country: NL
formatted_address: Molenstraat 45, 6711 AW Ede, Netherlands
geonames_id: 2749203
geonames_name: Otterlo
geonames_id: 2756429
geonames_name: Ede
feature_code: PPL
normalization_timestamp: '2025-12-09T12:29:19.083617+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -0,0 +1,135 @@
original_entry:
organisatie: Nederlandse Bijenhoudersvereniging
webadres_organisatie: https://www.bijenhouders.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1884
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/10136/nederlandse-bijenhoudersvereniging-de-nbv
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Bijenhouden (beekeeping) intangible heritage tradition
- Also known as NBV (Nederlandse Bijenhoudersvereniging)
kien_enrichment:
kien_name: Nederlandse Bijenhoudersvereniging (de NBV)
kien_url: https://www.immaterieelerfgoed.nl/nl/page/10136/nederlandse-bijenhoudersvereniging-de-nbv
heritage_forms:
- Bijenhouden
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bijenhouden
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereniging
original_name_with_legal_form: Nederlandse Bijenhoudersvereniging
contact:
website: https://www.bijenhouders.nl
address: Stationsweg 94A, 6711 PW Ede
custodian_name:
claim_type: custodian_name
claim_value: Nederlandse Bijenhoudersvereniging
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/10136/nederlandse-bijenhoudersvereniging-de-nbv
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/10136/nederlandse-bijenhoudersvereniging-de-nbv
- identifier_scheme: GHCID
identifier_value: NL-GE-EDE-I-NBV
- identifier_scheme: GHCID_UUID
identifier_value: 4651ae74-4549-5ee3-a0e7-6ca1c2ed4016
identifier_url: urn:uuid:4651ae74-4549-5ee3-a0e7-6ca1c2ed4016
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 78141b7a-29b4-8076-a280-3d6d668571f9
identifier_url: urn:uuid:78141b7a-29b4-8076-a280-3d6d668571f9
- identifier_scheme: GHCID_NUMERIC
identifier_value: '8652570995585245302'
- identifier_scheme: RECORD_ID
identifier_value: fd29e028-653c-4967-bfa9-13ad8337d0aa
identifier_url: urn:uuid:fd29e028-653c-4967-bfa9-13ad8337d0aa
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bijenhouden
locations:
- city: Ede
country: NL
latitude: 52.03333
longitude: 5.65833
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/10136/nederlandse-bijenhoudersvereniging-de-nbv
geonames_id: 2756429
geonames_name: Ede
feature_code: PPL
population: 67670
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-EDE-I-NBV
ghcid_original: NL-GE-EDE-I-NBV
ghcid_uuid: 4651ae74-4549-5ee3-a0e7-6ca1c2ed4016
ghcid_uuid_sha256: 78141b7a-29b4-8076-a280-3d6d668571f9
ghcid_numeric: 8652570995585245302
record_id: fd29e028-653c-4967-bfa9-13ad8337d0aa
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-EDE-I-NBV
ghcid_numeric: 8652570995585245302
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2756429
geonames_name: Ede
feature_code: PPL
population: 67670
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 52.03333
longitude: 5.65833
distance_km: 0.0
geonames_id: 2756429
location:
city: Ede
region_code: GE
country: NL
latitude: 52.03333
longitude: 5.65833
geonames_id: 2756429
geonames_name: Ede
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Nederlandse Bijenhoudersvereniging Website
platform_url: https://www.bijenhouders.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,152 @@
original_entry:
organisatie: Stichting Bloemencorso Lichtenvoorde
webadres_organisatie: http://www.bloemencorso.com
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1922
processing_timestamp: '2026-01-09T00:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T00:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorsolichtenvoorde
fetch_timestamp: '2026-01-09T00:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- description
- heritage_forms
- address
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN heritage form page discovery on 2026-01-09
- Safeguards Bloemencorso Lichtenvoorde (annual flower parade)
- Held on the 2nd Sunday of September
- Features 18 corsogroepen (corso groups)
- Includes CorsoKIDS program for youth participation
- Registered in KIEN Inventory July 2013
kien_enrichment:
kien_name: Stichting Bloemencorso Lichtenvoorde
kien_url: https://www.immaterieelerfgoed.nl/nl/page/765/stichting-bloemencorso-lichtenvoorde
heritage_forms:
- Bloemencorso Lichtenvoorde
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorsolichtenvoorde
enrichment_timestamp: '2026-01-09T00:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
Stichting Bloemencorso Lichtenvoorde organiseert het jaarlijkse Bloemencorso
Lichtenvoorde, een traditionele bloemencorso die plaatsvindt op de tweede zondag
van september. De corso omvat 18 corsogroepen die praalwagens en groepen maken
met dahlia's. Het evenement heeft ook een CorsoKIDS programma om jongeren te
betrekken bij deze culturele traditie. De bloemencorso van Lichtenvoorde is een
van de belangrijkste bloemencorso's in de Achterhoek regio van Gelderland.
legal_status:
legal_form: Stichting
legal_form_prefix: Stichting
original_name_with_legal_form: Stichting Bloemencorso Lichtenvoorde
notes: Dutch foundation (stichting) managing intangible heritage
contact:
website: http://www.bloemencorso.com
address:
street: Het Brook 23
postal_code: 7132 EH
city: Lichtenvoorde
country: NL
custodian_name:
claim_type: custodian_name
claim_value: Stichting Bloemencorso Lichtenvoorde
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T00:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/765/stichting-bloemencorso-lichtenvoorde
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/765/stichting-bloemencorso-lichtenvoorde
- identifier_scheme: GHCID
identifier_value: NL-GE-LIC-I-SBL
- identifier_scheme: GHCID_UUID
identifier_value: c96f8a32-3bd8-5707-aad2-b1a386a2fe42
identifier_url: urn:uuid:c96f8a32-3bd8-5707-aad2-b1a386a2fe42
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 481a6b72-04e1-8f37-be0e-f5028dc3c181
identifier_url: urn:uuid:481a6b72-04e1-8f37-be0e-f5028dc3c181
- identifier_scheme: GHCID_NUMERIC
identifier_value: '5195583257577647927'
- identifier_scheme: RECORD_ID
identifier_value: eedf879a-a5fe-4647-bbe6-50b1f0c87513
identifier_url: urn:uuid:eedf879a-a5fe-4647-bbe6-50b1f0c87513
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-lichtenvoorde
locations:
- city: Lichtenvoorde
country: NL
latitude: 51.98667
longitude: 6.56667
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorsolichtenvoorde
geonames_id: 2751651
geonames_name: Lichtenvoorde
feature_code: PPL
population: 19590
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-09T00:00:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-LIC-I-SBL
ghcid_original: NL-GE-LIC-I-SBL
ghcid_uuid: c96f8a32-3bd8-5707-aad2-b1a386a2fe42
ghcid_uuid_sha256: 481a6b72-04e1-8f37-be0e-f5028dc3c181
ghcid_numeric: 5195583257577647927
record_id: eedf879a-a5fe-4647-bbe6-50b1f0c87513
generation_timestamp: '2026-01-09T00:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-LIC-I-SBL
ghcid_numeric: 5195583257577647927
valid_from: '2026-01-09T00:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2751651
geonames_name: Lichtenvoorde
feature_code: PPL
population: 19590
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.98667
longitude: 6.56667
distance_km: 0.0
geonames_id: 2751651
location:
city: Lichtenvoorde
region_code: GE
country: NL
latitude: 51.98667
longitude: 6.56667
geonames_id: 2751651
geonames_name: Lichtenvoorde
feature_code: PPL
normalization_timestamp: '2026-01-09T00:00:00.000000+00:00'
digital_platforms:
- platform_name: Bloemencorso Lichtenvoorde Website
platform_url: http://www.bloemencorso.com
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T00:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,154 @@
original_entry:
organisatie: Stichting Kastelen, historische Buitenplaatsen en Landgoederen
webadres_organisatie: http://www.skbl.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1901
processing_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/6012/stichting-kastelen-historische-buitenplaatsen-en-landgoederen-skbl
fetch_timestamp: '2026-01-08T21:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
- description
- activities
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- National platform for 650 castles and historic country estates in Netherlands
- Located at Huis Landfort estate in Megchelen
- Emerged from 2012 National Year of Historic Country Estates (Jaar van de Historische Buitenplaats)
- Awards Ithakaprijs (EUR 5,000 science prize) and Ithakastipendium (EUR 5,000 stipend)
- Manages Theme Fund Kastelen & Buitenplaatsen with Prins Bernhard Cultuurfonds
- Planning National Centre for Dutch country estate culture at Huis Landfort
kien_enrichment:
kien_name: Stichting Kastelen, historische Buitenplaatsen en Landgoederen (sKBL)
kien_url: https://www.immaterieelerfgoed.nl/nl/page/6012/stichting-kastelen-historische-buitenplaatsen-en-landgoederen-skbl
heritage_forms: []
heritage_form_urls: []
registration_date: null
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Jennemie Stoelhorst
role: Directeur
- name: René Dessing
role: Voorzitter
activities:
- Ithakaprijs (EUR 5,000 science prize for research on castles/estates)
- Ithakastipendium (EUR 5,000 stipend)
- Theme Fund Kastelen & Buitenplaatsen (with Prins Bernhard Cultuurfonds)
- Climate-resilient approach program with provinces Gelderland, Utrecht, Zuid-Holland
- Planning National Centre for Dutch country estate culture at Huis Landfort
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Kastelen, historische Buitenplaatsen en Landgoederen
contact:
email: null
website: http://www.skbl.nl
address: Megchelen, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Kastelen, historische Buitenplaatsen en Landgoederen
short_name: sKBL
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6012/stichting-kastelen-historische-buitenplaatsen-en-landgoederen-skbl
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6012/stichting-kastelen-historische-buitenplaatsen-en-landgoederen-skbl
- identifier_scheme: GHCID
identifier_value: NL-GE-MEG-I-SKBL
- identifier_scheme: GHCID_UUID
identifier_value: dce748ee-735f-5a5e-b3ee-cd620c9e4e86
identifier_url: urn:uuid:dce748ee-735f-5a5e-b3ee-cd620c9e4e86
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 61c5a574-e6a5-8315-a701-8d6cb5993e9d
identifier_url: urn:uuid:61c5a574-e6a5-8315-a701-8d6cb5993e9d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7045219113595384597'
- identifier_scheme: RECORD_ID
identifier_value: 605f49bf-e69c-40db-8e51-19bc39a3285d
identifier_url: urn:uuid:605f49bf-e69c-40db-8e51-19bc39a3285d
safeguards:
- https://nde.nl/ontology/hc/heritage-form/kastelen-en-buitenplaatsen
locations:
- city: Megchelen
country: NL
latitude: 51.83833
longitude: 6.39306
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/6012/stichting-kastelen-historische-buitenplaatsen-en-landgoederen-skbl
geonames_id: 2751004
geonames_name: Megchelen
feature_code: PPL
population: 615
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-MEG-I-SKBL
ghcid_original: NL-GE-MEG-I-SKBL
ghcid_uuid: dce748ee-735f-5a5e-b3ee-cd620c9e4e86
ghcid_uuid_sha256: 61c5a574-e6a5-8315-a701-8d6cb5993e9d
ghcid_numeric: 7045219113595384597
record_id: 605f49bf-e69c-40db-8e51-19bc39a3285d
generation_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-MEG-I-SKBL
ghcid_numeric: 7045219113595384597
valid_from: '2026-01-08T21:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2751004
geonames_name: Megchelen
feature_code: PPL
population: 615
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.83833
longitude: 6.39306
distance_km: 0.0
geonames_id: 2751004
location:
city: Megchelen
region_code: GE
country: NL
latitude: 51.83833
longitude: 6.39306
geonames_id: 2751004
geonames_name: Megchelen
feature_code: PPL
normalization_timestamp: '2026-01-08T21:30:00.000000+00:00'
digital_platforms:
- platform_name: sKBL Website
platform_url: http://www.skbl.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,151 @@
original_entry:
organisatie: Vereniging Rekkens Volksfeest
webadres_organisatie: http://www.bloemencorsorekken.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1923
processing_timestamp: '2026-01-09T00:15:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T00:15:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-rekken
fetch_timestamp: '2026-01-09T00:15:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN heritage form page discovery on 2026-01-09
- Safeguards Bloemencorso Rekken (annual dahlia flower parade)
- Founded October 1, 1910, originally as an allegorical parade
- From 1965 onwards, only dahlia-decorated wagons allowed
- Held Wednesday and Thursday in the last full week of August
- Features 12 large wagons and approximately 35 children's wagons
- Over 1 million dahlias used per year
- Crosses into Germany (Vreden) every 3 years since 2000
- Registered in KIEN Network March 2020
kien_enrichment:
kien_name: Vereniging Rekkens Volksfeest
kien_url: https://www.immaterieelerfgoed.nl/nl/page/7338/vereniging-rekkens-volksfeest
heritage_forms:
- Bloemencorso Rekken
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorso-rekken
enrichment_timestamp: '2026-01-09T00:15:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
Vereniging Rekkens Volksfeest organiseert sinds 1910 het jaarlijkse Bloemencorso
Rekken. De eerste optochten waren allegorisch van karakter; vanaf 1965 mogen
alleen met dahlia's versierde wagens meerijden. Het corso vindt plaats op woensdag
en donderdag in de laatste volle week van augustus en trekt door het buitengebied
van Rekken. Er doen twaalf grote wagens en circa 35 kinderwagentjes mee, versierd
met meer dan een miljoen dahlia's. De wagens hebben vaak actuele thema's. Op
donderdagochtend gaat de optocht traditiegetrouw de Duitse grens over, en sinds
het 90-jarig jubileum in 2000 trekt het corso eens in de drie jaar ook door Vreden.
legal_status:
legal_form: Vereniging
legal_form_prefix: Vereniging
original_name_with_legal_form: Vereniging Rekkens Volksfeest
notes: Dutch association (vereniging) managing intangible heritage since 1910
contact:
website: http://www.bloemencorsorekken.nl
custodian_name:
claim_type: custodian_name
claim_value: Vereniging Rekkens Volksfeest
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T00:15:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/7338/vereniging-rekkens-volksfeest
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/7338/vereniging-rekkens-volksfeest
- identifier_scheme: GHCID
identifier_value: NL-GE-REK-I-VRV
- identifier_scheme: GHCID_UUID
identifier_value: 12145979-18da-5e11-842e-e8b043ee03d1
identifier_url: urn:uuid:12145979-18da-5e11-842e-e8b043ee03d1
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 7d11b05f-4a34-85a7-96ff-fb0f11dac8b0
identifier_url: urn:uuid:7d11b05f-4a34-85a7-96ff-fb0f11dac8b0
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9012178252658386343'
- identifier_scheme: RECORD_ID
identifier_value: 32b81943-bb4e-4d92-870e-6fd4f7193572
identifier_url: urn:uuid:32b81943-bb4e-4d92-870e-6fd4f7193572
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-rekken
locations:
- city: Rekken
country: NL
latitude: 52.09417
longitude: 6.725
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-rekken
geonames_id: 2748249
geonames_name: Rekken
feature_code: PPL
population: 485
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-09T00:15:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-REK-I-VRV
ghcid_original: NL-GE-REK-I-VRV
ghcid_uuid: 12145979-18da-5e11-842e-e8b043ee03d1
ghcid_uuid_sha256: 7d11b05f-4a34-85a7-96ff-fb0f11dac8b0
ghcid_numeric: 9012178252658386343
record_id: 32b81943-bb4e-4d92-870e-6fd4f7193572
generation_timestamp: '2026-01-09T00:15:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-REK-I-VRV
ghcid_numeric: 9012178252658386343
valid_from: '2026-01-09T00:15:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2748249
geonames_name: Rekken
feature_code: PPL
population: 485
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 52.09417
longitude: 6.725
distance_km: 0.0
geonames_id: 2748249
location:
city: Rekken
region_code: GE
country: NL
latitude: 52.09417
longitude: 6.725
geonames_id: 2748249
geonames_name: Rekken
feature_code: PPL
normalization_timestamp: '2026-01-09T00:15:00.000000+00:00'
digital_platforms:
- platform_name: Bloemencorso Rekken Website
platform_url: http://www.bloemencorsorekken.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T00:15:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,134 @@
original_entry:
organisatie: Vereniging van Vlechters
webadres_organisatie: https://www.vlechtersvereniging.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1890
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/794/vereniging-van-vlechters
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Vlechten van gebruiksvoorwerpen (weaving of functional objects) intangible heritage tradition
kien_enrichment:
kien_name: Vereniging van Vlechters
kien_url: https://www.immaterieelerfgoed.nl/nl/page/794/vereniging-van-vlechters
heritage_forms:
- Vlechten van gebruiksvoorwerpen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/vlechten-van-gebruiksvoorwerpen
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereniging
original_name_with_legal_form: Vereniging van Vlechters
contact:
website: https://www.vlechtersvereniging.nl
address: Molenweg 54, 6871 XC Renkum
custodian_name:
claim_type: custodian_name
claim_value: Vereniging van Vlechters
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/794/vereniging-van-vlechters
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/794/vereniging-van-vlechters
- identifier_scheme: GHCID
identifier_value: NL-GE-REN-I-VVV
- identifier_scheme: GHCID_UUID
identifier_value: 479b9ad3-34f8-5378-804b-f7bb8bdf9a55
identifier_url: urn:uuid:479b9ad3-34f8-5378-804b-f7bb8bdf9a55
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 1dbe9fa2-9863-8b01-b597-ed88c1a90dfd
identifier_url: urn:uuid:1dbe9fa2-9863-8b01-b597-ed88c1a90dfd
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2143325993365125889'
- identifier_scheme: RECORD_ID
identifier_value: 9393c0af-83e0-4c05-8eeb-3aad8dac0010
identifier_url: urn:uuid:9393c0af-83e0-4c05-8eeb-3aad8dac0010
safeguards:
- https://nde.nl/ontology/hc/heritage-form/vlechten-van-gebruiksvoorwerpen
locations:
- city: Renkum
country: NL
latitude: 51.97667
longitude: 5.73333
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/794/vereniging-van-vlechters
geonames_id: 2748236
geonames_name: Renkum
feature_code: PPL
population: 9421
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-REN-I-VVV
ghcid_original: NL-GE-REN-I-VVV
ghcid_uuid: 479b9ad3-34f8-5378-804b-f7bb8bdf9a55
ghcid_uuid_sha256: 1dbe9fa2-9863-8b01-b597-ed88c1a90dfd
ghcid_numeric: 2143325993365125889
record_id: 9393c0af-83e0-4c05-8eeb-3aad8dac0010
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-REN-I-VVV
ghcid_numeric: 2143325993365125889
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2748236
geonames_name: Renkum
feature_code: PPL
population: 9421
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.97667
longitude: 5.73333
distance_km: 0.0
geonames_id: 2748236
location:
city: Renkum
region_code: GE
country: NL
latitude: 51.97667
longitude: 5.73333
geonames_id: 2748236
geonames_name: Renkum
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Vereniging van Vlechters Website
platform_url: https://www.vlechtersvereniging.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,154 @@
original_entry:
organisatie: Optochtcommissie Varsseveld
webadres_organisatie: null
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1924
processing_timestamp: '2026-01-09T00:15:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T00:15:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/corso-optocht-volksfeesten-varsseveld
fetch_timestamp: '2026-01-09T00:15:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- description
- heritage_forms
- address
- email
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN heritage form page discovery on 2026-01-09
- Safeguards Corso/optocht volksfeesten Varsseveld (annual allegorical parade)
- First parade held in 1967, making 2019 the 50th edition
- Attracts approximately 5,000 spectators over both days
- 500-600 volunteers work on the wagons
- Tradition passed down through generations
- Includes children's wagons to engage youth
- Non-carnavalesque allegorical character
- Registered in KIEN Network April 2019
- Organization name inferred from email domain aov-varsseveld.nl (AOV = likely Algemene Optochtcommissie Varsseveld)
kien_enrichment:
kien_name: Optochtcommissie Varsseveld
kien_url: https://www.immaterieelerfgoed.nl/nl/page/3163
heritage_forms:
- Corso / optocht volksfeesten Varsseveld
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/corso-optocht-volksfeesten-varsseveld
enrichment_timestamp: '2026-01-09T00:15:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
De Optochtcommissie Varsseveld organiseert de jaarlijkse volksfeesten in Varsseveld,
die starten met een allegorische optocht door het dorp. De eerste optocht werd
in 1967 gehouden. Het evenement trekt jaarlijks ongeveer 5.000 toeschouwers.
Met alle bouwgroepen bij elkaar werken er 500 tot 600 vrijwilligers aan de wagens.
Het wagenbouwen wordt van generatie op generatie doorgegeven. De routes worden
zo gekozen dat de centra voor zorg in het dorp ook worden aangedaan. Er is ook
een aparte jurering voor de kinderwagens om de jeugd te stimuleren. De optocht
heeft een allegorisch karakter zonder carnavaleske elementen.
legal_status:
legal_form: Commissie
legal_form_prefix: null
original_name_with_legal_form: Optochtcommissie Varsseveld
notes: Committee organizing the annual parade, likely part of larger volksfeesten organization
contact:
email: optocht@aov-varsseveld.nl
address:
street: Veenweg 18
postal_code: 7051GR
city: Varsseveld
country: NL
custodian_name:
claim_type: custodian_name
claim_value: Optochtcommissie Varsseveld
source: kien_registry
confidence: 0.80
extraction_timestamp: '2026-01-09T00:15:00.000000+00:00'
notes: Organization name inferred from KIEN contact page and email domain
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/3163
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/3163
- identifier_scheme: GHCID
identifier_value: NL-GE-VAR-I-OV
- identifier_scheme: GHCID_UUID
identifier_value: 4a8c1628-9945-5334-b770-d227244a6722
identifier_url: urn:uuid:4a8c1628-9945-5334-b770-d227244a6722
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 3b43435e-95fe-8760-9507-334eb3baafe8
identifier_url: urn:uuid:3b43435e-95fe-8760-9507-334eb3baafe8
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4270330945199822688'
- identifier_scheme: RECORD_ID
identifier_value: 82c12aad-a780-4299-b2db-27b90e62d8be
identifier_url: urn:uuid:82c12aad-a780-4299-b2db-27b90e62d8be
safeguards:
- https://nde.nl/ontology/hc/heritage-form/corso-optocht-volksfeesten-varsseveld
locations:
- city: Varsseveld
country: NL
latitude: 51.94333
longitude: 6.45833
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/corso-optocht-volksfeesten-varsseveld
geonames_id: 2745800
geonames_name: Varsseveld
feature_code: PPL
population: 5450
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-09T00:15:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-VAR-I-OV
ghcid_original: NL-GE-VAR-I-OV
ghcid_uuid: 4a8c1628-9945-5334-b770-d227244a6722
ghcid_uuid_sha256: 3b43435e-95fe-8760-9507-334eb3baafe8
ghcid_numeric: 4270330945199822688
record_id: 82c12aad-a780-4299-b2db-27b90e62d8be
generation_timestamp: '2026-01-09T00:15:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-VAR-I-OV
ghcid_numeric: 4270330945199822688
valid_from: '2026-01-09T00:15:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2745800
geonames_name: Varsseveld
feature_code: PPL
population: 5450
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.94333
longitude: 6.45833
distance_km: 0.0
geonames_id: 2745800
location:
city: Varsseveld
region_code: GE
country: NL
latitude: 51.94333
longitude: 6.45833
geonames_id: 2745800
geonames_name: Varsseveld
feature_code: PPL
normalization_timestamp: '2026-01-09T00:15:00.000000+00:00'
digital_platforms: []

View file

@ -0,0 +1,135 @@
original_entry:
organisatie: Stichting MUHABBAT
webadres_organisatie: https://www.muhabbat.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1892
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/15098/stichting-muhabbat
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Het slurpen van papeda (Moluccan papeda slurping tradition) intangible heritage
- Moluccan heritage organization preserving cultural traditions from the Maluku Islands
kien_enrichment:
kien_name: Stichting MUHABBAT
kien_url: https://www.immaterieelerfgoed.nl/nl/page/15098/stichting-muhabbat
heritage_forms:
- Het slurpen van papeda
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/het-slurpen-van-papeda
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting MUHABBAT
contact:
website: https://www.muhabbat.nl
address: De Gamert 2124, 6605WD Wijchen
custodian_name:
claim_type: custodian_name
claim_value: MUHABBAT
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/15098/stichting-muhabbat
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/15098/stichting-muhabbat
- identifier_scheme: GHCID
identifier_value: NL-GE-WIJ-I-SM
- identifier_scheme: GHCID_UUID
identifier_value: 928766a0-44e6-5027-96a3-d69cdb6ca227
identifier_url: urn:uuid:928766a0-44e6-5027-96a3-d69cdb6ca227
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 3fa9d067-faf5-879f-a330-6d8bd1330291
identifier_url: urn:uuid:3fa9d067-faf5-879f-a330-6d8bd1330291
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4587426840464136095'
- identifier_scheme: RECORD_ID
identifier_value: 46f61203-1d85-4c92-9f0b-89f42c9f1845
identifier_url: urn:uuid:46f61203-1d85-4c92-9f0b-89f42c9f1845
safeguards:
- https://nde.nl/ontology/hc/heritage-form/het-slurpen-van-papeda
locations:
- city: Wijchen
country: NL
latitude: 51.80917
longitude: 5.725
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/15098/stichting-muhabbat
geonames_id: 2744514
geonames_name: Wijchen
feature_code: PPL
population: 32693
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-WIJ-I-SM
ghcid_original: NL-GE-WIJ-I-SM
ghcid_uuid: 928766a0-44e6-5027-96a3-d69cdb6ca227
ghcid_uuid_sha256: 3fa9d067-faf5-879f-a330-6d8bd1330291
ghcid_numeric: 4587426840464136095
record_id: 46f61203-1d85-4c92-9f0b-89f42c9f1845
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-WIJ-I-SM
ghcid_numeric: 4587426840464136095
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2744514
geonames_name: Wijchen
feature_code: PPL
population: 32693
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 51.80917
longitude: 5.725
distance_km: 0.0
geonames_id: 2744514
location:
city: Wijchen
region_code: GE
country: NL
latitude: 51.80917
longitude: 5.725
geonames_id: 2744514
geonames_name: Wijchen
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting MUHABBAT Website
platform_url: https://www.muhabbat.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,137 @@
original_entry:
organisatie: Landelijke Vereniging van Schoonrijders
webadres_organisatie: https://www.lvs-schoonrijden.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1885
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/schoonrijden
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Schoonrijden (artistic horse riding) intangible heritage tradition
- Organization was dissolved on 1 July 2023 but continues to safeguard the heritage
kien_enrichment:
kien_name: Landelijke Vereniging van Schoonrijders
kien_url: https://www.immaterieelerfgoed.nl/nl/schoonrijden
heritage_forms:
- Schoonrijden
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/schoonrijden
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereniging
original_name_with_legal_form: Landelijke Vereniging van Schoonrijders
dissolution_date: '2023-07-01'
dissolution_note: Organization dissolved but continues heritage safeguarding activities
contact:
website: https://www.lvs-schoonrijden.nl
address: Doetinchemseweg 62, 7021 BT Zelhem
custodian_name:
claim_type: custodian_name
claim_value: Landelijke Vereniging van Schoonrijders
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/schoonrijden
identifier_url: https://www.immaterieelerfgoed.nl/nl/schoonrijden
- identifier_scheme: GHCID
identifier_value: NL-GE-ZEL-I-LVS
- identifier_scheme: GHCID_UUID
identifier_value: d964eba8-3b0b-5388-96e6-1842d660dc14
identifier_url: urn:uuid:d964eba8-3b0b-5388-96e6-1842d660dc14
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 853b38b6-f9e1-8f46-bad2-0aacfa7b7380
identifier_url: urn:uuid:853b38b6-f9e1-8f46-bad2-0aacfa7b7380
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9600329389197868870'
- identifier_scheme: RECORD_ID
identifier_value: 59f35c66-00dc-43f6-af41-a220fbda044d
identifier_url: urn:uuid:59f35c66-00dc-43f6-af41-a220fbda044d
safeguards:
- https://nde.nl/ontology/hc/heritage-form/schoonrijden
locations:
- city: Zelhem
country: NL
latitude: 52.00667
longitude: 6.34861
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/schoonrijden
geonames_id: 2743963
geonames_name: Zelhem
feature_code: PPL
population: 5760
admin1_code: '03'
region_code: GE
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-GE-ZEL-I-LVS
ghcid_original: NL-GE-ZEL-I-LVS
ghcid_uuid: d964eba8-3b0b-5388-96e6-1842d660dc14
ghcid_uuid_sha256: 853b38b6-f9e1-8f46-bad2-0aacfa7b7380
ghcid_numeric: 9600329389197868870
record_id: 59f35c66-00dc-43f6-af41-a220fbda044d
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-GE-ZEL-I-LVS
ghcid_numeric: 9600329389197868870
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2743963
geonames_name: Zelhem
feature_code: PPL
population: 5760
admin1_code: '03'
region_code: GE
country_code: NL
source_coordinates:
latitude: 52.00667
longitude: 6.34861
distance_km: 0.0
geonames_id: 2743963
location:
city: Zelhem
region_code: GE
country: NL
latitude: 52.00667
longitude: 6.34861
geonames_id: 2743963
geonames_name: Zelhem
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Landelijke Vereniging van Schoonrijders Website
platform_url: https://www.lvs-schoonrijden.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -50,6 +50,8 @@ provenance:
- Intangible heritage custodian organization
- Location extracted from KIEN_PROFILE_SCRAPE - https://www.immaterieelerfgoed.nl/nl/page/13330/meierblis
- Canonical location normalized on 2025-12-09T12:45:25Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GR-HAR-I-M -> NL-GR-ESS-I-M'
kien_enrichment:
kien_name: Meierblis
kien_url: https://www.immaterieelerfgoed.nl/nl/page/13330/meierblis
@ -67,15 +69,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/13330/meierblis
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/13330/meierblis
- identifier_scheme: GHCID
identifier_value: NL-GR-HAR-I-M
identifier_value: NL-GR-ESS-I-M
- identifier_scheme: GHCID_UUID
identifier_value: 83dce629-697c-5a2a-af64-6ce27624b169
identifier_url: urn:uuid:83dce629-697c-5a2a-af64-6ce27624b169
identifier_value: 2211ef66-1dc1-5f02-9f15-bb448b74d76b
identifier_url: urn:uuid:2211ef66-1dc1-5f02-9f15-bb448b74d76b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 027875de-4f8f-81f0-a53c-4c7304009ba1
identifier_url: urn:uuid:027875de-4f8f-81f0-a53c-4c7304009ba1
identifier_value: 127e41de-8e24-8220-a37d-239395bfcbaf
identifier_url: urn:uuid:127e41de-8e24-8220-a37d-239395bfcbaf
- identifier_scheme: GHCID_NUMERIC
identifier_value: '178021782959124976'
identifier_value: '1332574963871523360'
- identifier_scheme: RECORD_ID
identifier_value: 019aee2b-2bfc-7ccc-a14a-dc666dea7e14
identifier_url: urn:uuid:019aee2b-2bfc-7ccc-a14a-dc666dea7e14
@ -92,33 +94,34 @@ location_resolution:
region_code: GR
extraction_timestamp: '2025-12-05T10:27:23.090203+00:00'
ghcid:
ghcid_current: NL-GR-HAR-I-M
ghcid_current: NL-GR-ESS-I-M
ghcid_original: NL-GR-HAR-I-M
ghcid_uuid: 83dce629-697c-5a2a-af64-6ce27624b169
ghcid_uuid_sha256: 027875de-4f8f-81f0-a53c-4c7304009ba1
ghcid_numeric: 178021782959124976
ghcid_uuid: 2211ef66-1dc1-5f02-9f15-bb448b74d76b
ghcid_uuid_sha256: 127e41de-8e24-8220-a37d-239395bfcbaf
ghcid_numeric: 1332574963871523360
record_id: 019aee2b-2bfc-7ccc-a14a-dc666dea7e14
generation_timestamp: '2025-12-05T10:59:56.993747+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GR-HAR-I-M
ghcid_numeric: 178021782959124976
valid_from: '2025-12-05T10:59:56.993747+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-GR-ESS-I-M
ghcid_numeric: 1332574963871523360
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GR-HAR-I-M to NL-GR-ESS-I-M'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2754841
geonames_name: Haren
method: GEONAMES_LOOKUP
geonames_id: 2756007
geonames_name: Essen
feature_code: PPL
population: 9375
population: 90
admin1_code: '04'
region_code: GR
country_code: NL
source_coordinates:
latitude: 53.19167
longitude: 6.60417
distance_km: 2.2470194738814158
geonames_id: 2754841
geonames_id: 2756007
google_maps_enrichment:
api_status: NOT_FOUND
fetch_timestamp: '2025-12-06T19:32:11.816506+00:00'
@ -229,13 +232,13 @@ location:
source_path: ghcid.location_resolution.source_coordinates
entity_id: 2754841
resolution_method: REVERSE_GEOCODE
city: Haren
city: Essen
region_code: GR
country: NL
geonames_id: 2754841
geonames_name: Haren
geonames_id: 2756007
geonames_name: Essen
feature_code: PPL
normalization_timestamp: '2025-12-09T12:45:25.364656+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: kien_profile_wikidata

View file

@ -0,0 +1,137 @@
original_entry:
organisatie: Stichting Wadloopcentrum Pieterburen
webadres_organisatie: http://www.wadlopen.com
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1867
processing_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T18:02:38.728774+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/8430/stichting-wadloopcentrum-pieterburen
fetch_timestamp: '2026-01-08T18:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- phone
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Wadlopen (mudflat walking) intangible heritage tradition
kien_enrichment:
kien_name: Stichting Wadloopcentrum Pieterburen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/8430/stichting-wadloopcentrum-pieterburen
heritage_forms:
- Wadlopen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/wadlopen
registration_date: '2020-07'
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Wadloopcentrum Pieterburen
contact:
phone: '0595528300'
website: http://www.wadlopen.com
address: Haven 26, 9976VN Lauwersoog, Groningen
custodian_name:
claim_type: custodian_name
claim_value: Wadloopcentrum Pieterburen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/8430/stichting-wadloopcentrum-pieterburen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/8430/stichting-wadloopcentrum-pieterburen
- identifier_scheme: GHCID
identifier_value: NL-GR-LAU-I-WP
- identifier_scheme: GHCID_UUID
identifier_value: 45d21536-2780-532f-8ce5-ecb702abc4d9
identifier_url: urn:uuid:45d21536-2780-532f-8ce5-ecb702abc4d9
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: ba13c43d-8803-8ee3-9abc-0d0c9ccb7259
identifier_url: urn:uuid:ba13c43d-8803-8ee3-9abc-0d0c9ccb7259
- identifier_scheme: GHCID_NUMERIC
identifier_value: '13408276284166110947'
- identifier_scheme: RECORD_ID
identifier_value: 5d072bb0-a1bb-4e4f-949f-bcb02d855c76
identifier_url: urn:uuid:5d072bb0-a1bb-4e4f-949f-bcb02d855c76
safeguards:
- https://nde.nl/ontology/hc/heritage-form/wadlopen
locations:
- city: Lauwersoog
country: NL
latitude: 53.40468
longitude: 6.21418
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/8430/stichting-wadloopcentrum-pieterburen
geonames_id: 2751849
geonames_name: Lauwersoog
feature_code: PPL
population: 130
admin1_code: '04'
region_code: GR
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid:
ghcid_current: NL-GR-LAU-I-WP
ghcid_original: NL-GR-LAU-I-WP
ghcid_uuid: 45d21536-2780-532f-8ce5-ecb702abc4d9
ghcid_uuid_sha256: ba13c43d-8803-8ee3-9abc-0d0c9ccb7259
ghcid_numeric: 13408276284166110947
record_id: 5d072bb0-a1bb-4e4f-949f-bcb02d855c76
generation_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid_history:
- ghcid: NL-GR-LAU-I-WP
ghcid_numeric: 13408276284166110947
valid_from: '2026-01-08T18:02:38.728774+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2751849
geonames_name: Lauwersoog
feature_code: PPL
population: 130
admin1_code: '04'
region_code: GR
country_code: NL
source_coordinates:
latitude: 53.40468
longitude: 6.21418
distance_km: 0.0
geonames_id: 2751849
location:
city: Lauwersoog
region_code: GR
country: NL
latitude: 53.40468
longitude: 6.21418
geonames_id: 2751849
geonames_name: Lauwersoog
feature_code: PPL
normalization_timestamp: '2026-01-08T18:02:38.728774+00:00'
digital_platforms:
- platform_name: Wadloopcentrum Pieterburen Website
platform_url: http://www.wadlopen.com
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_source: kien_registry

View file

@ -52,6 +52,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.496633+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.257535+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location normalized on 2025-12-09T12:27:20Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-BB -> NL-GR-NOO-I-BB'
kien_enrichment:
kien_name: Bloemencorso Bollenstreek
kien_url: https://www.immaterieelerfgoed.nl/nl/page/11524/bloemencorso-bollenstreek
@ -76,15 +78,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/11524/bloemencorso-bollenstreek
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/11524/bloemencorso-bollenstreek
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-BB
identifier_value: NL-GR-NOO-I-BB
- identifier_scheme: GHCID_UUID
identifier_value: 0a9ab6b0-1ccf-5dd7-b6da-1a0cac2cedb5
identifier_url: urn:uuid:0a9ab6b0-1ccf-5dd7-b6da-1a0cac2cedb5
identifier_value: d738adad-bea6-555f-b482-1488d0d5929d
identifier_url: urn:uuid:d738adad-bea6-555f-b482-1488d0d5929d
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 371c5249-18c6-8f74-a7c8-95b21c7f705b
identifier_url: urn:uuid:371c5249-18c6-8f74-a7c8-95b21c7f705b
identifier_value: eba37f94-4105-8407-9b03-31db874a0e25
identifier_url: urn:uuid:eba37f94-4105-8407-9b03-31db874a0e25
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3971139445335719796'
identifier_value: '16979555294839682055'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-714e-9a06-182a966d4b95
identifier_url: urn:uuid:019aedca-642e-714e-9a06-182a966d4b95
@ -148,29 +150,34 @@ wikidata_enrichment:
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-bollenstreek
ghcid:
ghcid_current: NL-GE-ARN-I-BB
ghcid_current: NL-GR-NOO-I-BB
ghcid_original: NL-GE-ARN-I-BB
ghcid_uuid: 0a9ab6b0-1ccf-5dd7-b6da-1a0cac2cedb5
ghcid_uuid_sha256: 371c5249-18c6-8f74-a7c8-95b21c7f705b
ghcid_numeric: 3971139445335719796
ghcid_uuid: d738adad-bea6-555f-b482-1488d0d5929d
ghcid_uuid_sha256: eba37f94-4105-8407-9b03-31db874a0e25
ghcid_numeric: 16979555294839682055
record_id: 019aedca-642e-714e-9a06-182a966d4b95
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-BB
ghcid_numeric: 3971139445335719796
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-GR-NOO-I-BB
ghcid_numeric: 16979555294839682055
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-BB to NL-GR-NOO-I-BB'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2749816
geonames_name: Noordwijk
feature_code: PPL
population: 235
admin1_code: '04'
region_code: GR
country_code: NL
geonames_id: 2759661
geonames_id: 2749816
google_maps_enrichment:
place_id: ChIJhWxdZBPCxUcRGsIPDntowAE
name: Stichting Bloemencorso Bollenstreek
@ -414,21 +421,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.2577941
longitude: 4.5561206
latitude: 53.17
longitude: 6.25694
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:40.328897+00:00'
entity_id: ChIJhWxdZBPCxUcRGsIPDntowAE
city: Arnhem
region_code: GE
city: Noordwijk
region_code: GR
country: NL
formatted_address: Postbus 115, 2160 AC Lisse, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T12:27:20.151165+00:00'
geonames_id: 2749816
geonames_name: Noordwijk
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:26:46.107745+00:00'
retrieval_agent: crawl4ai

View file

@ -0,0 +1,140 @@
original_entry:
organisatie: Stichting organisatie Schinderhannes
webadres_organisatie: http://www.2017.schinderhannes.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1902
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: http://www.immaterieelerfgoed.nl/nl/page/2949/stichting-organisatie-schinderhannes
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Organization responsible for Schinderhannes opera bouffe tradition
- Located in Herten, Limburg
kien_enrichment:
kien_name: Stichting organisatie Schinderhannes
kien_url: http://www.immaterieelerfgoed.nl/nl/page/2949/stichting-organisatie-schinderhannes
heritage_forms:
- Schinderhannes, een opera bouffe
heritage_form_urls:
- http://www.immaterieelerfgoed.nl/nl/page/1146/schinderhannes-een-opera-bouffe
registration_date: null
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Johan de Wal
role: null
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting organisatie Schinderhannes
contact:
email: johandewal@home.nl
website: http://www.2017.schinderhannes.nl
address: Pastoor Drehmansstraat 3, 6049AS Herten, Limburg
custodian_name:
claim_type: custodian_name
claim_value: Stichting organisatie Schinderhannes
short_name: SOS
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: http://www.immaterieelerfgoed.nl/nl/page/2949/stichting-organisatie-schinderhannes
identifier_url: http://www.immaterieelerfgoed.nl/nl/page/2949/stichting-organisatie-schinderhannes
- identifier_scheme: GHCID
identifier_value: NL-LI-HER-I-SOS
- identifier_scheme: GHCID_UUID
identifier_value: 5e070b09-92bf-5046-9a3c-882b0207f1c9
identifier_url: urn:uuid:5e070b09-92bf-5046-9a3c-882b0207f1c9
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 36c7188e-7833-861e-91f8-149e575369c4
identifier_url: urn:uuid:36c7188e-7833-861e-91f8-149e575369c4
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3947150598594606622'
- identifier_scheme: RECORD_ID
identifier_value: c3dd5fb9-6009-4bf3-96b0-f1fbd08e83f0
identifier_url: urn:uuid:c3dd5fb9-6009-4bf3-96b0-f1fbd08e83f0
safeguards:
- https://nde.nl/ontology/hc/heritage-form/schinderhannes-opera-bouffe
locations:
- city: Herten
country: NL
latitude: 51.18083
longitude: 5.9625
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: http://www.immaterieelerfgoed.nl/nl/page/2949/stichting-organisatie-schinderhannes
geonames_id: 2754331
geonames_name: Herten
feature_code: PPL
population: 3305
admin1_code: '05'
region_code: LI
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-LI-HER-I-SOS
ghcid_original: NL-LI-HER-I-SOS
ghcid_uuid: 5e070b09-92bf-5046-9a3c-882b0207f1c9
ghcid_uuid_sha256: 36c7188e-7833-861e-91f8-149e575369c4
ghcid_numeric: 3947150598594606622
record_id: c3dd5fb9-6009-4bf3-96b0-f1fbd08e83f0
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-LI-HER-I-SOS
ghcid_numeric: 3947150598594606622
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2754331
geonames_name: Herten
feature_code: PPL
population: 3305
admin1_code: '05'
region_code: LI
country_code: NL
source_coordinates:
latitude: 51.18083
longitude: 5.9625
distance_km: 0.0
geonames_id: 2754331
location:
city: Herten
region_code: LI
country: NL
latitude: 51.18083
longitude: 5.9625
geonames_id: 2754331
geonames_name: Herten
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Schinderhannes Website
platform_url: http://www.2017.schinderhannes.nl
platform_type: institutional_website

View file

@ -0,0 +1,132 @@
original_entry:
organisatie: Stichting Adoptie Graven Amerikaanse Begraafplaats Margraten
webadres_organisatie: https://www.adoptiegraven.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1872
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Adopting American war graves in Margraten intangible heritage tradition
- All 10,023 American soldiers graves have been adopted by Dutch families
kien_enrichment:
kien_name: Stichting Adoptie Graven Amerikaanse Begraafplaats Margraten
kien_url: https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
heritage_forms:
- Adopting American war graves in Margraten
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Adoptie Graven Amerikaanse Begraafplaats Margraten
contact:
website: https://www.adoptiegraven.nl
custodian_name:
claim_type: custodian_name
claim_value: Adoptie Graven Amerikaanse Begraafplaats Margraten
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
identifier_url: https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
- identifier_scheme: GHCID
identifier_value: NL-LI-MAR-I-SAGM
- identifier_scheme: GHCID_UUID
identifier_value: 17f50531-478e-5eda-a234-f4306ff3e818
identifier_url: urn:uuid:17f50531-478e-5eda-a234-f4306ff3e818
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 6e8a702a-ac74-86f9-946f-fdd0c6a11458
identifier_url: urn:uuid:6e8a702a-ac74-86f9-946f-fdd0c6a11458
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7965302219542406905'
- identifier_scheme: RECORD_ID
identifier_value: daf17c46-2db0-4e2f-ad94-6b9e8c3d1c4e
identifier_url: urn:uuid:daf17c46-2db0-4e2f-ad94-6b9e8c3d1c4e
safeguards:
- https://nde.nl/ontology/hc/heritage-form/adopting-american-war-graves-margraten
locations:
- city: Margraten
country: NL
latitude: 50.82083
longitude: 5.82083
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/en/adoptiegravenmargraten
geonames_id: 2751199
geonames_name: Margraten
feature_code: PPL
population: 3320
admin1_code: '05'
region_code: LI
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-LI-MAR-I-SAGM
ghcid_original: NL-LI-MAR-I-SAGM
ghcid_uuid: 17f50531-478e-5eda-a234-f4306ff3e818
ghcid_uuid_sha256: 6e8a702a-ac74-86f9-946f-fdd0c6a11458
ghcid_numeric: 7965302219542406905
record_id: daf17c46-2db0-4e2f-ad94-6b9e8c3d1c4e
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-LI-MAR-I-SAGM
ghcid_numeric: 7965302219542406905
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2751199
geonames_name: Margraten
feature_code: PPL
population: 3320
admin1_code: '05'
region_code: LI
country_code: NL
source_coordinates:
latitude: 50.82083
longitude: 5.82083
distance_km: 0.0
geonames_id: 2751199
location:
city: Margraten
region_code: LI
country: NL
latitude: 50.82083
longitude: 5.82083
geonames_id: 2751199
geonames_name: Margraten
feature_code: PPL
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Adoptie Graven Margraten Website
platform_url: https://www.adoptiegraven.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,153 @@
original_entry:
organisatie: Stichting Oogstdankfeest (Augst Cultuurfestival Berg aan de Maas)
webadres_organisatie: http://augst-cultuurfestival.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1913
processing_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/805/stichting-oogstdankfeest-augst-cultuurfestival-berg-aan-de-maas
fetch_timestamp: '2026-01-08T23:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- phone
- description
- heritage_forms
- contact_person
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Oogstdankfeesten Berg aan de Maas (Harvest Thanksgiving Festival)
- Traditional Limburg harvest festival with Augstkoningin (Harvest Queen) tradition
- Festival has deep ties to local agricultural heritage
kien_enrichment:
kien_name: Stichting Oogstdankfeest (Augst Cultuurfestival Berg aan de Maas)
kien_url: https://www.immaterieelerfgoed.nl/nl/page/805/stichting-oogstdankfeest-augst-cultuurfestival-berg-aan-de-maas
heritage_forms:
- Oogstdankfeesten Berg aan de Maas
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/oogstdankfeestbergaandemaas
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Chrit Horssels
contact_role: Secretaris
description: >-
Stichting Oogstdankfeest organiseert het jaarlijkse Augst Cultuurfestival in Berg
aan de Maas (gemeente Stein, Limburg). Het festival viert de oogst met traditionele
elementen zoals de verkiezing van de Augstkoningin (oogstkoningin). Het is een
belangrijke lokale traditie die de agrarische erfgoed van de regio bewaart en
de gemeenschap samenbrengt rond de oogst. De naam "Augst" verwijst naar het Limburgse
dialect woord voor augustus/oogst.
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Oogstdankfeest (Augst Cultuurfestival Berg aan de Maas)
contact:
email: secretariaat@augst-cultuurfestival.nl
phone: '0031641053503'
website: http://augst-cultuurfestival.nl
address: Postbus 292, 6170 AG Stein, Limburg, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Oogstdankfeest (Augst Cultuurfestival Berg aan de Maas)
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/805/stichting-oogstdankfeest-augst-cultuurfestival-berg-aan-de-maas
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/805/stichting-oogstdankfeest-augst-cultuurfestival-berg-aan-de-maas
- identifier_scheme: GHCID
identifier_value: NL-LI-STE-I-SOA
- identifier_scheme: GHCID_UUID
identifier_value: 78ffa786-f273-5a44-b8a7-dabfc9e9a53b
identifier_url: urn:uuid:78ffa786-f273-5a44-b8a7-dabfc9e9a53b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 0fcc664a-98f9-8eb0-8034-ce3724f67d45
identifier_url: urn:uuid:0fcc664a-98f9-8eb0-8034-ce3724f67d45
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1138397276397985456'
- identifier_scheme: RECORD_ID
identifier_value: 78736a2b-f9dc-4d3a-a199-3e74ec034335
identifier_url: urn:uuid:78736a2b-f9dc-4d3a-a199-3e74ec034335
safeguards:
- https://nde.nl/ontology/hc/heritage-form/oogstdankfeesten-berg-aan-de-maas
locations:
- city: Stein
country: NL
latitude: 50.96917
longitude: 5.76667
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/805/stichting-oogstdankfeest-augst-cultuurfestival-berg-aan-de-maas
geonames_id: 2746748
geonames_name: Stein
feature_code: PPL
population: 11290
admin1_code: '05'
region_code: LI
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
notes: Berg aan de Maas is a village within the municipality of Stein
ghcid:
ghcid_current: NL-LI-STE-I-SOA
ghcid_original: NL-LI-STE-I-SOA
ghcid_uuid: 78ffa786-f273-5a44-b8a7-dabfc9e9a53b
ghcid_uuid_sha256: 0fcc664a-98f9-8eb0-8034-ce3724f67d45
ghcid_numeric: 1138397276397985456
record_id: 78736a2b-f9dc-4d3a-a199-3e74ec034335
generation_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-LI-STE-I-SOA
ghcid_numeric: 1138397276397985456
valid_from: '2026-01-08T23:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2746748
geonames_name: Stein
feature_code: PPL
population: 11290
admin1_code: '05'
region_code: LI
country_code: NL
source_coordinates:
latitude: 50.96917
longitude: 5.76667
distance_km: 0.0
geonames_id: 2746748
location:
city: Stein
region_code: LI
country: NL
latitude: 50.96917
longitude: 5.76667
geonames_id: 2746748
geonames_name: Stein
feature_code: PPL
normalization_timestamp: '2026-01-08T23:00:00.000000+00:00'
digital_platforms:
- platform_name: Augst Cultuurfestival Website
platform_url: http://augst-cultuurfestival.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,136 @@
original_entry:
organisatie: Stichting Passiespelen Tegelen
webadres_organisatie: http://www.passiespelen.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1868
processing_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T18:02:38.728774+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/779/stichting-passiespelen-tegelen
fetch_timestamp: '2026-01-08T18:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Passiespelen in Tegelen (Passion plays) intangible heritage tradition
kien_enrichment:
kien_name: Stichting Passiespelen Tegelen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/779/stichting-passiespelen-tegelen
heritage_forms:
- Passiespelen in Tegelen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/passiespelen-in-tegelen
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Passiespelen Tegelen
contact:
email: info@passiespelen.nl
website: http://www.passiespelen.nl
address: Postbus 3027, 5930 AA Tegelen, Limburg
custodian_name:
claim_type: custodian_name
claim_value: Passiespelen Tegelen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/779/stichting-passiespelen-tegelen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/779/stichting-passiespelen-tegelen
- identifier_scheme: GHCID
identifier_value: NL-LI-TEG-I-PT
- identifier_scheme: GHCID_UUID
identifier_value: c93333d1-32e3-516d-b0d2-00290448c365
identifier_url: urn:uuid:c93333d1-32e3-516d-b0d2-00290448c365
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 4c598e4f-82c8-8363-8389-bd2e4894dc87
identifier_url: urn:uuid:4c598e4f-82c8-8363-8389-bd2e4894dc87
- identifier_scheme: GHCID_NUMERIC
identifier_value: '5501584891957494627'
- identifier_scheme: RECORD_ID
identifier_value: a28a5b7a-118d-4a26-ab68-5b6b7a39e564
identifier_url: urn:uuid:a28a5b7a-118d-4a26-ab68-5b6b7a39e564
safeguards:
- https://nde.nl/ontology/hc/heritage-form/passiespelen-in-tegelen
locations:
- city: Tegelen
country: NL
latitude: 51.34417
longitude: 6.13611
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/779/stichting-passiespelen-tegelen
geonames_id: 2746504
geonames_name: Tegelen
feature_code: PPL
population: 20190
admin1_code: '05'
region_code: LI
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid:
ghcid_current: NL-LI-TEG-I-PT
ghcid_original: NL-LI-TEG-I-PT
ghcid_uuid: c93333d1-32e3-516d-b0d2-00290448c365
ghcid_uuid_sha256: 4c598e4f-82c8-8363-8389-bd2e4894dc87
ghcid_numeric: 5501584891957494627
record_id: a28a5b7a-118d-4a26-ab68-5b6b7a39e564
generation_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid_history:
- ghcid: NL-LI-TEG-I-PT
ghcid_numeric: 5501584891957494627
valid_from: '2026-01-08T18:02:38.728774+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2746504
geonames_name: Tegelen
feature_code: PPL
population: 20190
admin1_code: '05'
region_code: LI
country_code: NL
source_coordinates:
latitude: 51.34417
longitude: 6.13611
distance_km: 0.0
geonames_id: 2746504
location:
city: Tegelen
region_code: LI
country: NL
latitude: 51.34417
longitude: 6.13611
geonames_id: 2746504
geonames_name: Tegelen
feature_code: PPL
normalization_timestamp: '2026-01-08T18:02:38.728774+00:00'
digital_platforms:
- platform_name: Passiespelen Tegelen Website
platform_url: http://www.passiespelen.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,137 @@
original_entry:
organisatie: Stichting Boxtel Vooruit
webadres_organisatie: https://www.boxtelvooruit.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1870
processing_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T18:02:38.728774+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/762/stichting-boxtel-vooruit
fetch_timestamp: '2026-01-08T18:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
- registration_date
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Reus Jas de Keistamper (giant tradition) intangible heritage
- Registered on Inventory Intangible Heritage Netherlands in September 2013
kien_enrichment:
kien_name: Stichting Boxtel Vooruit
kien_url: https://www.immaterieelerfgoed.nl/nl/page/762/stichting-boxtel-vooruit
heritage_forms:
- Reus Jas de Keistamper
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/reusjasdekeistamper
registration_date: '2013-09'
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Boxtel Vooruit
contact:
website: https://www.boxtelvooruit.nl
address: Huygensstraat 52, 5283 JM Boxtel, Noord Brabant
custodian_name:
claim_type: custodian_name
claim_value: Boxtel Vooruit
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/762/stichting-boxtel-vooruit
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/762/stichting-boxtel-vooruit
- identifier_scheme: GHCID
identifier_value: NL-NB-BOX-I-BV
- identifier_scheme: GHCID_UUID
identifier_value: 0ac8790f-3227-5a56-bdc5-1b27870bfa14
identifier_url: urn:uuid:0ac8790f-3227-5a56-bdc5-1b27870bfa14
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 0c1ad3f5-205c-875f-83de-72c295e2216a
identifier_url: urn:uuid:0c1ad3f5-205c-875f-83de-72c295e2216a
- identifier_scheme: GHCID_NUMERIC
identifier_value: '872242527613024095'
- identifier_scheme: RECORD_ID
identifier_value: 56a496ba-b73c-42f7-826b-a0147be9e4a3
identifier_url: urn:uuid:56a496ba-b73c-42f7-826b-a0147be9e4a3
safeguards:
- https://nde.nl/ontology/hc/heritage-form/reus-jas-de-keistamper
locations:
- city: Boxtel
country: NL
latitude: 51.59083
longitude: 5.32917
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/762/stichting-boxtel-vooruit
geonames_id: 2758460
geonames_name: Boxtel
feature_code: PPL
population: 29511
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid:
ghcid_current: NL-NB-BOX-I-BV
ghcid_original: NL-NB-BOX-I-BV
ghcid_uuid: 0ac8790f-3227-5a56-bdc5-1b27870bfa14
ghcid_uuid_sha256: 0c1ad3f5-205c-875f-83de-72c295e2216a
ghcid_numeric: 872242527613024095
record_id: 56a496ba-b73c-42f7-826b-a0147be9e4a3
generation_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid_history:
- ghcid: NL-NB-BOX-I-BV
ghcid_numeric: 872242527613024095
valid_from: '2026-01-08T18:02:38.728774+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2758460
geonames_name: Boxtel
feature_code: PPL
population: 29511
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.59083
longitude: 5.32917
distance_km: 0.0
geonames_id: 2758460
location:
city: Boxtel
region_code: NB
country: NL
latitude: 51.59083
longitude: 5.32917
geonames_id: 2758460
geonames_name: Boxtel
feature_code: PPL
normalization_timestamp: '2026-01-08T18:02:38.728774+00:00'
digital_platforms:
- platform_name: Boxtel Vooruit Website
platform_url: https://www.boxtelvooruit.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,139 @@
original_entry:
organisatie: Stichting Klompen Monument
webadres_organisatie: http://www.stichtingklompenmonument.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1873
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/738/stichting-klompen-monument
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- phone
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Handmatig klompen maken (manual clog making) intangible heritage tradition
- Also established European Wooden Shoes Foundation (EWSF)
kien_enrichment:
kien_name: Stichting Klompen Monument
kien_url: https://www.immaterieelerfgoed.nl/nl/page/738/stichting-klompen-monument
heritage_forms:
- Handmatig klompen maken
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/handmatigklompenmaken
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Klompen Monument
contact:
website: http://www.stichtingklompenmonument.nl
email: jack@stichtingklompenmonument.nl
phone: '0654731876'
address: Parallelweg 45, 6023 BB Budel-Schoot, Noord Brabant
custodian_name:
claim_type: custodian_name
claim_value: Klompen Monument
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/738/stichting-klompen-monument
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/738/stichting-klompen-monument
- identifier_scheme: GHCID
identifier_value: NL-NB-BUS-I-SKM
- identifier_scheme: GHCID_UUID
identifier_value: a6d3c815-eb5d-5d7e-8bfd-f55e3a2fcb44
identifier_url: urn:uuid:a6d3c815-eb5d-5d7e-8bfd-f55e3a2fcb44
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 75b0d625-f652-8732-b6e5-bfad48345368
identifier_url: urn:uuid:75b0d625-f652-8732-b6e5-bfad48345368
- identifier_scheme: GHCID_NUMERIC
identifier_value: '8480513556873373490'
- identifier_scheme: RECORD_ID
identifier_value: 7bc704df-03c0-4f8c-a65e-b73485867e44
identifier_url: urn:uuid:7bc704df-03c0-4f8c-a65e-b73485867e44
safeguards:
- https://nde.nl/ontology/hc/heritage-form/handmatig-klompen-maken
locations:
- city: Budel-Schoot
country: NL
latitude: 51.2475
longitude: 5.56528
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/nl/page/738/stichting-klompen-monument
geonames_id: 2758163
geonames_name: Budel-Schoot
feature_code: PPL
population: 1860
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-NB-BUS-I-SKM
ghcid_original: NL-NB-BUS-I-SKM
ghcid_uuid: a6d3c815-eb5d-5d7e-8bfd-f55e3a2fcb44
ghcid_uuid_sha256: 75b0d625-f652-8732-b6e5-bfad48345368
ghcid_numeric: 8480513556873373490
record_id: 7bc704df-03c0-4f8c-a65e-b73485867e44
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-NB-BUS-I-SKM
ghcid_numeric: 8480513556873373490
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2758163
geonames_name: Budel-Schoot
feature_code: PPL
population: 1860
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.2475
longitude: 5.56528
distance_km: 0.0
geonames_id: 2758163
location:
city: Budel-Schoot
region_code: NB
country: NL
latitude: 51.2475
longitude: 5.56528
geonames_id: 2758163
geonames_name: Budel-Schoot
feature_code: PPL
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Klompen Monument Website
platform_url: http://www.stichtingklompenmonument.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,142 @@
original_entry:
organisatie: Stichting Nationaal Overleg Valkerij Organisaties (NOVO)
webadres_organisatie: http://www.valkeniers.org
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1903
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: http://www.immaterieelerfgoed.nl/nl/page/751/stichting-nationaal-overleg-valkerij-organisaties-novo
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- National organization for falconry (valkerij) in the Netherlands
- Falconry is recognized as UNESCO intangible cultural heritage
- Located in Eersel, Noord-Brabant
kien_enrichment:
kien_name: Stichting Nationaal Overleg Valkerij Organisaties (NOVO)
kien_url: http://www.immaterieelerfgoed.nl/nl/page/751/stichting-nationaal-overleg-valkerij-organisaties-novo
heritage_forms:
- Valkerij
heritage_form_urls:
- http://www.immaterieelerfgoed.nl/nl/valkerij
registration_date: null
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Arnoud Heijke
role: null
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Nationaal Overleg Valkerij Organisaties (NOVO)
contact:
email: info@valkeniers.org
website: http://www.valkeniers.org
address: Kerkstraat 8, 5521 JL Eersel, Noord Brabant
custodian_name:
claim_type: custodian_name
claim_value: Stichting Nationaal Overleg Valkerij Organisaties
short_name: NOVO
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: http://www.immaterieelerfgoed.nl/nl/page/751/stichting-nationaal-overleg-valkerij-organisaties-novo
identifier_url: http://www.immaterieelerfgoed.nl/nl/page/751/stichting-nationaal-overleg-valkerij-organisaties-novo
- identifier_scheme: GHCID
identifier_value: NL-NB-EER-I-NOVO
- identifier_scheme: GHCID_UUID
identifier_value: 0be32e12-2d33-5ddd-80ae-652bf45ae131
identifier_url: urn:uuid:0be32e12-2d33-5ddd-80ae-652bf45ae131
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 8fcb9b15-690d-8b37-bc20-95e1253703df
identifier_url: urn:uuid:8fcb9b15-690d-8b37-bc20-95e1253703df
- identifier_scheme: GHCID_NUMERIC
identifier_value: '10361545883955051319'
- identifier_scheme: RECORD_ID
identifier_value: 7ecf0ec1-512e-46c2-a5d9-82aa8a7ad767
identifier_url: urn:uuid:7ecf0ec1-512e-46c2-a5d9-82aa8a7ad767
safeguards:
- https://nde.nl/ontology/hc/heritage-form/valkerij
- https://ich.unesco.org/en/RL/falconry-a-living-human-heritage-01209
locations:
- city: Eersel
country: NL
latitude: 51.3575
longitude: 5.31806
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: http://www.immaterieelerfgoed.nl/nl/page/751/stichting-nationaal-overleg-valkerij-organisaties-novo
geonames_id: 2756342
geonames_name: Eersel
feature_code: PPL
population: 18185
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NB-EER-I-NOVO
ghcid_original: NL-NB-EER-I-NOVO
ghcid_uuid: 0be32e12-2d33-5ddd-80ae-652bf45ae131
ghcid_uuid_sha256: 8fcb9b15-690d-8b37-bc20-95e1253703df
ghcid_numeric: 10361545883955051319
record_id: 7ecf0ec1-512e-46c2-a5d9-82aa8a7ad767
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NB-EER-I-NOVO
ghcid_numeric: 10361545883955051319
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2756342
geonames_name: Eersel
feature_code: PPL
population: 18185
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.3575
longitude: 5.31806
distance_km: 0.0
geonames_id: 2756342
location:
city: Eersel
region_code: NB
country: NL
latitude: 51.3575
longitude: 5.31806
geonames_id: 2756342
geonames_name: Eersel
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Valkeniers.org Website
platform_url: http://www.valkeniers.org
platform_type: institutional_website

View file

@ -0,0 +1,137 @@
original_entry:
organisatie: Stichting Brabantsedag
webadres_organisatie: https://www.brabantsedag.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1869
processing_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T18:02:38.728774+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/brabantsedag
fetch_timestamp: '2026-01-08T18:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
- registration_date
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Brabantsedag cultural parade intangible heritage tradition
- Registered on Inventory Intangible Heritage Netherlands in May 2013
kien_enrichment:
kien_name: Stichting Brabantsedag
kien_url: https://www.immaterieelerfgoed.nl/nl/brabantsedag
heritage_forms:
- Brabantsedag
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/brabantsedag
registration_date: '2013-05'
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Brabantsedag
contact:
website: https://www.brabantsedag.nl
address: Postbus 72, 5590 AB Heeze, Noord-Brabant
custodian_name:
claim_type: custodian_name
claim_value: Brabantsedag
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/brabantsedag
identifier_url: https://www.immaterieelerfgoed.nl/nl/brabantsedag
- identifier_scheme: GHCID
identifier_value: NL-NB-HEE-I-BD
- identifier_scheme: GHCID_UUID
identifier_value: 82338621-3ad6-55da-9a28-326c57a43898
identifier_url: urn:uuid:82338621-3ad6-55da-9a28-326c57a43898
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 584e5b19-89b8-8109-a2e6-0ec340d273b4
identifier_url: urn:uuid:584e5b19-89b8-8109-a2e6-0ec340d273b4
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6363123488763977993'
- identifier_scheme: RECORD_ID
identifier_value: a5fba110-00d6-41fa-ac5e-bfafebf747bb
identifier_url: urn:uuid:a5fba110-00d6-41fa-ac5e-bfafebf747bb
safeguards:
- https://nde.nl/ontology/hc/heritage-form/brabantsedag
locations:
- city: Heeze
country: NL
latitude: 51.3828
longitude: 5.57145
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/brabantsedag
geonames_id: 2754618
geonames_name: Heeze
feature_code: PPLA2
population: 9945
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid:
ghcid_current: NL-NB-HEE-I-BD
ghcid_original: NL-NB-HEE-I-BD
ghcid_uuid: 82338621-3ad6-55da-9a28-326c57a43898
ghcid_uuid_sha256: 584e5b19-89b8-8109-a2e6-0ec340d273b4
ghcid_numeric: 6363123488763977993
record_id: a5fba110-00d6-41fa-ac5e-bfafebf747bb
generation_timestamp: '2026-01-08T18:02:38.728774+00:00'
ghcid_history:
- ghcid: NL-NB-HEE-I-BD
ghcid_numeric: 6363123488763977993
valid_from: '2026-01-08T18:02:38.728774+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2754618
geonames_name: Heeze
feature_code: PPLA2
population: 9945
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.3828
longitude: 5.57145
distance_km: 0.0
geonames_id: 2754618
location:
city: Heeze
region_code: NB
country: NL
latitude: 51.3828
longitude: 5.57145
geonames_id: 2754618
geonames_name: Heeze
feature_code: PPLA2
normalization_timestamp: '2026-01-08T18:02:38.728774+00:00'
digital_platforms:
- platform_name: Brabantsedag Website
platform_url: https://www.brabantsedag.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T18:02:38.728774+00:00'
enrichment_source: kien_registry

View file

@ -54,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.390042+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-GSJBL -> NL-NB-LEE-I-GSJBL'
kien_enrichment:
kien_name: Gilde St. Jan Baptista Leenderstrijp
kien_url: https://www.immaterieelerfgoed.nl/nl/page/924/gilde-st.-jan-baptista-leenderstrijp
@ -80,44 +82,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/924/gilde-st.-jan-baptista-leenderstrijp
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/924/gilde-st.-jan-baptista-leenderstrijp
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-GSJBL
identifier_value: NL-NB-LEE-I-GSJBL
- identifier_scheme: GHCID_UUID
identifier_value: 50972c5c-97a7-5aed-905a-5e6f107705c4
identifier_url: urn:uuid:50972c5c-97a7-5aed-905a-5e6f107705c4
identifier_value: 52bb5fb1-8024-580e-a7b4-3ffbe354492d
identifier_url: urn:uuid:52bb5fb1-8024-580e-a7b4-3ffbe354492d
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 5f741009-d9e0-8e08-97d1-498d23d549ad
identifier_url: urn:uuid:5f741009-d9e0-8e08-97d1-498d23d549ad
identifier_value: a6baafec-0fd2-8a9c-9671-9f4e995077ad
identifier_url: urn:uuid:a6baafec-0fd2-8a9c-9671-9f4e995077ad
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6878140165397741064'
identifier_value: '12014108384376847004'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7550-a7d7-5ab589ced247
identifier_url: urn:uuid:019aedca-642e-7550-a7d7-5ab589ced247
safeguards:
- https://nde.nl/ontology/hc/heritage-form/sint-janstrossenwijding-in-leenderstrijp
ghcid:
ghcid_current: NL-GE-ARN-I-GSJBL
ghcid_current: NL-NB-LEE-I-GSJBL
ghcid_original: NL-GE-ARN-I-GSJBL
ghcid_uuid: 50972c5c-97a7-5aed-905a-5e6f107705c4
ghcid_uuid_sha256: 5f741009-d9e0-8e08-97d1-498d23d549ad
ghcid_numeric: 6878140165397741064
ghcid_uuid: 52bb5fb1-8024-580e-a7b4-3ffbe354492d
ghcid_uuid_sha256: a6baafec-0fd2-8a9c-9671-9f4e995077ad
ghcid_numeric: 12014108384376847004
record_id: 019aedca-642e-7550-a7d7-5ab589ced247
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-GSJBL
ghcid_numeric: 6878140165397741064
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NB-LEE-I-GSJBL
ghcid_numeric: 12014108384376847004
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-GSJBL to NL-NB-LEE-I-GSJBL'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2751816
geonames_name: Leenderstrijp
feature_code: PPL
population: 415
admin1_code: '06'
region_code: NB
country_code: NL
geonames_id: 2759661
geonames_id: 2751816
digital_platforms:
- platform_name: Gilde St. Jan Baptista Leenderstrijp Website
platform_url: http://www.gildeleenderstrijp.nl
@ -224,21 +231,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 51.3347535
longitude: 5.53233
latitude: 51.33333
longitude: 5.54028
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:48.414321+00:00'
entity_id: ChIJibsLF3gpx0cRJERzy_uBD14
city: Arnhem
region_code: GE
city: Leenderstrijp
region_code: NB
country: NL
formatted_address: 5595 GK Leende, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.810530+00:00'
geonames_id: 2751816
geonames_name: Leenderstrijp
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:28:15.708490+00:00'
retrieval_agent: crawl4ai

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T17:21:09.294118+00:00'
search_query: '"Commissie uit de Ingezetenen van de Afdeling Orthen" Arnhem opgericht OR gesticht OR sinds'
search_query: '"Commissie uit de Ingezetenen van de Afdeling Orthen" Arnhem
opgericht OR gesticht OR sinds'
source_urls:
- https://nl.m.wikipedia.org/wiki/Orthen
- https://orthen.nl/geschiedenis/
@ -53,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.307785+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-CIAO -> NL-NB-SHE-I-CIAO'
kien_enrichment:
kien_name: Commissie uit de Ingezetenen van de Afdeling Orthen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/19176/commissie-uit-de-ingezetenen-van-de-afdeling-orthen
@ -80,44 +83,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/19176/commissie-uit-de-ingezetenen-van-de-afdeling-orthen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/19176/commissie-uit-de-ingezetenen-van-de-afdeling-orthen
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-CIAO
identifier_value: NL-NB-SHE-I-CIAO
- identifier_scheme: GHCID_UUID
identifier_value: 065e02ef-566f-521b-8ea8-61669507b992
identifier_url: urn:uuid:065e02ef-566f-521b-8ea8-61669507b992
identifier_value: 259f4bcb-a396-5992-93f1-ccdced3f5560
identifier_url: urn:uuid:259f4bcb-a396-5992-93f1-ccdced3f5560
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: bfffd0b4-ecc1-8dc6-8bd9-96c698abe371
identifier_url: urn:uuid:bfffd0b4-ecc1-8dc6-8bd9-96c698abe371
identifier_value: 803f80da-2f0d-8c46-b20a-31142dff9519
identifier_url: urn:uuid:803f80da-2f0d-8c46-b20a-31142dff9519
- identifier_scheme: GHCID_NUMERIC
identifier_value: '13835006055790222790'
identifier_value: '9241246634968173638'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-781f-bc9e-8ad12a9141b7
identifier_url: urn:uuid:019aedca-642e-781f-bc9e-8ad12a9141b7
safeguards:
- https://nde.nl/ontology/hc/heritage-form/de-afdeling-orthen
ghcid:
ghcid_current: NL-GE-ARN-I-CIAO
ghcid_current: NL-NB-SHE-I-CIAO
ghcid_original: NL-GE-ARN-I-CIAO
ghcid_uuid: 065e02ef-566f-521b-8ea8-61669507b992
ghcid_uuid_sha256: bfffd0b4-ecc1-8dc6-8bd9-96c698abe371
ghcid_numeric: 13835006055790222790
ghcid_uuid: 259f4bcb-a396-5992-93f1-ccdced3f5560
ghcid_uuid_sha256: 803f80da-2f0d-8c46-b20a-31142dff9519
ghcid_numeric: 9241246634968173638
record_id: 019aedca-642e-781f-bc9e-8ad12a9141b7
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-CIAO
ghcid_numeric: 13835006055790222790
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NB-SHE-I-CIAO
ghcid_numeric: 9241246634968173638
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-CIAO to NL-NB-SHE-I-CIAO'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
method: GEONAMES_LOOKUP
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
population: 160783
admin1_code: '06'
region_code: NB
country_code: NL
geonames_id: 2759661
geonames_id: 2747351
digital_platforms:
- platform_name: Commissie uit de Ingezetenen van de Afdeling Orthen Website
platform_url: https://orthen.nl/commissie/
@ -159,9 +167,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
@ -169,8 +179,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
@ -179,9 +190,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
@ -189,8 +202,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
@ -199,8 +213,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...
location:
latitude: 51.69917
@ -208,13 +223,13 @@ location:
coordinate_provenance:
source_type: ROOT_LOCATIONS
source_path: locations[0]
city: Arnhem
region_code: GE
city: '''s-Hertogenbosch'
region_code: NB
country: NL
geonames_id: 2759661
geonames_name: Arnhem
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.427891+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup
@ -303,7 +318,8 @@ mission_statement:
*Onderhouden van contacten met de gemeente;
*Toekennen van subsidies aan verenigingen en financieel ondersteunen van Orthense festiviteiten;
*Toekennen van subsidies aan verenigingen en financieel ondersteunen van Orthense
festiviteiten;
*Stimuleren en coördineren van het gemeenschapsleven in Orthen.'
statement_language: nl

View file

@ -28,8 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:12:32.781622+00:00'
search_query: '"Het Lekkerste Brabantse Worstenbroodje" ''s-Hertogenbosch opgericht OR gesticht
OR sinds'
search_query: '"Het Lekkerste Brabantse Worstenbroodje" ''s-Hertogenbosch opgericht
OR gesticht OR sinds'
source_urls:
- https://www.immaterieelerfgoed.nl/nl/cultuurbrabantsworstenbroodje
- https://www.debroodspecialist.nl/brood/worstenbroodjes-bestellen.php
@ -49,15 +49,18 @@ provenance:
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from organization name 'Stichting Het Lekkerste Brabantse Worstenbroodje' - matched
place ''s-Hertogenbosch' (NAME_EXTRACTION_GEONAMES)
- Location extracted from organization name 'Stichting Het Lekkerste Brabantse Worstenbroodje'
- matched place ''s-Hertogenbosch' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:17:24Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:04:11Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NB-SXH-I-LBW -> NL-NB-SHE-I-LBW'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Sausage Rolls Brabant 's-Hertogenbosch"
(keilekker.nl) instead of "Het Lekkerste Brabantse Worstenbroodje" (hetlekkerstebrabantseworstenbroodje.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Sausage
Rolls Brabant 's-Hertogenbosch" (keilekker.nl) instead of "Het Lekkerste Brabantse
Worstenbroodje" (hetlekkerstebrabantseworstenbroodje.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Stichting Het Lekkerste Brabantse Worstenbroodje
@ -82,15 +85,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/874/stichting-het-lekkerste-brabantse-worstenbroodje
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/874/stichting-het-lekkerste-brabantse-worstenbroodje
- identifier_scheme: GHCID
identifier_value: NL-NB-SXH-I-LBW
identifier_value: NL-NB-SHE-I-LBW
- identifier_scheme: GHCID_UUID
identifier_value: a5543f4b-4866-5f5f-80e6-cd6ac401be33
identifier_url: urn:uuid:a5543f4b-4866-5f5f-80e6-cd6ac401be33
identifier_value: f84b97ce-1f85-5481-b037-d202c9c63c06
identifier_url: urn:uuid:f84b97ce-1f85-5481-b037-d202c9c63c06
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: a1cfc2af-5efe-818d-a9c8-3f87d4c23c63
identifier_url: urn:uuid:a1cfc2af-5efe-818d-a9c8-3f87d4c23c63
identifier_value: 7602ab05-88ee-873d-be81-4e915431c07d
identifier_url: urn:uuid:7602ab05-88ee-873d-be81-4e915431c07d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '11659752018754277773'
identifier_value: '8503547086689466173'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-70ad-ae8f-3224270a2e61
identifier_url: urn:uuid:019aede0-6f2a-70ad-ae8f-3224270a2e61
@ -112,21 +115,26 @@ location_resolution:
region_code: NB
extraction_timestamp: '2025-12-05T09:38:08.669232+00:00'
ghcid:
ghcid_current: NL-NB-SXH-I-LBW
ghcid_current: NL-NB-SHE-I-LBW
ghcid_original: NL-NB-SXH-I-LBW
ghcid_uuid: a5543f4b-4866-5f5f-80e6-cd6ac401be33
ghcid_uuid_sha256: a1cfc2af-5efe-818d-a9c8-3f87d4c23c63
ghcid_numeric: 11659752018754277773
ghcid_uuid: f84b97ce-1f85-5481-b037-d202c9c63c06
ghcid_uuid_sha256: 7602ab05-88ee-873d-be81-4e915431c07d
ghcid_numeric: 8503547086689466173
record_id: 019aede0-6f2a-70ad-ae8f-3224270a2e61
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NB-SXH-I-LBW
ghcid_numeric: 11659752018754277773
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NB-SHE-I-LBW
ghcid_numeric: 8503547086689466173
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NB-SXH-I-LBW to NL-NB-SHE-I-LBW'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
@ -134,10 +142,6 @@ ghcid:
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.69917
longitude: 5.30417
distance_km: 0.0
geonames_id: 2747351
digital_platforms:
- platform_name: Stichting Het Lekkerste Brabantse Worstenbroodje Website
@ -165,10 +169,11 @@ web_enrichment:
retry_timestamp: '2025-12-05T15:17:51.841606+00:00'
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Sausage Rolls Brabant ''s-Hertogenbosch" (website: http://keilekker.nl/)
instead of "Het Lekkerste Brabantse Worstenbroodje" (official website: http://www.hetlekkerstebrabantseworstenbroodje.nl).
Domain mismatch: keilekker.nl vs hetlekkerstebrabantseworstenbroodje.nl. Per Rule 40: KIEN is authoritative
for Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Sausage Rolls Brabant ''s-Hertogenbosch"
(website: http://keilekker.nl/) instead of "Het Lekkerste Brabantse Worstenbroodje"
(official website: http://www.hetlekkerstebrabantseworstenbroodje.nl). Domain
mismatch: keilekker.nl vs hetlekkerstebrabantseworstenbroodje.nl. Per Rule 40:
KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJWY5GQWLuxkcRU9wpsGM7So0
name: Sausage Rolls Brabant 's-Hertogenbosch
@ -210,10 +215,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
@ -221,10 +227,10 @@ 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 choose specific days and periods to manually divert the
water, and the...
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
@ -232,10 +238,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
@ -243,10 +250,10 @@ 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 medieval periods of history is documented in many parts of the
world. Original...
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
@ -254,10 +261,10 @@ 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 from the craft, millers today also play a key role in transmitting
the cultur...
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...
location:
city: '''s-Hertogenbosch'
region_code: NB
@ -265,13 +272,9 @@ location:
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Sausage Rolls
Brabant 's-Hertogenbosch".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 51.6929358
original_longitude: 5.2895815
normalization_timestamp: '2025-01-08T00:00:00Z'
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 51.69917
longitude: 5.30417
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:52:28.923424+00:00'
retrieval_agent: crawl4ai
@ -289,8 +292,8 @@ digital_platform_v2:
platform_name: Keilekkere Brabantsche worstenbroodjes bestellen Website
platform_url: https://keilekker.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: Ben je op zoek naar de beste, handgemaakte Brabantsche worstenbroodjes? Maak dan een
keuze uit ons assortiment. Worstenbroodjes bestellen? Keilekker.nl.
description: Ben je op zoek naar de beste, handgemaakte Brabantsche worstenbroodjes?
Maak dan een keuze uit ons assortiment. Worstenbroodjes bestellen? Keilekker.nl.
language: nl
og_image: https://keilekker.nl/wp-content/uploads/elementor/thumbs/Crisp_Suppliers_Worstenbroodjes_2020_HR_03-pph01smvym9ape3s43q0pzrgwr287njd3mtxsf3wy0.jpg
favicon: http://keilekker.nl/touch-icon-iphone.png
@ -340,14 +343,15 @@ timeline_enrichment:
- https://nl.wikipedia.org/wiki/Brabants_worstenbroodje
- https://hetlekkerstebrabantseworstenbroodje.nl/cultureel-erfgoed/
- https://www.houbenworstenbrood.nl/
linkup_query: '"Het Lekkerste Brabantse Worstenbroodje" ''s-Hertogenbosch opgericht OR gesticht OR
sinds'
linkup_answer: "De stichting \"Het Lekkerste Brabantse Worstenbroodje\" is opgericht in 2019. De jaarlijkse\
\ wedstrijd \"Wie maakt het Lekkerste Brabantse Worstenbroodje?\" wordt sinds 1995 georganiseerd.\
\ De bakkerij De Broodspecialist in s-Hertogenbosch bakt sinds 1883 vers brood, waaronder Brabantse\
\ worstenbroodjes. \n\nKort samengevat:\n- Wedstrijd \"Wie maakt het Lekkerste Brabantse Worstenbroodje?\"\
\ sinds 1995.\n- Stichting \"Het Lekkerste Brabantse Worstenbroodje\" sinds 2019.\n- De Broodspecialist\
\ in s-Hertogenbosch bakt sinds 1883."
linkup_query: '"Het Lekkerste Brabantse Worstenbroodje" ''s-Hertogenbosch opgericht
OR gesticht OR sinds'
linkup_answer: "De stichting \"Het Lekkerste Brabantse Worstenbroodje\" is opgericht\
\ in 2019. De jaarlijkse wedstrijd \"Wie maakt het Lekkerste Brabantse Worstenbroodje?\"\
\ wordt sinds 1995 georganiseerd. De bakkerij De Broodspecialist in s-Hertogenbosch\
\ bakt sinds 1883 vers brood, waaronder Brabantse worstenbroodjes. \n\nKort\
\ samengevat:\n- Wedstrijd \"Wie maakt het Lekkerste Brabantse Worstenbroodje?\"\
\ sinds 1995.\n- Stichting \"Het Lekkerste Brabantse Worstenbroodje\" sinds\
\ 2019.\n- De Broodspecialist in s-Hertogenbosch bakt sinds 1883."
fetch_timestamp: '2025-12-15T19:12:32.767641+00:00'
archive_path: web/1808/linkup/linkup_founding_20251215T191232Z.json
extraction_method: linkup_answer_regex
@ -361,9 +365,10 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://hetlekkerstebrabantseworstenbroodje.nl/wp-content/uploads/2024/08/logo_zwart.png
source_url: http://www.hetlekkerstebrabantseworstenbroodje.nl
css_selector: '[document] > html > body.home.wp-singular > header.elementor.elementor-18 > div.elementor-element.elementor-element-50b3607
> div.elementor-element.elementor-element-9dc4a34 > div.elementor-element.elementor-element-2f513b6
> div.elementor-widget-container > a > img.attachment-full.size-full'
css_selector: '[document] > html > body.home.wp-singular > header.elementor.elementor-18
> div.elementor-element.elementor-element-50b3607 > div.elementor-element.elementor-element-9dc4a34
> div.elementor-element.elementor-element-2f513b6 > div.elementor-widget-container
> a > img.attachment-full.size-full'
retrieved_on: '2025-12-21T23:56:42.904252+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -385,9 +390,9 @@ logo_enrichment:
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-sxh-i-lbw/mission-2026
statement_type: mission
statement_text: Ons streven is om iedereen binnen heel Nederland enthousiast te maken voor het Brabantse
Worstenbroodje en dat het op een dag zelfs een export product wordt zoals de Nederlandse stroopwafel
!
statement_text: Ons streven is om iedereen binnen heel Nederland enthousiast te
maken voor het Brabantse Worstenbroodje en dat het op een dag zelfs een export
product wordt zoals de Nederlandse stroopwafel !
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetlekkerstebrabantseworstenbroodje.nl/over
@ -403,9 +408,9 @@ mission_statement:
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-sxh-i-lbw/goal-2026
statement_type: goal
statement_text: Stichting Het Lekkerste Brabantse Worstenbroodje heeft als doel het promoten, uitdragen
en overdragen van kennis van dit mooie immateriële erfgoed alsmede het bevorderen en instandhouding
van het bakkersambt.
statement_text: Stichting Het Lekkerste Brabantse Worstenbroodje heeft als doel
het promoten, uitdragen en overdragen van kennis van dit mooie immateriële erfgoed
alsmede het bevorderen en instandhouding van het bakkersambt.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetlekkerstebrabantseworstenbroodje.nl/over

View file

@ -52,6 +52,8 @@ provenance:
- Location extracted from organization name 'Noord-Brabantse Federatie van Schuttersgilden'
- matched place ''s-Hertogenbosch' (NAME_EXTRACTION_GEONAMES)
- Canonical location normalized on 2025-12-09T12:51:48Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NB-SXH-I-NFS -> NL-NB-SHE-I-NFS'
kien_enrichment:
kien_name: Noord-Brabantse Federatie van Schuttersgilden
kien_url: https://www.immaterieelerfgoed.nl/nl/page/775/noord-brabantse-federatie-van-schuttersgilden
@ -75,15 +77,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/775/noord-brabantse-federatie-van-schuttersgilden
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/775/noord-brabantse-federatie-van-schuttersgilden
- identifier_scheme: GHCID
identifier_value: NL-NB-SXH-I-NFS
identifier_value: NL-NB-SHE-I-NFS
- identifier_scheme: GHCID_UUID
identifier_value: 38bb211c-2972-58a5-ae2a-329bccfba5a9
identifier_url: urn:uuid:38bb211c-2972-58a5-ae2a-329bccfba5a9
identifier_value: 5c76eb95-4107-5d82-a5ff-1ade1a7d6bbd
identifier_url: urn:uuid:5c76eb95-4107-5d82-a5ff-1ade1a7d6bbd
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 744b4440-2f4f-85d6-8ef1-9f648990e964
identifier_url: urn:uuid:744b4440-2f4f-85d6-8ef1-9f648990e964
identifier_value: 9c125933-b9f0-83d6-bdf8-368705553299
identifier_url: urn:uuid:9c125933-b9f0-83d6-bdf8-368705553299
- identifier_scheme: GHCID_NUMERIC
identifier_value: '8379866574115284438'
identifier_value: '11246149298195289046'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-7321-a85b-42fd3af06fb0
identifier_url: urn:uuid:019aede0-6f29-7321-a85b-42fd3af06fb0
@ -105,21 +107,26 @@ location_resolution:
region_code: NB
extraction_timestamp: '2025-12-05T09:38:08.165482+00:00'
ghcid:
ghcid_current: NL-NB-SXH-I-NFS
ghcid_current: NL-NB-SHE-I-NFS
ghcid_original: NL-NB-SXH-I-NFS
ghcid_uuid: 38bb211c-2972-58a5-ae2a-329bccfba5a9
ghcid_uuid_sha256: 744b4440-2f4f-85d6-8ef1-9f648990e964
ghcid_numeric: 8379866574115284438
ghcid_uuid: 5c76eb95-4107-5d82-a5ff-1ade1a7d6bbd
ghcid_uuid_sha256: 9c125933-b9f0-83d6-bdf8-368705553299
ghcid_numeric: 11246149298195289046
record_id: 019aede0-6f29-7321-a85b-42fd3af06fb0
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NB-SXH-I-NFS
ghcid_numeric: 8379866574115284438
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NB-SHE-I-NFS
ghcid_numeric: 11246149298195289046
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NB-SXH-I-NFS to NL-NB-SHE-I-NFS'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
@ -127,10 +134,6 @@ ghcid:
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.69917
longitude: 5.30417
distance_km: 0.0
geonames_id: 2747351
digital_platforms:
- platform_name: Noord-Brabantse Federatie van Schuttersgilden Website
@ -251,8 +254,8 @@ unesco_ich_enrichment:
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...
location:
latitude: 51.489871
longitude: 5.566116
latitude: 51.69917
longitude: 5.30417
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -265,7 +268,7 @@ location:
geonames_id: 2747351
geonames_name: '''s-Hertogenbosch'
feature_code: PPLA
normalization_timestamp: '2025-12-09T12:51:48.959006+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -0,0 +1,137 @@
original_entry:
organisatie: Nederlandse Vereniging van Klompenmakers
webadres_organisatie: https://www.klompenmakers.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1886
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/18196/nederlandse-vereniging-van-klompenmakers
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Machinaal klompen maken (machine clog making) intangible heritage tradition
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NB-STO-I-NVVK -> NL-NB-SOR-I-NVVK'
kien_enrichment:
kien_name: Nederlandse Vereniging van Klompenmakers
kien_url: https://www.immaterieelerfgoed.nl/nl/page/18196/nederlandse-vereniging-van-klompenmakers
heritage_forms:
- Machinaal klompen maken
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/machinaal-klompen-maken
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereniging
original_name_with_legal_form: Nederlandse Vereniging van Klompenmakers
contact:
website: https://www.klompenmakers.nl
address: Ambachtsweg 2, 5492 NJ Sint-Oedenrode
custodian_name:
claim_type: custodian_name
claim_value: Nederlandse Vereniging van Klompenmakers
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/18196/nederlandse-vereniging-van-klompenmakers
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/18196/nederlandse-vereniging-van-klompenmakers
- identifier_scheme: GHCID
identifier_value: NL-NB-SOR-I-NVVK
- identifier_scheme: GHCID_UUID
identifier_value: 78c0a608-8587-5345-8d9e-8ee9309f61f3
identifier_url: urn:uuid:78c0a608-8587-5345-8d9e-8ee9309f61f3
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2907f3a8-5812-8001-ae25-16415d3287db
identifier_url: urn:uuid:2907f3a8-5812-8001-ae25-16415d3287db
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2956599584749707265'
- identifier_scheme: RECORD_ID
identifier_value: 356ecab2-42cf-48ef-b9d3-e0a2a510d5af
identifier_url: urn:uuid:356ecab2-42cf-48ef-b9d3-e0a2a510d5af
safeguards:
- https://nde.nl/ontology/hc/heritage-form/machinaal-klompen-maken
locations:
- city: Sint-Oedenrode
country: NL
latitude: 51.5675
longitude: 5.45972
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/18196/nederlandse-vereniging-van-klompenmakers
geonames_id: 2747227
geonames_name: Sint-Oedenrode
feature_code: PPL
population: 16931
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NB-SOR-I-NVVK
ghcid_original: NL-NB-STO-I-NVVK
ghcid_uuid: 78c0a608-8587-5345-8d9e-8ee9309f61f3
ghcid_uuid_sha256: 2907f3a8-5812-8001-ae25-16415d3287db
ghcid_numeric: 2956599584749707265
record_id: 356ecab2-42cf-48ef-b9d3-e0a2a510d5af
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NB-STO-I-NVVK
ghcid_numeric: 7988064166790642501
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
- ghcid: NL-NB-SOR-I-NVVK
ghcid_numeric: 2956599584749707265
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NB-STO-I-NVVK to NL-NB-SOR-I-NVVK'
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2747227
geonames_name: Sint-Oedenrode
feature_code: PPL
population: 16931
admin1_code: '06'
region_code: NB
country_code: NL
geonames_id: 2747227
location:
city: Sint-Oedenrode
region_code: NB
country: NL
latitude: 51.5675
longitude: 5.45972
geonames_id: 2747227
geonames_name: Sint-Oedenrode
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platforms:
- platform_name: Nederlandse Vereniging van Klompenmakers Website
platform_url: https://www.klompenmakers.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -52,6 +52,8 @@ provenance:
- Location extracted from KIEN_PROFILE_SCRAPE - https://www.immaterieelerfgoed.nl/nl/page/928/stichting-vlechtheggen-zuid-nederland
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:17:01Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:03:15Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-LI-SMA-I-VZN -> NL-NB-VIE-I-VZN'
kien_enrichment:
kien_name: Stichting Vlechtheggen Zuid Nederland
kien_url: https://www.immaterieelerfgoed.nl/nl/page/928/stichting-vlechtheggen-zuid-nederland
@ -74,15 +76,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/928/stichting-vlechtheggen-zuid-nederland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/928/stichting-vlechtheggen-zuid-nederland
- identifier_scheme: GHCID
identifier_value: NL-LI-SMA-I-VZN
identifier_value: NL-NB-VIE-I-VZN
- identifier_scheme: GHCID_UUID
identifier_value: 96e9c650-eed0-52af-8f63-05499ab83f18
identifier_url: urn:uuid:96e9c650-eed0-52af-8f63-05499ab83f18
identifier_value: 0ab57889-74f4-52eb-b7ac-0557b8c33256
identifier_url: urn:uuid:0ab57889-74f4-52eb-b7ac-0557b8c33256
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2490cd84-bb04-85d9-94e9-67e26e37efc9
identifier_url: urn:uuid:2490cd84-bb04-85d9-94e9-67e26e37efc9
identifier_value: 30af3483-6130-870f-87f5-1211a5fea1fe
identifier_url: urn:uuid:30af3483-6130-870f-87f5-1211a5fea1fe
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2634831751968724441'
identifier_value: '3508080373620811535'
- identifier_scheme: RECORD_ID
identifier_value: 019aee2b-2bfd-7927-a44f-734c4fd02711
identifier_url: urn:uuid:019aee2b-2bfd-7927-a44f-734c4fd02711
@ -99,33 +101,34 @@ location_resolution:
region_code: NB
extraction_timestamp: '2025-12-05T10:29:58.672213+00:00'
ghcid:
ghcid_current: NL-LI-SMA-I-VZN
ghcid_current: NL-NB-VIE-I-VZN
ghcid_original: NL-LI-SMA-I-VZN
ghcid_uuid: 96e9c650-eed0-52af-8f63-05499ab83f18
ghcid_uuid_sha256: 2490cd84-bb04-85d9-94e9-67e26e37efc9
ghcid_numeric: 2634831751968724441
ghcid_uuid: 0ab57889-74f4-52eb-b7ac-0557b8c33256
ghcid_uuid_sha256: 30af3483-6130-870f-87f5-1211a5fea1fe
ghcid_numeric: 3508080373620811535
record_id: 019aee2b-2bfd-7927-a44f-734c4fd02711
generation_timestamp: '2025-12-05T10:59:56.993747+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-LI-SMA-I-VZN
ghcid_numeric: 2634831751968724441
valid_from: '2025-12-05T10:59:56.993747+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NB-VIE-I-VZN
ghcid_numeric: 3508080373620811535
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-LI-SMA-I-VZN to NL-NB-VIE-I-VZN'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2747102
geonames_name: Smakt
method: GEONAMES_LOOKUP
geonames_id: 2745550
geonames_name: Vierlingsbeek
feature_code: PPL
population: 220
admin1_code: '05'
region_code: LI
population: 0
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.595
longitude: 6.00972
distance_km: 3.2044056296601617
geonames_id: 2747102
geonames_id: 2745550
digital_platforms:
- platform_name: Stichting Vlechtheggen Zuid Nederland Website
platform_url: http://www.vlechtheggen.nl
@ -225,13 +228,13 @@ location:
source_path: ghcid.location_resolution.source_coordinates
entity_id: 2747102
resolution_method: REVERSE_GEOCODE
city: Smakt
region_code: LI
city: Vierlingsbeek
region_code: NB
country: NL
geonames_id: 2747102
geonames_name: Smakt
geonames_id: 2745550
geonames_name: Vierlingsbeek
feature_code: PPL
normalization_timestamp: '2025-12-09T07:03:15.244577+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -56,6 +56,8 @@ provenance:
type TOP.GEO (not GRP.HER heritage custodian)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:22Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-S-de_stoelenmatter -> NL-NB-ZUN-I-S-de_stoelenmatter'
kien_enrichment:
kien_name: De Stoelenmatter
kien_url: https://www.immaterieelerfgoed.nl/nl/page/748/de-stoelenmatter
@ -82,45 +84,51 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/748/de-stoelenmatter
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/748/de-stoelenmatter
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-S-de_stoelenmatter
identifier_value: NL-NB-ZUN-I-S-de_stoelenmatter
- identifier_scheme: GHCID_UUID
identifier_value: 02c22481-8427-57d9-a86a-3024785287a6
identifier_url: urn:uuid:02c22481-8427-57d9-a86a-3024785287a6
identifier_value: cff56551-080b-5406-a2d1-1ec0ee7e37c0
identifier_url: urn:uuid:cff56551-080b-5406-a2d1-1ec0ee7e37c0
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 6b69be35-e398-8a70-b4eb-1185296fd91c
identifier_url: urn:uuid:6b69be35-e398-8a70-b4eb-1185296fd91c
identifier_value: adf9d02b-53e5-82e1-a364-2e33f0de326e
identifier_url: urn:uuid:adf9d02b-53e5-82e1-a364-2e33f0de326e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7739926573273852528'
identifier_value: '12536279922272191201'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7cf0-bc0a-61783ee94b5e
identifier_url: urn:uuid:019aedca-642e-7cf0-bc0a-61783ee94b5e
safeguards:
- https://nde.nl/ontology/hc/heritage-form/stoelenmatten-in-zundert
ghcid:
ghcid_current: NL-GE-ARN-I-S-de_stoelenmatter
ghcid_current: NL-NB-ZUN-I-S-de_stoelenmatter
ghcid_original: NL-GE-ARN-I-S-de_stoelenmatter
ghcid_uuid: 02c22481-8427-57d9-a86a-3024785287a6
ghcid_uuid_sha256: 6b69be35-e398-8a70-b4eb-1185296fd91c
ghcid_numeric: 7739926573273852528
ghcid_uuid: cff56551-080b-5406-a2d1-1ec0ee7e37c0
ghcid_uuid_sha256: adf9d02b-53e5-82e1-a364-2e33f0de326e
ghcid_numeric: 12536279922272191201
record_id: 019aedca-642e-7cf0-bc0a-61783ee94b5e
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-S-de_stoelenmatter
ghcid_numeric: 7739926573273852528
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025) - name suffix
added to resolve collision
- ghcid: NL-NB-ZUN-I-S-de_stoelenmatter
ghcid_numeric: 12536279922272191201
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-S-de_stoelenmatter
to NL-NB-ZUN-I-S-de_stoelenmatter'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2743619
geonames_name: Zundert
feature_code: PPL
population: 6835
admin1_code: '06'
region_code: NB
country_code: NL
geonames_id: 2759661
geonames_id: 2743619
collision_resolved: true
base_ghcid_before_collision: NL-GE-ARN-I-S
digital_platforms:
@ -303,21 +311,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 51.4649571
longitude: 4.6541514
latitude: 51.47167
longitude: 4.65556
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:53.840469+00:00'
entity_id: ChIJbVcFAlYcxEcRGQYDlTfRzQ4
city: Arnhem
region_code: GE
city: Zundert
region_code: NB
country: NL
formatted_address: Wernhoutseweg 27, 4881 GA Zundert, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:22.014690+00:00'
geonames_id: 2743619
geonames_name: Zundert
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:28:36.959514+00:00'
retrieval_agent: crawl4ai

View file

@ -0,0 +1,151 @@
original_entry:
organisatie: Stichting Bloemencorso Zundert
webadres_organisatie: http://www.bloemencorsozundert.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1908
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/725/stichting-bloemencorso-zundert
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Bloemencorso Zundert tradition (dahlia flower parade)
- Stichting established in 2000, taking over from municipal committee after 64 years
- Contact person Miranda Eiting (commissielid immaterieel erfgoed)
- Heritage registered in KIEN Inventory since October 2012
kien_enrichment:
kien_name: Stichting Bloemencorso Zundert
kien_url: https://www.immaterieelerfgoed.nl/nl/page/725/stichting-bloemencorso-zundert
heritage_forms:
- Bloemencorso Zundert
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorsozundert
registration_date: '2012-10-01'
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Miranda Eiting
description: >-
Stichting Bloemencorso Zundert organiseert het jaarlijkse Bloemencorso Zundert,
een optocht met reusachtige dahlia-bloemenpraalwagens op de eerste zondag van
september. De stichting is opgericht in 2000 en nam de organisatie over van het
gemeentelijk comité dat het corso sinds 1936 organiseerde. Twintig buurtschappen
bouwen de wagens voor de competitie. Het corso trekt honderdduizenden bezoekers
en is een belangrijk onderdeel van het sociale leven in Zundert. Kernwaarden zijn
saamhorigheid, creativiteit en competitie.
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Bloemencorso Zundert
contact:
email: miranda.eiting@corsozundert.nl
website: http://www.bloemencorsozundert.nl
address: Postbus 250, 4880 AG Zundert, Noord-Brabant, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Bloemencorso Zundert
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/725/stichting-bloemencorso-zundert
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/725/stichting-bloemencorso-zundert
- identifier_scheme: GHCID
identifier_value: NL-NB-ZUN-I-SBZ
- identifier_scheme: GHCID_UUID
identifier_value: 40eba9dc-7023-5011-a741-dcfe1c55e182
identifier_url: urn:uuid:40eba9dc-7023-5011-a741-dcfe1c55e182
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: aa1d4ed4-8772-8177-9786-1f1e306b9cf4
identifier_url: urn:uuid:aa1d4ed4-8772-8177-9786-1f1e306b9cf4
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12258040435484799351'
- identifier_scheme: RECORD_ID
identifier_value: fef7cb6c-26ef-4fb8-9e1b-c1ab5d29f962
identifier_url: urn:uuid:fef7cb6c-26ef-4fb8-9e1b-c1ab5d29f962
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-zundert
locations:
- city: Zundert
country: NL
latitude: 51.47167
longitude: 4.65556
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/725/stichting-bloemencorso-zundert
geonames_id: 2743619
geonames_name: Zundert
feature_code: PPL
population: 6835
admin1_code: '06'
region_code: NB
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NB-ZUN-I-SBZ
ghcid_original: NL-NB-ZUN-I-SBZ
ghcid_uuid: 40eba9dc-7023-5011-a741-dcfe1c55e182
ghcid_uuid_sha256: aa1d4ed4-8772-8177-9786-1f1e306b9cf4
ghcid_numeric: 12258040435484799351
record_id: fef7cb6c-26ef-4fb8-9e1b-c1ab5d29f962
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NB-ZUN-I-SBZ
ghcid_numeric: 12258040435484799351
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2743619
geonames_name: Zundert
feature_code: PPL
population: 6835
admin1_code: '06'
region_code: NB
country_code: NL
source_coordinates:
latitude: 51.47167
longitude: 4.65556
distance_km: 0.0
geonames_id: 2743619
location:
city: Zundert
region_code: NB
country: NL
latitude: 51.47167
longitude: 4.65556
geonames_id: 2743619
geonames_name: Zundert
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Bloemencorso Zundert Website
platform_url: http://www.bloemencorsozundert.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,134 @@
original_entry:
organisatie: Stichting Behoud Cultuur Waterwonen
webadres_organisatie: https://www.cultuurwaterwonen.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1887
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/10261/stichting-behoud-cultuur-waterwonen
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Waterwonen (houseboat living) intangible heritage tradition
kien_enrichment:
kien_name: Stichting Behoud Cultuur Waterwonen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/10261/stichting-behoud-cultuur-waterwonen
heritage_forms:
- Waterwonen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/waterwonen
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Behoud Cultuur Waterwonen
contact:
website: https://www.cultuurwaterwonen.nl
address: Uiterweg 302 ws1, 1431 AW Aalsmeer
custodian_name:
claim_type: custodian_name
claim_value: Behoud Cultuur Waterwonen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/10261/stichting-behoud-cultuur-waterwonen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/10261/stichting-behoud-cultuur-waterwonen
- identifier_scheme: GHCID
identifier_value: NL-NH-AAL-I-SBCW
- identifier_scheme: GHCID_UUID
identifier_value: ef30d2ee-3f92-5752-9c57-f3ebfa5b7741
identifier_url: urn:uuid:ef30d2ee-3f92-5752-9c57-f3ebfa5b7741
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: f2387e94-5ab0-8f15-ad6b-39ea7aa9e211
identifier_url: urn:uuid:f2387e94-5ab0-8f15-ad6b-39ea7aa9e211
- identifier_scheme: GHCID_NUMERIC
identifier_value: '17453839531516124949'
- identifier_scheme: RECORD_ID
identifier_value: b6933a45-6f9a-41f3-9332-60cee743aa4c
identifier_url: urn:uuid:b6933a45-6f9a-41f3-9332-60cee743aa4c
safeguards:
- https://nde.nl/ontology/hc/heritage-form/waterwonen
locations:
- city: Aalsmeer
country: NL
latitude: 52.25917
longitude: 4.75972
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/10261/stichting-behoud-cultuur-waterwonen
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
population: 22991
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-AAL-I-SBCW
ghcid_original: NL-NH-AAL-I-SBCW
ghcid_uuid: ef30d2ee-3f92-5752-9c57-f3ebfa5b7741
ghcid_uuid_sha256: f2387e94-5ab0-8f15-ad6b-39ea7aa9e211
ghcid_numeric: 17453839531516124949
record_id: b6933a45-6f9a-41f3-9332-60cee743aa4c
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-AAL-I-SBCW
ghcid_numeric: 17453839531516124949
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
population: 22991
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.25917
longitude: 4.75972
distance_km: 0.0
geonames_id: 2760134
location:
city: Aalsmeer
region_code: NH
country: NL
latitude: 52.25917
longitude: 4.75972
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Behoud Cultuur Waterwonen Website
platform_url: https://www.cultuurwaterwonen.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,154 @@
original_entry:
organisatie: Stichting behoud cultuur waterwonen in Nederland
webadres_organisatie: http://erfgoedwaterwonen.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1906
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: http://www.immaterieelerfgoed.nl/nl/page/10668/stichting-behoud-cultuur-waterwonen-in-nederland
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
- description
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Foundation for preserving the culture of living on water in the Netherlands
- Founded by sisters Nanette and Margreet Elfring
- Approximately 12,000 houseboats in the Netherlands
- Promotes waterwonen as climate-resilient and sustainable housing
- Located in Aalsmeer, Noord-Holland
kien_enrichment:
kien_name: Stichting behoud cultuur waterwonen in Nederland
kien_url: http://www.immaterieelerfgoed.nl/nl/page/10668/stichting-behoud-cultuur-waterwonen-in-nederland
heritage_forms:
- Waterwonen
heritage_form_urls:
- http://www.immaterieelerfgoed.nl/nl/waterwonen
registration_date: null
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Margreet Elfring
role: PR erfgoedwaterwonen.nl
- name: Nanette Elfring
role: Co-founder
description: >-
De stichting is opgericht door de zussen Nanette en Margreet Elfring vanwege het feit
dat waterwonen nog steeds onder druk staat. De missie is om een zo breed mogelijk
publiek te informeren omtrent de waterwooncultuur, deze te behouden en versterken.
De stichting wil de gewoonten en gebruiken doorgeven aan jongere generaties en daar
nieuwe aan toevoegen, zodat waterwonen duurzaam ingebed wordt in een steeds
veranderende moderne samenleving. In Nederland drijven er zo'n 12.000 woonboten.
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting behoud cultuur waterwonen in Nederland
contact:
email: null
website: http://erfgoedwaterwonen.nl
phone: 06-15941811
address: Aalsmeer, Noord-Holland
custodian_name:
claim_type: custodian_name
claim_value: Stichting behoud cultuur waterwonen in Nederland
short_name: SBCWN
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: http://www.immaterieelerfgoed.nl/nl/page/10668/stichting-behoud-cultuur-waterwonen-in-nederland
identifier_url: http://www.immaterieelerfgoed.nl/nl/page/10668/stichting-behoud-cultuur-waterwonen-in-nederland
- identifier_scheme: GHCID
identifier_value: NL-NH-AAL-I-SBCWN
- identifier_scheme: GHCID_UUID
identifier_value: 79e01d62-a24d-5c8b-bcd8-e267ee1172c3
identifier_url: urn:uuid:79e01d62-a24d-5c8b-bcd8-e267ee1172c3
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 9b0b3987-20e1-8620-b32f-8279e12568bb
identifier_url: urn:uuid:9b0b3987-20e1-8620-b32f-8279e12568bb
- identifier_scheme: GHCID_NUMERIC
identifier_value: '11172086553157686816'
- identifier_scheme: RECORD_ID
identifier_value: dc3b12ab-2189-486e-b47d-d2e88caad0c4
identifier_url: urn:uuid:dc3b12ab-2189-486e-b47d-d2e88caad0c4
safeguards:
- https://nde.nl/ontology/hc/heritage-form/waterwonen
locations:
- city: Aalsmeer
country: NL
latitude: 52.25917
longitude: 4.75972
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: http://www.immaterieelerfgoed.nl/nl/page/10668/stichting-behoud-cultuur-waterwonen-in-nederland
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
population: 22991
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-AAL-I-SBCWN
ghcid_original: NL-NH-AAL-I-SBCWN
ghcid_uuid: 79e01d62-a24d-5c8b-bcd8-e267ee1172c3
ghcid_uuid_sha256: 9b0b3987-20e1-8620-b32f-8279e12568bb
ghcid_numeric: 11172086553157686816
record_id: dc3b12ab-2189-486e-b47d-d2e88caad0c4
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-AAL-I-SBCWN
ghcid_numeric: 11172086553157686816
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
population: 22991
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.25917
longitude: 4.75972
distance_km: 0.0
geonames_id: 2760134
location:
city: Aalsmeer
region_code: NH
country: NL
latitude: 52.25917
longitude: 4.75972
geonames_id: 2760134
geonames_name: Aalsmeer
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Erfgoed Waterwonen Website
platform_url: http://erfgoedwaterwonen.nl
platform_type: institutional_website

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T20:05:22.835559+00:00'
search_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren opgericht OR gesticht OR sinds'
search_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren
opgericht OR gesticht OR sinds'
source_urls:
- https://fatv.nl/
- https://www.atvdevolharding.nl/
@ -53,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.362091+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:18:35Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:07:17Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NH-STO-I-FAAE -> NL-NH-ALK-I-FAAE'
kien_enrichment:
kien_name: Federatie van Amateurtuindersverenigingen Alkmaar e.o.
kien_url: https://www.immaterieelerfgoed.nl/nl/page/11216/federatie-van-amateurtuindersverenigingen-alkmaar-e.o.
@ -76,52 +79,54 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/11216/federatie-van-amateurtuindersverenigingen-alkmaar-e.o.
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/11216/federatie-van-amateurtuindersverenigingen-alkmaar-e.o.
- identifier_scheme: GHCID
identifier_value: NL-NH-STO-I-FAAE
identifier_value: NL-NH-ALK-I-FAAE
- identifier_scheme: GHCID_UUID
identifier_value: 7f584a0d-970e-542a-8a91-5e7f5205fe73
identifier_url: urn:uuid:7f584a0d-970e-542a-8a91-5e7f5205fe73
identifier_value: aeff6316-d2c7-52d0-994a-50acf6409455
identifier_url: urn:uuid:aeff6316-d2c7-52d0-994a-50acf6409455
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: b2449307-cf23-86d3-96d9-f75775dd8667
identifier_url: urn:uuid:b2449307-cf23-86d3-96d9-f75775dd8667
identifier_value: ca314b41-404b-8ae1-b108-99561eb907aa
identifier_url: urn:uuid:ca314b41-404b-8ae1-b108-99561eb907aa
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12845553698916783827'
identifier_value: '14569509013143915233'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-72ea-8502-f2a518eb582c
identifier_url: urn:uuid:019aedca-642e-72ea-8502-f2a518eb582c
safeguards:
- https://nde.nl/ontology/hc/heritage-form/amateurtuinen-in-alkmaar
ghcid:
ghcid_current: NL-NH-STO-I-FAAE
ghcid_current: NL-NH-ALK-I-FAAE
ghcid_original: NL-NH-STO-I-FAAE
ghcid_uuid: 7f584a0d-970e-542a-8a91-5e7f5205fe73
ghcid_uuid_sha256: b2449307-cf23-86d3-96d9-f75775dd8667
ghcid_numeric: 12845553698916783827
ghcid_uuid: aeff6316-d2c7-52d0-994a-50acf6409455
ghcid_uuid_sha256: ca314b41-404b-8ae1-b108-99561eb907aa
ghcid_numeric: 14569509013143915233
record_id: 019aedca-642e-72ea-8502-f2a518eb582c
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NH-STO-I-FAAE
ghcid_numeric: 12845553698916783827
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NH-ALK-I-FAAE
ghcid_numeric: 14569509013143915233
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NH-STO-I-FAAE to NL-NH-ALK-I-FAAE'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2746661
geonames_name: Stompetoren
method: GEONAMES_LOOKUP
geonames_id: 2759899
geonames_name: Alkmaar
feature_code: PPL
population: 1920
population: 94853
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.6008538
longitude: 4.8170994
distance_km: 1.445443955412028
geonames_id: 2746661
geonames_id: 2759899
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Amateurtuindersvereniging De Hoefmolen" (one specific local association, not
the federation) instead of "Federatie van Amateurtuindersverenigingen Alkmaar e.o." (federation of amateur gardening associations).
false_match_reason: 'Google Maps returned "Amateurtuindersvereniging De Hoefmolen"
(one specific local association, not the federation) instead of "Federatie van
Amateurtuindersverenigingen Alkmaar e.o." (federation of amateur gardening associations).
Per Rule 40: KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJdyxFj5FXz0cRjLyFpgusE28
@ -152,21 +157,21 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:39:16.386449+00:00'
search_query: federatie van amateurtuindersverenigingen alkmaar e.o.
location:
latitude: 52.636106999999996
longitude: 4.713779
latitude: 52.63167
longitude: 4.74861
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:32:49.310390+00:00'
entity_id: ChIJdyxFj5FXz0cRjLyFpgusE28
city: Stompetoren
city: Alkmaar
region_code: NH
country: NL
formatted_address: Olympiaweg 32, 1816 MJ Alkmaar, Netherlands
geonames_id: 2746661
geonames_name: Stompetoren
geonames_id: 2759899
geonames_name: Alkmaar
feature_code: PPL
normalization_timestamp: '2025-12-09T07:07:17.204003+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:08:48.923110+00:00'
retrieval_agent: crawl4ai
@ -221,14 +226,19 @@ timeline_enrichment:
- https://uit072.nl/lijstjes/volkstuinen-alkmaar/
- https://bizzy.org/nl/nl/33132461/federatie-van-amsterdamse-amateurtuinders
- https://www.hvalkmaar.nl/
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan in 1987, toen de volkstuincomplexen\
\ verzelfstandigd werden. De Volkstuinvereniging Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar\
\ ging vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o. \n\nEr is geen specifieke oprichtingsdatum\
\ van de federatie in Stompetoren genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en Stompetoren\
\ ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex begin jaren '70 is opgericht op een stuk grond tussen\
\ Alkmaar en Stompetoren.\n\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging van complexen).\
\ \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren
opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan\
\ in 1987, toen de volkstuincomplexen verzelfstandigd werden. De Volkstuinvereniging\
\ Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar ging\
\ vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o.\
\ \n\nEr is geen specifieke oprichtingsdatum van de federatie in Stompetoren\
\ genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en\
\ Stompetoren ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex\
\ begin jaren '70 is opgericht op een stuk grond tussen Alkmaar en Stompetoren.\n\
\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging\
\ van complexen). \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren\
\ uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
fetch_timestamp: '2025-12-15T20:05:22.832871+00:00'
archive_path: web/1710/linkup/linkup_founding_20251215T200522Z.json
extraction_method: linkup_answer_regex
@ -245,14 +255,19 @@ timeline_enrichment:
- https://uit072.nl/lijstjes/volkstuinen-alkmaar/
- https://bizzy.org/nl/nl/33132461/federatie-van-amsterdamse-amateurtuinders
- https://www.hvalkmaar.nl/
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan in 1987, toen de volkstuincomplexen\
\ verzelfstandigd werden. De Volkstuinvereniging Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar\
\ ging vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o. \n\nEr is geen specifieke oprichtingsdatum\
\ van de federatie in Stompetoren genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en Stompetoren\
\ ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex begin jaren '70 is opgericht op een stuk grond tussen\
\ Alkmaar en Stompetoren.\n\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging van complexen).\
\ \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren
opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan\
\ in 1987, toen de volkstuincomplexen verzelfstandigd werden. De Volkstuinvereniging\
\ Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar ging\
\ vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o.\
\ \n\nEr is geen specifieke oprichtingsdatum van de federatie in Stompetoren\
\ genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en\
\ Stompetoren ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex\
\ begin jaren '70 is opgericht op een stuk grond tussen Alkmaar en Stompetoren.\n\
\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging\
\ van complexen). \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren\
\ uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
fetch_timestamp: '2025-12-15T20:05:22.832871+00:00'
archive_path: web/1710/linkup/linkup_founding_20251215T200522Z.json
extraction_method: linkup_answer_regex
@ -264,14 +279,19 @@ timeline_enrichment:
approximate: false
description: ontstaan in 1987, toen de volkstuincomplexen verzelfstandigd werden
source_urls: *id001
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan in 1987, toen de volkstuincomplexen\
\ verzelfstandigd werden. De Volkstuinvereniging Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar\
\ ging vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o. \n\nEr is geen specifieke oprichtingsdatum\
\ van de federatie in Stompetoren genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en Stompetoren\
\ ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex begin jaren '70 is opgericht op een stuk grond tussen\
\ Alkmaar en Stompetoren.\n\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging van complexen).\
\ \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren
opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan\
\ in 1987, toen de volkstuincomplexen verzelfstandigd werden. De Volkstuinvereniging\
\ Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar ging\
\ vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o.\
\ \n\nEr is geen specifieke oprichtingsdatum van de federatie in Stompetoren\
\ genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en\
\ Stompetoren ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex\
\ begin jaren '70 is opgericht op een stuk grond tussen Alkmaar en Stompetoren.\n\
\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging\
\ van complexen). \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren\
\ uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
fetch_timestamp: '2025-12-15T20:05:22.832871+00:00'
archive_path: web/1710/linkup/linkup_founding_20251215T200522Z.json
extraction_method: linkup_answer_regex
@ -283,14 +303,19 @@ timeline_enrichment:
approximate: false
description: verzelfstandigd werden
source_urls: *id001
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan in 1987, toen de volkstuincomplexen\
\ verzelfstandigd werden. De Volkstuinvereniging Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar\
\ ging vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o. \n\nEr is geen specifieke oprichtingsdatum\
\ van de federatie in Stompetoren genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en Stompetoren\
\ ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex begin jaren '70 is opgericht op een stuk grond tussen\
\ Alkmaar en Stompetoren.\n\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging van complexen).\
\ \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
linkup_query: '"Federatie van Amateurtuindersverenigingen Alkmaar e.o." Stompetoren
opgericht OR gesticht OR sinds'
linkup_answer: "De Federatie van Amateurtuindersverenigingen Alkmaar e.o. is ontstaan\
\ in 1987, toen de volkstuincomplexen verzelfstandigd werden. De Volkstuinvereniging\
\ Alkmaar e.o. bestond sinds 1942 uit meerdere volkstuincomplexen, maar ging\
\ vanaf 1987 verder als de Federatie Amateurtuindersverenigingen Alkmaar e.o.\
\ \n\nEr is geen specifieke oprichtingsdatum van de federatie in Stompetoren\
\ genoemd, maar het tuincomplex van ATV De Volharding, dat tussen Alkmaar en\
\ Stompetoren ligt, werd opgericht in 1956. Ook wordt vermeld dat een complex\
\ begin jaren '70 is opgericht op een stuk grond tussen Alkmaar en Stompetoren.\n\
\nKort samengevat: \n- De federatie zelf bestaat sinds 1987 (verzelfstandiging\
\ van complexen). \n- Tuincomplexen in de regio Alkmaar-Stompetoren dateren\
\ uit 1956 (De Volharding) en begin jaren '70 (andere complexen)."
fetch_timestamp: '2025-12-15T20:05:22.832871+00:00'
archive_path: web/1710/linkup/linkup_founding_20251215T200522Z.json
extraction_method: linkup_answer_regex

View file

@ -0,0 +1,133 @@
original_entry:
organisatie: 8 October Vereeniging Alkmaar Ontzet
webadres_organisatie: http://www.8october.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1875
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/961/8-october-vereeniging-alkmaar-ontzet
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Alkmaar Ontzet celebration (October 8, 1573 relief of Alkmaar)
- One of the oldest patriotic celebrations in the Netherlands
kien_enrichment:
kien_name: 8 October Vereeniging Alkmaar Ontzet
kien_url: https://www.immaterieelerfgoed.nl/nl/page/961/8-october-vereeniging-alkmaar-ontzet
heritage_forms:
- Alkmaar Ontzet
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/alkmaar-ontzet
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereeniging
original_name_with_legal_form: 8 October Vereeniging Alkmaar Ontzet
contact:
website: http://www.8october.nl
custodian_name:
claim_type: custodian_name
claim_value: 8 October Vereeniging Alkmaar Ontzet
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/961/8-october-vereeniging-alkmaar-ontzet
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/961/8-october-vereeniging-alkmaar-ontzet
- identifier_scheme: GHCID
identifier_value: NL-NH-ALK-I-OVA
- identifier_scheme: GHCID_UUID
identifier_value: a0e8d065-0233-5984-9d5d-8d34b33dbc9f
identifier_url: urn:uuid:a0e8d065-0233-5984-9d5d-8d34b33dbc9f
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 066a823d-fde3-8032-9b35-1fca7451f5c7
identifier_url: urn:uuid:066a823d-fde3-8032-9b35-1fca7451f5c7
- identifier_scheme: GHCID_NUMERIC
identifier_value: '462325114523074610'
- identifier_scheme: RECORD_ID
identifier_value: 34813f4d-d5fd-47f8-84e5-6c63ad5dae61
identifier_url: urn:uuid:34813f4d-d5fd-47f8-84e5-6c63ad5dae61
safeguards:
- https://nde.nl/ontology/hc/heritage-form/alkmaar-ontzet
locations:
- city: Alkmaar
country: NL
latitude: 52.63167
longitude: 4.74861
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/nl/page/961/8-october-vereeniging-alkmaar-ontzet
geonames_id: 2759899
geonames_name: Alkmaar
feature_code: PPL
population: 94853
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-ALK-I-OVA
ghcid_original: NL-NH-ALK-I-OVA
ghcid_uuid: a0e8d065-0233-5984-9d5d-8d34b33dbc9f
ghcid_uuid_sha256: 066a823d-fde3-8032-9b35-1fca7451f5c7
ghcid_numeric: 462325114523074610
record_id: 34813f4d-d5fd-47f8-84e5-6c63ad5dae61
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-ALK-I-OVA
ghcid_numeric: 462325114523074610
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759899
geonames_name: Alkmaar
feature_code: PPL
population: 94853
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.63167
longitude: 4.74861
distance_km: 0.0
geonames_id: 2759899
location:
city: Alkmaar
region_code: NH
country: NL
latitude: 52.63167
longitude: 4.74861
geonames_id: 2759899
geonames_name: Alkmaar
feature_code: PPL
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: 8 October Vereeniging Website
platform_url: http://www.8october.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,145 @@
original_entry:
organisatie: Stichting Collecteplan
webadres_organisatie: http://www.collecteren.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1900
processing_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/1631/stichting-collecteplan
fetch_timestamp: '2026-01-08T21:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- description
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Expertise network for door-to-door charity collections (huis-aan-huis collecte)
- Represents interests of 25 nationally collecting charities in the Netherlands
- Safeguards the tradition and quality of charity collecting
- Contact person Anoek Smith (Beleidsadviseur)
kien_enrichment:
kien_name: Stichting Collecteplan
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1631/stichting-collecteplan
heritage_forms:
- Huis-aan-huis collecte
heritage_form_urls: []
registration_date: null
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Anoek Smith
description: >-
Stichting Collecteplan is het expertise netwerk van de collecte. De stichting
behartigt de belangen van de 25 landelijk collecterende goede doelen in Nederland
om de kwaliteit van de collecte te waarborgen.
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Collecteplan
contact:
email: anoeksmith@collecteren.nl
website: http://www.collecteren.nl
address: James Wattstraat 100, 1097 DM Amsterdam, Noord-Holland, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Stichting Collecteplan
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1631/stichting-collecteplan
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1631/stichting-collecteplan
- identifier_scheme: GHCID
identifier_value: NL-NH-AMS-I-SC
- identifier_scheme: GHCID_UUID
identifier_value: d83456b3-d14b-5316-a353-4ab3572b160e
identifier_url: urn:uuid:d83456b3-d14b-5316-a353-4ab3572b160e
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 214d4f5b-636e-8b8d-8529-5df583169452
identifier_url: urn:uuid:214d4f5b-636e-8b8d-8529-5df583169452
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2399661430387166093'
- identifier_scheme: RECORD_ID
identifier_value: 6ce283da-8e7f-4991-90e9-1ec73f6ff2ce
identifier_url: urn:uuid:6ce283da-8e7f-4991-90e9-1ec73f6ff2ce
safeguards:
- https://nde.nl/ontology/hc/heritage-form/huis-aan-huis-collecte
locations:
- city: Amsterdam
country: NL
latitude: 52.37403
longitude: 4.88969
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/1631/stichting-collecteplan
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
population: 741636
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-AMS-I-SC
ghcid_original: NL-NH-AMS-I-SC
ghcid_uuid: d83456b3-d14b-5316-a353-4ab3572b160e
ghcid_uuid_sha256: 214d4f5b-636e-8b8d-8529-5df583169452
ghcid_numeric: 2399661430387166093
record_id: 6ce283da-8e7f-4991-90e9-1ec73f6ff2ce
generation_timestamp: '2026-01-08T21:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-AMS-I-SC
ghcid_numeric: 2399661430387166093
valid_from: '2026-01-08T21:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
population: 741636
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.37403
longitude: 4.88969
distance_km: 0.0
geonames_id: 2759794
location:
city: Amsterdam
region_code: NH
country: NL
latitude: 52.37403
longitude: 4.88969
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
normalization_timestamp: '2026-01-08T21:30:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Collecteplan Website
platform_url: http://www.collecteren.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,132 @@
original_entry:
organisatie: Stichting Nachtburgemeester Amsterdam
webadres_organisatie: https://nachtburgemeester.amsterdam
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1877
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/9411/stichting-nachtburgemeester-amsterdam
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Nachtcultuur (night culture) intangible heritage tradition
- Independent foundation promoting vibrant, diverse and inclusive nightlife
kien_enrichment:
kien_name: Stichting Nachtburgemeester Amsterdam
kien_url: https://www.immaterieelerfgoed.nl/nl/page/9411/stichting-nachtburgemeester-amsterdam
heritage_forms:
- Nachtcultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/nachtcultuur
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Nachtburgemeester Amsterdam
contact:
website: https://nachtburgemeester.amsterdam
custodian_name:
claim_type: custodian_name
claim_value: Nachtburgemeester Amsterdam
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/9411/stichting-nachtburgemeester-amsterdam
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/9411/stichting-nachtburgemeester-amsterdam
- identifier_scheme: GHCID
identifier_value: NL-NH-AMS-I-SNA
- identifier_scheme: GHCID_UUID
identifier_value: a2eed48e-01f7-5d6c-8eab-e8f6af99ab0b
identifier_url: urn:uuid:a2eed48e-01f7-5d6c-8eab-e8f6af99ab0b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: b44fc49d-7559-84b7-8ba5-9a1d3370db14
identifier_url: urn:uuid:b44fc49d-7559-84b7-8ba5-9a1d3370db14
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12992819630544893111'
- identifier_scheme: RECORD_ID
identifier_value: f2937175-c0cb-4216-a78a-d856c7b0b60a
identifier_url: urn:uuid:f2937175-c0cb-4216-a78a-d856c7b0b60a
safeguards:
- https://nde.nl/ontology/hc/heritage-form/nachtcultuur
locations:
- city: Amsterdam
country: NL
latitude: 52.37403
longitude: 4.88969
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/nl/page/9411/stichting-nachtburgemeester-amsterdam
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
population: 741636
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-AMS-I-SNA
ghcid_original: NL-NH-AMS-I-SNA
ghcid_uuid: a2eed48e-01f7-5d6c-8eab-e8f6af99ab0b
ghcid_uuid_sha256: b44fc49d-7559-84b7-8ba5-9a1d3370db14
ghcid_numeric: 12992819630544893111
record_id: f2937175-c0cb-4216-a78a-d856c7b0b60a
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-AMS-I-SNA
ghcid_numeric: 12992819630544893111
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
population: 741636
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.37403
longitude: 4.88969
distance_km: 0.0
geonames_id: 2759794
location:
city: Amsterdam
region_code: NH
country: NL
latitude: 52.37403
longitude: 4.88969
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Nachtburgemeester Amsterdam Website
platform_url: https://nachtburgemeester.amsterdam
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,134 @@
original_entry:
organisatie: Rederijkersverbond Nederland
webadres_organisatie: null
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1897
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/14994/rederijkersverbond-nederland
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Rederijkerskamers Nederland (Rhetoricians' chambers) intangible heritage tradition
- Federation of Dutch Rhetoricians' chambers - umbrella organization preserving rhetorical tradition
- Added to KIEN network July 2022
kien_enrichment:
kien_name: Rederijkersverbond Nederland
kien_url: https://www.immaterieelerfgoed.nl/nl/page/14994/rederijkersverbond-nederland
heritage_forms:
- Rederijkerskamers Nederland
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/page/15145/rederijkerskamers-nederland
registration_date: '2022-07'
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: null
legal_status:
legal_form: Verbond
legal_form_prefix: null
original_name_with_legal_form: Rederijkersverbond Nederland
contact:
email: null
website: null
address: Hoge Duin en Daalseweg 16, 2061 AG Bloemendaal, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Rederijkersverbond Nederland
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/14994/rederijkersverbond-nederland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/14994/rederijkersverbond-nederland
- identifier_scheme: GHCID
identifier_value: NL-NH-BLO-I-RVN
- identifier_scheme: GHCID_UUID
identifier_value: b88d41b4-4630-5b15-905f-5dc9c75130bc
identifier_url: urn:uuid:b88d41b4-4630-5b15-905f-5dc9c75130bc
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 0ce27d6b-b880-87cd-a17c-c0304c7d21eb
identifier_url: urn:uuid:0ce27d6b-b880-87cd-a17c-c0304c7d21eb
- identifier_scheme: GHCID_NUMERIC
identifier_value: '928442374802159565'
- identifier_scheme: RECORD_ID
identifier_value: 3372a48b-2767-42de-b5f7-f8861354265f
identifier_url: urn:uuid:3372a48b-2767-42de-b5f7-f8861354265f
safeguards:
- https://nde.nl/ontology/hc/heritage-form/rederijkerskamers-nederland
locations:
- city: Bloemendaal
country: NL
latitude: 52.4025
longitude: 4.62222
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/14994/rederijkersverbond-nederland
geonames_id: 2758804
geonames_name: Bloemendaal
feature_code: PPL
population: 3905
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-BLO-I-RVN
ghcid_original: NL-NH-BLO-I-RVN
ghcid_uuid: b88d41b4-4630-5b15-905f-5dc9c75130bc
ghcid_uuid_sha256: 0ce27d6b-b880-87cd-a17c-c0304c7d21eb
ghcid_numeric: 928442374802159565
record_id: 3372a48b-2767-42de-b5f7-f8861354265f
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-BLO-I-RVN
ghcid_numeric: 928442374802159565
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2758804
geonames_name: Bloemendaal
feature_code: PPL
population: 3905
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.4025
longitude: 4.62222
distance_km: 0.0
geonames_id: 2758804
location:
city: Bloemendaal
region_code: NH
country: NL
latitude: 52.4025
longitude: 4.62222
geonames_id: 2758804
geonames_name: Bloemendaal
feature_code: PPL
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms: []

View file

@ -56,6 +56,8 @@ provenance:
type TOP.ADM (not GRP.HER heritage custodian)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-GT -> NL-NH-DBU-I-GT'
kien_enrichment:
kien_name: Gemeente Texel
kien_url: https://www.immaterieelerfgoed.nl/nl/page/16715/gemeente-texel
@ -80,44 +82,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/16715/gemeente-texel
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/16715/gemeente-texel
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-GT
identifier_value: NL-NH-DBU-I-GT
- identifier_scheme: GHCID_UUID
identifier_value: 2b4100c9-b364-5c34-bb5a-a37bc1d013fb
identifier_url: urn:uuid:2b4100c9-b364-5c34-bb5a-a37bc1d013fb
identifier_value: 8cb27d0b-3025-59a3-85b1-dd1392cbdc94
identifier_url: urn:uuid:8cb27d0b-3025-59a3-85b1-dd1392cbdc94
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 7e6f64ab-41a0-8a74-839e-103a7e607a66
identifier_url: urn:uuid:7e6f64ab-41a0-8a74-839e-103a7e607a66
identifier_value: a33c25b1-5797-81d1-aa17-7be3f18fc96b
identifier_url: urn:uuid:a33c25b1-5797-81d1-aa17-7be3f18fc96b
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9110611257897007732'
identifier_value: '11762317770393878993'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7075-a515-3b0d0a9adfdd
identifier_url: urn:uuid:019aedca-642e-7075-a515-3b0d0a9adfdd
safeguards:
- https://nde.nl/ontology/hc/heritage-form/ouwe-sunderklaas-op-texel
ghcid:
ghcid_current: NL-GE-ARN-I-GT
ghcid_current: NL-NH-DBU-I-GT
ghcid_original: NL-GE-ARN-I-GT
ghcid_uuid: 2b4100c9-b364-5c34-bb5a-a37bc1d013fb
ghcid_uuid_sha256: 7e6f64ab-41a0-8a74-839e-103a7e607a66
ghcid_numeric: 9110611257897007732
ghcid_uuid: 8cb27d0b-3025-59a3-85b1-dd1392cbdc94
ghcid_uuid_sha256: a33c25b1-5797-81d1-aa17-7be3f18fc96b
ghcid_numeric: 11762317770393878993
record_id: 019aedca-642e-7075-a515-3b0d0a9adfdd
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-GT
ghcid_numeric: 9110611257897007732
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NH-DBU-I-GT
ghcid_numeric: 11762317770393878993
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-GT to NL-NH-DBU-I-GT'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2757244
geonames_name: Den Burg
feature_code: PPL
population: 6485
admin1_code: '07'
region_code: NH
country_code: NL
geonames_id: 2759661
geonames_id: 2757244
google_maps_enrichment:
place_id: ChIJxRpZYgbpyEcRxg4LlvIuEZM
name: Texel
@ -222,21 +229,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 53.077056
longitude: 4.8318926
latitude: 53.05417
longitude: 4.79722
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:49.046692+00:00'
entity_id: ChIJxRpZYgbpyEcRxg4LlvIuEZM
city: Arnhem
region_code: GE
city: Den Burg
region_code: NH
country: NL
formatted_address: Texel, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.843993+00:00'
geonames_id: 2757244
geonames_name: Den Burg
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:28:20.591271+00:00'
retrieval_agent: crawl4ai
@ -321,4 +328,5 @@ wikidata_enrichment:
description: intangible heritage custodian in Den Burg, Netherlands
enrichment_timestamp: '2025-01-13T00:00:00Z'
enrichment_method: manual_wikidata_lookup
notes: Q9966 (Texel island/municipality) not used - describes geographic entity, not the heritage custodian function
notes: Q9966 (Texel island/municipality) not used - describes geographic entity,
not the heritage custodian function

View file

@ -53,6 +53,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.684728+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.412059+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location normalized on 2025-12-09T12:27:20Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-HH -> NL-NH-HEE-I-HH'
kien_enrichment:
kien_name: Harddraverijvereniging Heemskerk
kien_url: https://www.immaterieelerfgoed.nl/nl/page/6632/harddraverijvereniging-heemskerk
@ -79,44 +81,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6632/harddraverijvereniging-heemskerk
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6632/harddraverijvereniging-heemskerk
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-HH
identifier_value: NL-NH-HEE-I-HH
- identifier_scheme: GHCID_UUID
identifier_value: 098cca8e-67d4-5401-b08d-3adea6aa3082
identifier_url: urn:uuid:098cca8e-67d4-5401-b08d-3adea6aa3082
identifier_value: ed06dffb-ca0e-5660-bfdf-1516c7e36c59
identifier_url: urn:uuid:ed06dffb-ca0e-5660-bfdf-1516c7e36c59
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: df8b6f87-c6fc-8893-b288-959e799e878a
identifier_url: urn:uuid:df8b6f87-c6fc-8893-b288-959e799e878a
identifier_value: 160daf81-2358-8e8f-9872-71f3f6fb3a7a
identifier_url: urn:uuid:160daf81-2358-8e8f-9872-71f3f6fb3a7a
- identifier_scheme: GHCID_NUMERIC
identifier_value: '16108091121170417811'
identifier_value: '1589119212710325903'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7bb4-8206-de0d9289a5d3
identifier_url: urn:uuid:019aedca-642e-7bb4-8206-de0d9289a5d3
safeguards:
- https://nde.nl/ontology/hc/heritage-form/kortebaandraverij-heemskerk
ghcid:
ghcid_current: NL-GE-ARN-I-HH
ghcid_current: NL-NH-HEE-I-HH
ghcid_original: NL-GE-ARN-I-HH
ghcid_uuid: 098cca8e-67d4-5401-b08d-3adea6aa3082
ghcid_uuid_sha256: df8b6f87-c6fc-8893-b288-959e799e878a
ghcid_numeric: 16108091121170417811
ghcid_uuid: ed06dffb-ca0e-5660-bfdf-1516c7e36c59
ghcid_uuid_sha256: 160daf81-2358-8e8f-9872-71f3f6fb3a7a
ghcid_numeric: 1589119212710325903
record_id: 019aedca-642e-7bb4-8206-de0d9289a5d3
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-HH
ghcid_numeric: 16108091121170417811
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NH-HEE-I-HH
ghcid_numeric: 1589119212710325903
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-HH to NL-NH-HEE-I-HH'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2754697
geonames_name: Heemskerk
feature_code: PPLA2
population: 39191
admin1_code: '07'
region_code: NH
country_code: NL
geonames_id: 2759661
geonames_id: 2754697
digital_platforms:
- platform_name: Harddraverijvereniging Heemskerk Website
platform_url: http://harddraverijheemskerk.nl
@ -256,13 +263,13 @@ location:
coordinate_provenance:
source_type: ROOT_LOCATIONS
source_path: locations[0]
city: Arnhem
region_code: GE
city: Heemskerk
region_code: NH
country: NL
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T12:27:20.687089+00:00'
geonames_id: 2754697
geonames_name: Heemskerk
feature_code: PPLA2
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -0,0 +1,156 @@
original_entry:
organisatie: Tingieterij Holland | De Tinkoepel Tingieterij
webadres_organisatie: http://www.tingieterijholland.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1909
processing_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/2946/tingieterij-holland-de-tinkoepel-tingieterij
fetch_timestamp: '2026-01-08T23:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- phone
- description
- heritage_forms
- contact_person
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Tingieten (pewter casting) craft tradition
- Third generation tin casters from the Blaauboer family
- Won first prize at IOV International Exposition for Crafts and Folk Culture in China (2014)
- Received Master title (Master Of Folk Arts & Crafts)
- Workshops in Zaandam and demonstration shop at Zaanse Schans
kien_enrichment:
kien_name: Tingieterij Holland | De Tinkoepel Tingieterij
kien_url: https://www.immaterieelerfgoed.nl/nl/page/2946/tingieterij-holland-de-tinkoepel-tingieterij
heritage_forms:
- Tingieten
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/page/1138/tingieten
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Ronald van Delden
contact_role: Master Of Folk Arts & Crafts
description: >-
Tingieterij Holland (The Tin Cupola Tin Foundry) is een familiebedrijf gerund door
Ronald van Delden met zijn vrouw Ingrid van Delden-Blaauboer, derde generatie tingieters
uit het geslacht Blaauboer. In 2014 wonnen zij de eerste prijs in de categorie oude
ambachten tijdens de Internationale Expositie voor Ambachten en Volkscultuur in China,
georganiseerd door het I.O.V. als onderdeel van UNESCO, waar zij ook de Meestertitel
ontvingen. Ze hebben werkplaatsen in Zaandam en Ilpendam en een demonstratiewinkel
op de Zaanse Schans. Ze bieden workshops en cursussen aan om het ambacht door te geven.
legal_status:
legal_form: null
legal_form_prefix: null
original_name_with_legal_form: Tingieterij Holland | De Tinkoepel Tingieterij
contact:
email: ronald@tingieterijholland.nl
phone: '0299666630'
mobile: '0683217606'
website: http://www.tingieterijholland.nl
address: Kerkstraat 1, 1452 PR Ilpendam, Noord-Holland, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Tingieterij Holland | De Tinkoepel Tingieterij
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2946/tingieterij-holland-de-tinkoepel-tingieterij
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2946/tingieterij-holland-de-tinkoepel-tingieterij
- identifier_scheme: GHCID
identifier_value: NL-NH-ILP-I-THDT
- identifier_scheme: GHCID_UUID
identifier_value: af4e4f51-8ea5-5c11-964b-18f3a9368c42
identifier_url: urn:uuid:af4e4f51-8ea5-5c11-964b-18f3a9368c42
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2ea55c06-258b-86d4-9388-5035b452d1c7
identifier_url: urn:uuid:2ea55c06-258b-86d4-9388-5035b452d1c7
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3361193878371395284'
- identifier_scheme: RECORD_ID
identifier_value: a86659e0-8f07-44d4-9fe4-753d53cd1416
identifier_url: urn:uuid:a86659e0-8f07-44d4-9fe4-753d53cd1416
safeguards:
- https://nde.nl/ontology/hc/heritage-form/tingieten
locations:
- city: Ilpendam
country: NL
latitude: 52.46333
longitude: 4.95
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/2946/tingieterij-holland-de-tinkoepel-tingieterij
geonames_id: 2753334
geonames_name: Ilpendam
feature_code: PPL
population: 1750
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-ILP-I-THDT
ghcid_original: NL-NH-ILP-I-THDT
ghcid_uuid: af4e4f51-8ea5-5c11-964b-18f3a9368c42
ghcid_uuid_sha256: 2ea55c06-258b-86d4-9388-5035b452d1c7
ghcid_numeric: 3361193878371395284
record_id: a86659e0-8f07-44d4-9fe4-753d53cd1416
generation_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-ILP-I-THDT
ghcid_numeric: 3361193878371395284
valid_from: '2026-01-08T23:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2753334
geonames_name: Ilpendam
feature_code: PPL
population: 1750
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.46333
longitude: 4.95
distance_km: 0.0
geonames_id: 2753334
location:
city: Ilpendam
region_code: NH
country: NL
latitude: 52.46333
longitude: 4.95
geonames_id: 2753334
geonames_name: Ilpendam
feature_code: PPL
normalization_timestamp: '2026-01-08T23:00:00.000000+00:00'
digital_platforms:
- platform_name: Tingieterij Holland Website
platform_url: http://www.tingieterijholland.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,156 @@
original_entry:
organisatie: Harddraverijvereniging Prins Hendrik
webadres_organisatie: http://www.prinshendrik.net
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1911
processing_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/harddraverijprinshendrik
fetch_timestamp: '2026-01-08T23:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- phone
- description
- heritage_forms
- contact_person
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Harddraverij van Medemblik tradition
- 1300 members, organizes annual horse racing event since at least 1844
- Event takes place on third Monday of September
- Heritage registered in KIEN Inventory since October 2017
- Kortebaan (short track) racing through Nieuwstraat is a unique 75m course
kien_enrichment:
kien_name: Harddraverijvereniging Prins Hendrik
kien_url: https://www.immaterieelerfgoed.nl/nl/harddraverijprinshendrik
heritage_forms:
- Harddraverij van Medemblik
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/harddraverijmedemblik
registration_date: '2017-10-01'
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Hans Nipshagen
contact_role: Voorzitter
description: >-
Harddraverijvereniging Prins Hendrik organiseert de jaarlijkse Harddraverij van
Medemblik, die plaatsvindt op de derde maandag van september. Het evenement bestaat
uit een ochtendprogramma en de kortebaandraverij. De kortebaan is een afvalrace waarbij
paarden met pikeurs op sulky's door de Nieuwstraat razen. De baan van 75 meter is
bijzonder versierd met vlaggen, lampen en een erepoort met bloemen. De draverij
dateert in elk geval van 1844 en de vereniging Prins Hendrik nam de organisatie
in 1885 over. De vereniging heeft 1300 leden en trekt 5000-7000 bezoekers.
legal_status:
legal_form: Vereniging
legal_form_prefix: null
original_name_with_legal_form: Harddraverijvereniging Prins Hendrik
contact:
email: hnipshagen@hotmail.com
phone: '0655787517'
website: http://www.prinshendrik.net
address: Oosterhaven 14, 1671 AA Medemblik, Noord-Holland, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Harddraverijvereniging Prins Hendrik
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/harddraverijprinshendrik
identifier_url: https://www.immaterieelerfgoed.nl/nl/harddraverijprinshendrik
- identifier_scheme: GHCID
identifier_value: NL-NH-MED-I-HPH
- identifier_scheme: GHCID_UUID
identifier_value: 5db7cb2f-09af-5f68-8456-06b92e922c65
identifier_url: urn:uuid:5db7cb2f-09af-5f68-8456-06b92e922c65
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: fcdc8c34-3335-8a97-a8f6-6a8cefdf028d
identifier_url: urn:uuid:fcdc8c34-3335-8a97-a8f6-6a8cefdf028d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '18220592348259506839'
- identifier_scheme: RECORD_ID
identifier_value: 5b96a1be-cd9f-4091-8906-88ec9611cba5
identifier_url: urn:uuid:5b96a1be-cd9f-4091-8906-88ec9611cba5
safeguards:
- https://nde.nl/ontology/hc/heritage-form/harddraverij-van-medemblik
locations:
- city: Medemblik
country: NL
latitude: 52.77167
longitude: 5.10556
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/harddraverijprinshendrik
geonames_id: 2751073
geonames_name: Medemblik
feature_code: PPL
population: 41500
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-MED-I-HPH
ghcid_original: NL-NH-MED-I-HPH
ghcid_uuid: 5db7cb2f-09af-5f68-8456-06b92e922c65
ghcid_uuid_sha256: fcdc8c34-3335-8a97-a8f6-6a8cefdf028d
ghcid_numeric: 18220592348259506839
record_id: 5b96a1be-cd9f-4091-8906-88ec9611cba5
generation_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-MED-I-HPH
ghcid_numeric: 18220592348259506839
valid_from: '2026-01-08T23:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2751073
geonames_name: Medemblik
feature_code: PPL
population: 41500
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.77167
longitude: 5.10556
distance_km: 0.0
geonames_id: 2751073
location:
city: Medemblik
region_code: NH
country: NL
latitude: 52.77167
longitude: 5.10556
geonames_id: 2751073
geonames_name: Medemblik
feature_code: PPL
normalization_timestamp: '2026-01-08T23:00:00.000000+00:00'
digital_platforms:
- platform_name: Harddraverijvereniging Prins Hendrik Website
platform_url: http://www.prinshendrik.net
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,159 @@
original_entry:
organisatie: Gilde van Molenaars
webadres_organisatie: http://www.gildevanmolenaars.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1910
processing_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/745/gilde-van-molenaars
fetch_timestamp: '2026-01-08T23:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- description
- heritage_forms
- contact_person
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Ambacht van molenaar (Craft of the Miller) tradition
- Over 2100 members, training volunteer millers
- The Craft of the Miller was inscribed on the UNESCO Representative List of ICH in 2017
- First Dutch tradition on the UNESCO ICH List
- Partner of Vereniging De Hollandsche Molen (established 1923)
- Heritage registered in KIEN Inventory since May 2013
kien_enrichment:
kien_name: Gilde van Molenaars
kien_url: https://www.immaterieelerfgoed.nl/nl/page/745/gilde-van-molenaars
heritage_forms:
- Ambacht van molenaar
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/ambachtvanmolenaar
registration_date: '2013-05-01'
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Tom Kreuning
contact_role: Secretaris
unesco_status:
list_type: Representative List of the Intangible Cultural Heritage of Humanity
inscription_year: 2017
note: First Dutch tradition on the UNESCO ICH List
description: >-
Het Gilde van Vrijwillige Molenaars is een vereniging met ruim 2100 leden die zich
inzet voor het behoud van het molenaarsvak. Ze organiseren opleidingen voor vrijwillige
molenaars, die na het behalen van hun diploma zelfstandig molens mogen bedienen. De
molenaar moet inzicht hebben in de techniek van de molen, het weer en veiligheidsaspecten.
Nederland telt nog maar een veertigtal beroepsmolenaars maar meer dan duizend actieve
vrijwillige molenaars. Het Ambacht van molenaar werd in 2017 als eerste Nederlandse
traditie op de UNESCO Representatieve Lijst geplaatst.
legal_status:
legal_form: Gilde
legal_form_prefix: null
original_name_with_legal_form: Gilde van Molenaars
contact:
email: secretaris@gildevanmolenaars.nl
website: http://www.gildevanmolenaars.nl
address: Molenkade 8, 1829 HZ Oudorp, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Gilde van Molenaars
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/745/gilde-van-molenaars
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/745/gilde-van-molenaars
- identifier_scheme: GHCID
identifier_value: NL-NH-OUD-I-GVM
- identifier_scheme: GHCID_UUID
identifier_value: 36d90618-addc-5781-86f8-0459f5a37f18
identifier_url: urn:uuid:36d90618-addc-5781-86f8-0459f5a37f18
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: ab872698-dd08-819d-8fd5-03639992b671
identifier_url: urn:uuid:ab872698-dd08-819d-8fd5-03639992b671
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12359890140326838685'
- identifier_scheme: RECORD_ID
identifier_value: 3e58130d-bff7-4edb-bbbc-f9aa6862585b
identifier_url: urn:uuid:3e58130d-bff7-4edb-bbbc-f9aa6862585b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/ambacht-van-molenaar
locations:
- city: Oudorp
country: NL
latitude: 52.63333
longitude: 4.77361
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/745/gilde-van-molenaars
geonames_id: 2748917
geonames_name: Oudorp
feature_code: PPL
population: 0
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-OUD-I-GVM
ghcid_original: NL-NH-OUD-I-GVM
ghcid_uuid: 36d90618-addc-5781-86f8-0459f5a37f18
ghcid_uuid_sha256: ab872698-dd08-819d-8fd5-03639992b671
ghcid_numeric: 12359890140326838685
record_id: 3e58130d-bff7-4edb-bbbc-f9aa6862585b
generation_timestamp: '2026-01-08T23:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-OUD-I-GVM
ghcid_numeric: 12359890140326838685
valid_from: '2026-01-08T23:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2748917
geonames_name: Oudorp
feature_code: PPL
population: 0
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.63333
longitude: 4.77361
distance_km: 0.0
geonames_id: 2748917
location:
city: Oudorp
region_code: NH
country: NL
latitude: 52.63333
longitude: 4.77361
geonames_id: 2748917
geonames_name: Oudorp
feature_code: PPL
normalization_timestamp: '2026-01-08T23:00:00.000000+00:00'
digital_platforms:
- platform_name: Gilde van Molenaars Website
platform_url: http://www.gildevanmolenaars.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -55,6 +55,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.407960+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:18:34Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:07:14Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NH-SAN-I-HSO -> NL-NH-SZ-I-HSO'
kien_enrichment:
kien_name: Harddraverij Vereniging Santpoort en Omstreken
kien_url: https://www.immaterieelerfgoed.nl/nl/page/7175/harddraverij-vereniging-santpoort-en-omstreken
@ -85,34 +87,35 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/7175/harddraverij-vereniging-santpoort-en-omstreken
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/7175/harddraverij-vereniging-santpoort-en-omstreken
- identifier_scheme: GHCID
identifier_value: NL-NH-SAN-I-HSO
identifier_value: NL-NH-SZ-I-HSO
- identifier_scheme: GHCID_UUID
identifier_value: b1e5e604-6c1f-51fa-8b6a-fc7ed9e1fa3b
identifier_url: urn:uuid:b1e5e604-6c1f-51fa-8b6a-fc7ed9e1fa3b
identifier_value: 6b7f343d-fef5-50c2-ab9d-b21d55dccf75
identifier_url: urn:uuid:6b7f343d-fef5-50c2-ab9d-b21d55dccf75
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 6d67be79-bd69-8438-9496-bde236f38409
identifier_url: urn:uuid:6d67be79-bd69-8438-9496-bde236f38409
identifier_value: 5e708273-f435-81bf-aa79-0276929d56cb
identifier_url: urn:uuid:5e708273-f435-81bf-aa79-0276929d56cb
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7883479102813492280'
identifier_value: '6805082471486804415'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-75fc-8b6a-3e965c5b93bc
identifier_url: urn:uuid:019aedca-642e-75fc-8b6a-3e965c5b93bc
safeguards:
- https://nde.nl/ontology/hc/heritage-form/kortebaan-santpoort
ghcid:
ghcid_current: NL-NH-SAN-I-HSO
ghcid_current: NL-NH-SZ-I-HSO
ghcid_original: NL-GE-ARN-I-HSO
ghcid_uuid: b1e5e604-6c1f-51fa-8b6a-fc7ed9e1fa3b
ghcid_uuid_sha256: 6d67be79-bd69-8438-9496-bde236f38409
ghcid_numeric: 7883479102813492280
ghcid_uuid: 6b7f343d-fef5-50c2-ab9d-b21d55dccf75
ghcid_uuid_sha256: 5e708273-f435-81bf-aa79-0276929d56cb
ghcid_numeric: 6805082471486804415
record_id: 019aedca-642e-75fc-8b6a-3e965c5b93bc
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NH-SAN-I-HSO
ghcid_numeric: 7883479102813492280
valid_from: '2025-12-14T21:40:38.618987+00:00'
reason: 'Type corrected: intangible_heritage_custodian should use type I (Intangible
Heritage), not U (Unknown)'
valid_to: '2026-01-09T09:13:27Z'
- ghcid: NL-NH-SAN-U-HSO
ghcid_numeric: 6316012448908234655
valid_from: '2025-12-06T23:53:27.288754+00:00'
@ -125,17 +128,21 @@ ghcid:
valid_to: '2025-12-06T23:53:27.288754+00:00'
reason: Initial GHCID assignment (KIEN batch import December 2025)
superseded_by: NL-NH-SAN-U-HSO
- ghcid: NL-NH-SZ-I-HSO
ghcid_numeric: 6805082471486804415
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NH-SAN-I-HSO to NL-NH-SZ-I-HSO'
location_resolution:
method: REVERSE_GEOCODE
country_code: NL
region_code: NH
region_name: North Holland
city_code: SAN
city_name: Santpoort-Zuid
method: GEONAMES_LOOKUP
geonames_id: 2747759
geonames_name: Santpoort-Zuid
feature_code: PPL
resolution_date: '2025-12-06T23:53:27.288754+00:00'
geonames_id: 2759661
population: 0
admin1_code: '07'
region_code: NH
country_code: NL
geonames_id: 2747759
digital_platforms:
- platform_name: Harddraverij Vereniging Santpoort en Omstreken Website
platform_url: http://www.dorpsfeest-santpoort.nl
@ -335,8 +342,8 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.4360827
longitude: 4.6398532999999995
latitude: 52.42083
longitude: 4.63056
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -349,7 +356,8 @@ location:
formatted_address: J.T. Cremerlaan 54, 2071 SP Santpoort-Noord, Netherlands
geonames_id: 2747759
feature_code: PPL
normalization_timestamp: '2025-12-09T07:07:14.320872+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
geonames_name: Santpoort-Zuid
ch_annotator:
entity_classification:
hypernym: GRP

View file

@ -53,6 +53,8 @@ provenance:
matched place 'Venhuizen' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:18:26Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:06:50Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-NH-HEM-I-HV -> NL-NH-VEN-I-HV'
kien_enrichment:
kien_name: Harddraverijvereniging Venhuizen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/6706/harddraverijvereniging-venhuizen
@ -70,15 +72,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6706/harddraverijvereniging-venhuizen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6706/harddraverijvereniging-venhuizen
- identifier_scheme: GHCID
identifier_value: NL-NH-HEM-I-HV
identifier_value: NL-NH-VEN-I-HV
- identifier_scheme: GHCID_UUID
identifier_value: bb41fbfa-6cc3-5740-a560-482e2355c5d3
identifier_url: urn:uuid:bb41fbfa-6cc3-5740-a560-482e2355c5d3
identifier_value: 4634ecce-ef4f-5fd2-9695-20169179f85b
identifier_url: urn:uuid:4634ecce-ef4f-5fd2-9695-20169179f85b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 11a0e92d-0f9f-8304-a397-3cc3e5033f12
identifier_url: urn:uuid:11a0e92d-0f9f-8304-a397-3cc3e5033f12
identifier_value: 73142aa2-8318-8de9-90f6-167146449934
identifier_url: urn:uuid:73142aa2-8318-8de9-90f6-167146449934
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1270271474663416580'
identifier_value: '8292299691368422889'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-71ea-8c58-1d803ae6f62b
identifier_url: urn:uuid:019aede0-6f29-71ea-8c58-1d803ae6f62b
@ -100,33 +102,34 @@ location_resolution:
region_code: NH
extraction_timestamp: '2025-12-05T09:38:07.913645+00:00'
ghcid:
ghcid_current: NL-NH-HEM-I-HV
ghcid_current: NL-NH-VEN-I-HV
ghcid_original: NL-NH-HEM-I-HV
ghcid_uuid: bb41fbfa-6cc3-5740-a560-482e2355c5d3
ghcid_uuid_sha256: 11a0e92d-0f9f-8304-a397-3cc3e5033f12
ghcid_numeric: 1270271474663416580
ghcid_uuid: 4634ecce-ef4f-5fd2-9695-20169179f85b
ghcid_uuid_sha256: 73142aa2-8318-8de9-90f6-167146449934
ghcid_numeric: 8292299691368422889
record_id: 019aede0-6f29-71ea-8c58-1d803ae6f62b
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-NH-HEM-I-HV
ghcid_numeric: 1270271474663416580
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NH-VEN-I-HV
ghcid_numeric: 8292299691368422889
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-NH-HEM-I-HV to NL-NH-VEN-I-HV'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2754434
geonames_name: Hem
method: GEONAMES_LOOKUP
geonames_id: 2745645
geonames_name: Venhuizen
feature_code: PPL
population: 1035
population: 0
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.6625
longitude: 5.20278
distance_km: 2.166893430559094
geonames_id: 2754434
geonames_id: 2745645
google_maps_enrichment:
place_id: ChIJB6x8dh-kyEcRRdhTNxby9gs
name: Harddraverijvereniging Venhuizen
@ -212,21 +215,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.6631223
longitude: 5.2002511
latitude: 52.6625
longitude: 5.20278
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:32:45.605079+00:00'
entity_id: ChIJB6x8dh-kyEcRRdhTNxby9gs
city: Hem
city: Venhuizen
region_code: NH
country: NL
formatted_address: Twijver, 1606 BV Venhuizen, Netherlands
geonames_id: 2754434
geonames_name: Hem
geonames_id: 2745645
geonames_name: Venhuizen
feature_code: PPL
normalization_timestamp: '2025-12-09T07:06:50.209569+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:02:19.296510+00:00'
retrieval_agent: crawl4ai

View file

@ -0,0 +1,135 @@
original_entry:
organisatie: Stichting ErfGoedGezien Nederland
webadres_organisatie: http://www.erfgoedgezien.org
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1894
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/16654/stichting-erfgoedgezien-nederland
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- National foundation focused on heritage visibility and documentation
kien_enrichment:
kien_name: Stichting ErfGoedGezien Nederland
kien_url: https://www.immaterieelerfgoed.nl/nl/page/16654/stichting-erfgoedgezien-nederland
heritage_forms: []
heritage_form_urls: []
registration_date: null
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Arie van Herk
contact_role: voorzitter
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting ErfGoedGezien Nederland
contact:
email: voorzitter@erfgoedgezien.org
website: http://www.erfgoedgezien.org
address: Stationsplein 30, 1382 AD Weesp, Noord-Holland
custodian_name:
claim_type: custodian_name
claim_value: ErfGoedGezien Nederland
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/16654/stichting-erfgoedgezien-nederland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/16654/stichting-erfgoedgezien-nederland
- identifier_scheme: GHCID
identifier_value: NL-NH-WEE-I-SEGN
- identifier_scheme: GHCID_UUID
identifier_value: 22125790-19a2-54e4-8258-c3cbd1ef7b87
identifier_url: urn:uuid:22125790-19a2-54e4-8258-c3cbd1ef7b87
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 3c1b1012-17dc-8949-b873-eafc82d46729
identifier_url: urn:uuid:3c1b1012-17dc-8949-b873-eafc82d46729
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4331073136542615881'
- identifier_scheme: RECORD_ID
identifier_value: b61f381a-4c2a-4da0-b855-f34aece88595
identifier_url: urn:uuid:b61f381a-4c2a-4da0-b855-f34aece88595
safeguards: []
locations:
- city: Weesp
country: NL
latitude: 52.3075
longitude: 5.04167
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/16654/stichting-erfgoedgezien-nederland
geonames_id: 2744904
geonames_name: Weesp
feature_code: PPL
population: 17802
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-WEE-I-SEGN
ghcid_original: NL-NH-WEE-I-SEGN
ghcid_uuid: 22125790-19a2-54e4-8258-c3cbd1ef7b87
ghcid_uuid_sha256: 3c1b1012-17dc-8949-b873-eafc82d46729
ghcid_numeric: 4331073136542615881
record_id: b61f381a-4c2a-4da0-b855-f34aece88595
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-WEE-I-SEGN
ghcid_numeric: 4331073136542615881
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2744904
geonames_name: Weesp
feature_code: PPL
population: 17802
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.3075
longitude: 5.04167
distance_km: 0.0
geonames_id: 2744904
location:
city: Weesp
region_code: NH
country: NL
latitude: 52.3075
longitude: 5.04167
geonames_id: 2744904
geonames_name: Weesp
feature_code: PPL
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting ErfGoedGezien Nederland Website
platform_url: http://www.erfgoedgezien.org
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,144 @@
original_entry:
organisatie: Stichting Bloemencorso Winkel
webadres_organisatie: https://bloemencorsowinkel.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1921
processing_timestamp: '2026-01-09T00:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T00:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-winkel
fetch_timestamp: '2026-01-09T00:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN heritage form page discovery on 2026-01-09
- Safeguards Bloemencorso Winkel (annual flower parade)
- Held on the 4th Sunday of September
- Features more than 20 wagons decorated with over 1 million dahlias
- Registered in KIEN Network March 2020
kien_enrichment:
kien_name: Stichting Bloemencorso Winkel
kien_url: https://www.immaterieelerfgoed.nl/nl/page/7386/stichting-bloemencorso-winkel
heritage_forms:
- Bloemencorso Winkel
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorso-winkel
enrichment_timestamp: '2026-01-09T00:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
Stichting Bloemencorso Winkel organiseert het jaarlijkse Bloemencorso Winkel,
een traditionele bloemencorso die plaatsvindt op de vierde zondag van september.
De corso omvat meer dan 20 praalwagens versierd met meer dan een miljoen dahlia's.
De bloemencorso is een belangrijk dorpsevenement dat de gemeenschap samenbrengt
en de traditie van het bloemencorso in Noord-Holland in stand houdt.
legal_status:
legal_form: Stichting
legal_form_prefix: Stichting
original_name_with_legal_form: Stichting Bloemencorso Winkel
notes: Dutch foundation (stichting) managing intangible heritage
contact:
website: https://bloemencorsowinkel.nl
custodian_name:
claim_type: custodian_name
claim_value: Stichting Bloemencorso Winkel
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T00:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/7386/stichting-bloemencorso-winkel
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/7386/stichting-bloemencorso-winkel
- identifier_scheme: GHCID
identifier_value: NL-NH-WIN-I-SBW
- identifier_scheme: GHCID_UUID
identifier_value: 1974f7ea-2cef-56b6-8b2a-9d29945c1a10
identifier_url: urn:uuid:1974f7ea-2cef-56b6-8b2a-9d29945c1a10
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: c81ce999-081f-88bb-b7fb-703029314764
identifier_url: urn:uuid:c81ce999-081f-88bb-b7fb-703029314764
- identifier_scheme: GHCID_NUMERIC
identifier_value: '14419656950409009339'
- identifier_scheme: RECORD_ID
identifier_value: abccf37d-8223-463e-adde-27f684deb015
identifier_url: urn:uuid:abccf37d-8223-463e-adde-27f684deb015
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-winkel
locations:
- city: Winkel
country: NL
latitude: 52.75417
longitude: 4.90278
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorso-winkel
geonames_id: 2744354
geonames_name: Winkel
feature_code: PPL
population: 3460
admin1_code: '07'
region_code: NH
extraction_timestamp: '2026-01-09T00:00:00.000000+00:00'
ghcid:
ghcid_current: NL-NH-WIN-I-SBW
ghcid_original: NL-NH-WIN-I-SBW
ghcid_uuid: 1974f7ea-2cef-56b6-8b2a-9d29945c1a10
ghcid_uuid_sha256: c81ce999-081f-88bb-b7fb-703029314764
ghcid_numeric: 14419656950409009339
record_id: abccf37d-8223-463e-adde-27f684deb015
generation_timestamp: '2026-01-09T00:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-NH-WIN-I-SBW
ghcid_numeric: 14419656950409009339
valid_from: '2026-01-09T00:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2744354
geonames_name: Winkel
feature_code: PPL
population: 3460
admin1_code: '07'
region_code: NH
country_code: NL
source_coordinates:
latitude: 52.75417
longitude: 4.90278
distance_km: 0.0
geonames_id: 2744354
location:
city: Winkel
region_code: NH
country: NL
latitude: 52.75417
longitude: 4.90278
geonames_id: 2744354
geonames_name: Winkel
feature_code: PPL
normalization_timestamp: '2026-01-09T00:00:00.000000+00:00'
digital_platforms:
- platform_name: Bloemencorso Winkel Website
platform_url: https://bloemencorsowinkel.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T00:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -54,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.299223+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-CM -> NL-NH-ZWA-I-CM'
kien_enrichment:
kien_name: Carnavalsvereniging Het Masker
kien_url: https://www.immaterieelerfgoed.nl/nl/page/4189/carnavalsvereniging-het-masker
@ -78,44 +80,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4189/carnavalsvereniging-het-masker
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4189/carnavalsvereniging-het-masker
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-CM
identifier_value: NL-NH-ZWA-I-CM
- identifier_scheme: GHCID_UUID
identifier_value: 8970d929-3b99-5749-b6e6-77060b855d77
identifier_url: urn:uuid:8970d929-3b99-5749-b6e6-77060b855d77
identifier_value: d6207250-fdf6-59ae-aea4-7de3943b49ca
identifier_url: urn:uuid:d6207250-fdf6-59ae-aea4-7de3943b49ca
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 34bb9d1d-6d44-8a5a-a942-1884e03c8da0
identifier_url: urn:uuid:34bb9d1d-6d44-8a5a-a942-1884e03c8da0
identifier_value: 078eaa15-8425-8391-88d4-115e89c1887b
identifier_url: urn:uuid:078eaa15-8425-8391-88d4-115e89c1887b
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3799803460329966170'
identifier_value: '544559614346503057'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7ba5-9b60-3eb87623aa5b
identifier_url: urn:uuid:019aedca-642e-7ba5-9b60-3eb87623aa5b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/grote-zwaagse-carnavalsoptocht
ghcid:
ghcid_current: NL-GE-ARN-I-CM
ghcid_current: NL-NH-ZWA-I-CM
ghcid_original: NL-GE-ARN-I-CM
ghcid_uuid: 8970d929-3b99-5749-b6e6-77060b855d77
ghcid_uuid_sha256: 34bb9d1d-6d44-8a5a-a942-1884e03c8da0
ghcid_numeric: 3799803460329966170
ghcid_uuid: d6207250-fdf6-59ae-aea4-7de3943b49ca
ghcid_uuid_sha256: 078eaa15-8425-8391-88d4-115e89c1887b
ghcid_numeric: 544559614346503057
record_id: 019aedca-642e-7ba5-9b60-3eb87623aa5b
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-CM
ghcid_numeric: 3799803460329966170
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-NH-ZWA-I-CM
ghcid_numeric: 544559614346503057
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-CM to NL-NH-ZWA-I-CM'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2743595
geonames_name: Zwaag
feature_code: PPL
population: 0
admin1_code: '07'
region_code: NH
country_code: NL
geonames_id: 2759661
geonames_id: 2743595
google_maps_enrichment:
place_id: ChIJWY5__ySpyEcRvLeSdkvUgEg
name: Carnavalsvereniging Het Masker
@ -316,21 +323,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.6667972
longitude: 5.0691236
latitude: 52.66917
longitude: 5.07639
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:44.016795+00:00'
entity_id: ChIJWY5__ySpyEcRvLeSdkvUgEg
city: Arnhem
region_code: GE
city: Zwaag
region_code: NH
country: NL
formatted_address: Dorpsstraat 131, 1689 ET Zwaag, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.537063+00:00'
geonames_id: 2743595
geonames_name: Zwaag
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:27:06.854781+00:00'
retrieval_agent: crawl4ai

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T21:17:43.157665+00:00'
search_query: '"Beieraars Sint Nicolaastoren Denekamp" Tilligte opgericht OR gesticht OR sinds'
search_query: '"Beieraars Sint Nicolaastoren Denekamp" Tilligte opgericht OR
gesticht OR sinds'
source_urls:
- https://klokken-denekamp.nl/sint-nicolaastoren-klokken-en-luidtradities
- https://www.canonvannederland.nl/nl/overijssel/twente/denekamp/kruiskerk
@ -49,10 +50,12 @@ provenance:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- 'safeguards slot added 2025-12-05T09:07:10.588812+00:00: linked to 1 IntangibleHeritageForm(s)'
- Location extracted from organization name 'Stichting Beieraars Sint Nicolaastoren Denekamp' - matched place 'Denekamp'
(NAME_EXTRACTION_GEONAMES)
- Location extracted from organization name 'Stichting Beieraars Sint Nicolaastoren
Denekamp' - matched place 'Denekamp' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:02Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:08:34Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-OV-TIL-I-BSND -> NL-OV-DEN-I-BSND'
kien_enrichment:
kien_name: Stichting Beieraars Sint Nicolaastoren Denekamp
kien_url: https://www.immaterieelerfgoed.nl/nl/page/3869/stichting-beieraars-sint-nicolaastoren-denekamp
@ -74,15 +77,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/3869/stichting-beieraars-sint-nicolaastoren-denekamp
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/3869/stichting-beieraars-sint-nicolaastoren-denekamp
- identifier_scheme: GHCID
identifier_value: NL-OV-TIL-I-BSND
identifier_value: NL-OV-DEN-I-BSND
- identifier_scheme: GHCID_UUID
identifier_value: a91c3373-56a8-5ddc-b5a2-5609cfd45edc
identifier_url: urn:uuid:a91c3373-56a8-5ddc-b5a2-5609cfd45edc
identifier_value: b9162e27-0fb9-5ec2-a0b2-1fba785e6b2f
identifier_url: urn:uuid:b9162e27-0fb9-5ec2-a0b2-1fba785e6b2f
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 5ad1d7fe-89a6-861e-b5f4-39bfc38721d3
identifier_url: urn:uuid:5ad1d7fe-89a6-861e-b5f4-39bfc38721d3
identifier_value: 5557885d-040a-8cd1-8cfb-8f93dabf8035
identifier_url: urn:uuid:5557885d-040a-8cd1-8cfb-8f93dabf8035
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6544249221777110558'
identifier_value: '6149533749278821585'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-7290-9154-931f9848a6a5
identifier_url: urn:uuid:019aede0-6f29-7290-9154-931f9848a6a5
@ -106,38 +109,40 @@ location_resolution:
region_code: OV
extraction_timestamp: '2025-12-05T09:38:08.538208+00:00'
ghcid:
ghcid_current: NL-OV-TIL-I-BSND
ghcid_current: NL-OV-DEN-I-BSND
ghcid_original: NL-OV-TIL-I-BSND
ghcid_uuid: a91c3373-56a8-5ddc-b5a2-5609cfd45edc
ghcid_uuid_sha256: 5ad1d7fe-89a6-861e-b5f4-39bfc38721d3
ghcid_numeric: 6544249221777110558
ghcid_uuid: b9162e27-0fb9-5ec2-a0b2-1fba785e6b2f
ghcid_uuid_sha256: 5557885d-040a-8cd1-8cfb-8f93dabf8035
ghcid_numeric: 6149533749278821585
record_id: 019aede0-6f29-7290-9154-931f9848a6a5
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-OV-TIL-I-BSND
ghcid_numeric: 6544249221777110558
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-DEN-I-BSND
ghcid_numeric: 6149533749278821585
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-OV-TIL-I-BSND to NL-OV-DEN-I-BSND'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2746297
geonames_name: Tilligte
method: GEONAMES_LOOKUP
geonames_id: 2757232
geonames_name: Denekamp
feature_code: PPL
population: 741
population: 0
admin1_code: '15'
region_code: OV
country_code: NL
source_coordinates:
latitude: 52.3775
longitude: 7.00694
distance_km: 6.921623396241885
geonames_id: 2746297
geonames_id: 2757232
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Sint Nicolaaskerk" (the church building, not the bell ringers organization) instead
of "Stichting Beieraars Sint Nicolaastoren Denekamp" (bell ringers foundation). Per Rule 40: KIEN is authoritative for
Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Sint Nicolaaskerk" (the church building,
not the bell ringers organization) instead of "Stichting Beieraars Sint Nicolaastoren
Denekamp" (bell ringers foundation). Per Rule 40: KIEN is authoritative for Type
I intangible heritage custodians.'
original_false_match:
place_id: ChIJvyxFDvMYuEcRKoaXpgIjym0
name: Sint Nicolaaskerk
@ -162,21 +167,21 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:40:28.120327+00:00'
search_query: beieraars sint nicolaastoren denekamp
location:
latitude: 52.3742625
longitude: 7.0057465
latitude: 52.3775
longitude: 7.00694
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:33:03.995811+00:00'
entity_id: ChIJvyxFDvMYuEcRKoaXpgIjym0
city: Tilligte
city: Denekamp
region_code: OV
country: NL
formatted_address: nicolaasplein 2, 7591 MA Denekamp, Netherlands
geonames_id: 2746297
geonames_name: Tilligte
geonames_id: 2757232
geonames_name: Denekamp
feature_code: PPL
normalization_timestamp: '2025-12-09T07:08:34.837085+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: web_research
@ -188,7 +193,8 @@ digital_platform_v2:
legal_form: Stichting
anbi_status: true
member_count: 14
member_description: Bell-ringers (beieraars) from various professions, mostly ages 40-50
member_description: Bell-ringers (beieraars) from various professions, mostly
ages 40-50
data_quality_notes:
google_maps_status: correct_location_different_name
google_maps_note: Returns Sint Nicolaaskerk (the church where the tower is located)
@ -198,8 +204,8 @@ digital_platform_v2:
heritage_form_url: https://www.immaterieelerfgoed.nl/nl/page/3893/beieren-in-de-denekampse-sint-nicolaastoren
unesco_domain: Social practices
tradition_origin: First half of 16th century (circa 1530)
description: Manual bell-ringing combining luiden (swinging large bell) and kleppen (striking stationary bells) to create
four-beat e-d-e-c melody
description: Manual bell-ringing combining luiden (swinging large bell) and kleppen
(striking stationary bells) to create four-beat e-d-e-c melody
bells:
- name: Salvatorklok
year: 1530
@ -214,7 +220,8 @@ digital_platform_v2:
year: 1985
note: Replacement for 1436 bell by Meister Wilhelm (cracked 1975)
function: Struck (geklept)
notable_fact: Denekamp is reportedly the only place in Netherlands with two Westerhues bells
notable_fact: Denekamp is reportedly the only place in Netherlands with two Westerhues
bells
occasions:
- Christmas
- New Year's Eve
@ -243,7 +250,8 @@ digital_platform_v2:
platform_type: informational_website
technology: Hosting2GO sitebuilder
access_type: public
description: Information about the bell-ringing tradition, history, ANBI status, and the bells
description: Information about the bell-ringing tradition, history, ANBI status,
and the bells
registry_presence:
- registry_name: KIEN (Kenniscentrum Immaterieel Erfgoed Nederland)
registry_url: https://www.immaterieelerfgoed.nl/nl/page/3869/stichting-beieraars-sint-nicolaastoren-denekamp
@ -263,7 +271,8 @@ digital_platform_v2:
retrieval_agent: exa
data_quality: TIER_4_INFERRED
- source_type: linkup_search
query: Stichting Beieraars Sint Nicolaastoren Denekamp klokkenluiders carillon heritage
query: Stichting Beieraars Sint Nicolaastoren Denekamp klokkenluiders carillon
heritage
retrieved_on: '2025-01-15'
retrieval_agent: linkup
data_quality: TIER_4_INFERRED

View file

@ -52,6 +52,8 @@ provenance:
'Denekamp' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:02Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:08:34Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-OV-TIL-I-PD -> NL-OV-DEN-I-PD'
kien_enrichment:
kien_name: Paasgebruiken Denekamp
kien_url: https://www.immaterieelerfgoed.nl/nl/page/2480/paasgebruiken-denekamp
@ -71,15 +73,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2480/paasgebruiken-denekamp
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2480/paasgebruiken-denekamp
- identifier_scheme: GHCID
identifier_value: NL-OV-TIL-I-PD
identifier_value: NL-OV-DEN-I-PD
- identifier_scheme: GHCID_UUID
identifier_value: 5a788c83-5b6d-5c81-9ee2-d09f530a7533
identifier_url: urn:uuid:5a788c83-5b6d-5c81-9ee2-d09f530a7533
identifier_value: 96797495-e31c-54fa-9645-3fd2022ec24a
identifier_url: urn:uuid:96797495-e31c-54fa-9645-3fd2022ec24a
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 0c39490d-7052-8f86-9305-2817fd470ddd
identifier_url: urn:uuid:0c39490d-7052-8f86-9305-2817fd470ddd
identifier_value: fd9d477e-f3bf-89ab-8b13-2c3320346224
identifier_url: urn:uuid:fd9d477e-f3bf-89ab-8b13-2c3320346224
- identifier_scheme: GHCID_NUMERIC
identifier_value: '880815524195504006'
identifier_value: '18274841473520224683'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-73e1-8551-8271547b1737
identifier_url: urn:uuid:019aede0-6f29-73e1-8551-8271547b1737
@ -101,33 +103,34 @@ location_resolution:
region_code: OV
extraction_timestamp: '2025-12-05T09:38:08.232634+00:00'
ghcid:
ghcid_current: NL-OV-TIL-I-PD
ghcid_current: NL-OV-DEN-I-PD
ghcid_original: NL-OV-TIL-I-PD
ghcid_uuid: 5a788c83-5b6d-5c81-9ee2-d09f530a7533
ghcid_uuid_sha256: 0c39490d-7052-8f86-9305-2817fd470ddd
ghcid_numeric: 880815524195504006
ghcid_uuid: 96797495-e31c-54fa-9645-3fd2022ec24a
ghcid_uuid_sha256: fd9d477e-f3bf-89ab-8b13-2c3320346224
ghcid_numeric: 18274841473520224683
record_id: 019aede0-6f29-73e1-8551-8271547b1737
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-OV-TIL-I-PD
ghcid_numeric: 880815524195504006
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-DEN-I-PD
ghcid_numeric: 18274841473520224683
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-OV-TIL-I-PD to NL-OV-DEN-I-PD'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2746297
geonames_name: Tilligte
method: GEONAMES_LOOKUP
geonames_id: 2757232
geonames_name: Denekamp
feature_code: PPL
population: 741
population: 0
admin1_code: '15'
region_code: OV
country_code: NL
source_coordinates:
latitude: 52.3775
longitude: 7.00694
distance_km: 6.921623396241885
geonames_id: 2746297
geonames_id: 2757232
google_maps_enrichment:
api_status: NOT_FOUND
fetch_timestamp: '2025-12-06T19:33:04.498123+00:00'
@ -144,13 +147,13 @@ location:
source_path: ghcid.location_resolution.source_coordinates
entity_id: 2746297
resolution_method: REVERSE_GEOCODE
city: Tilligte
city: Denekamp
region_code: OV
country: NL
geonames_id: 2746297
geonames_name: Tilligte
geonames_id: 2757232
geonames_name: Denekamp
feature_code: PPL
normalization_timestamp: '2025-12-09T07:08:34.864432+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: web_research

View file

@ -53,6 +53,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.335899+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-DS -> NL-OV-DIE-I-DS'
kien_enrichment:
kien_name: Diepenheimse Schutterij
kien_url: https://www.immaterieelerfgoed.nl/nl/page/743/diepenheimse-schutterij
@ -80,44 +82,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/743/diepenheimse-schutterij
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/743/diepenheimse-schutterij
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-DS
identifier_value: NL-OV-DIE-I-DS
- identifier_scheme: GHCID_UUID
identifier_value: 47583d34-b70d-5163-a4d3-84b28d291504
identifier_url: urn:uuid:47583d34-b70d-5163-a4d3-84b28d291504
identifier_value: 887a3813-4c60-570d-8978-1896182ca81b
identifier_url: urn:uuid:887a3813-4c60-570d-8978-1896182ca81b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: f8f1ea85-a056-8694-9b0a-dd818cf6c991
identifier_url: urn:uuid:f8f1ea85-a056-8694-9b0a-dd818cf6c991
identifier_value: b2ea1d9c-b799-8dc2-b56c-0973901d26ac
identifier_url: urn:uuid:b2ea1d9c-b799-8dc2-b56c-0973901d26ac
- identifier_scheme: GHCID_NUMERIC
identifier_value: '17938376650434999956'
identifier_value: '12892149442233871810'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-777a-ac80-e0086f86524b
identifier_url: urn:uuid:019aedca-642e-777a-ac80-e0086f86524b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/het-uitrukken-van-de-diepenheimse-schutterij
ghcid:
ghcid_current: NL-GE-ARN-I-DS
ghcid_current: NL-OV-DIE-I-DS
ghcid_original: NL-GE-ARN-I-DS
ghcid_uuid: 47583d34-b70d-5163-a4d3-84b28d291504
ghcid_uuid_sha256: f8f1ea85-a056-8694-9b0a-dd818cf6c991
ghcid_numeric: 17938376650434999956
ghcid_uuid: 887a3813-4c60-570d-8978-1896182ca81b
ghcid_uuid_sha256: b2ea1d9c-b799-8dc2-b56c-0973901d26ac
ghcid_numeric: 12892149442233871810
record_id: 019aedca-642e-777a-ac80-e0086f86524b
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-DS
ghcid_numeric: 17938376650434999956
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-DIE-I-DS
ghcid_numeric: 12892149442233871810
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-DS to NL-OV-DIE-I-DS'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2756878
geonames_name: Diepenheim
feature_code: PPL
population: 1900
admin1_code: '15'
region_code: OV
country_code: NL
geonames_id: 2759661
geonames_id: 2756878
digital_platforms:
- platform_name: Diepenheimse Schutterij Website
platform_url: http://www.diepenheimseschutterij.nl
@ -225,21 +232,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.2014597
longitude: 6.551044699999999
latitude: 52.2
longitude: 6.55556
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:44.628916+00:00'
entity_id: ChIJ4YLfKF71x0cRMDL2SQKEJP0
city: Arnhem
region_code: GE
city: Diepenheim
region_code: OV
country: NL
formatted_address: Raadhuisstraat 8, 7478 AG Diepenheim, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.584459+00:00'
geonames_id: 2756878
geonames_name: Diepenheim
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:27:21.442680+00:00'
retrieval_agent: crawl4ai

View file

@ -52,6 +52,8 @@ provenance:
place 'Espelo' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:18:59Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:08:19Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-OV-OKK-I-PE -> NL-OV-ESP-I-PE'
kien_enrichment:
kien_name: Stichting Paasvuur Espelo
kien_url: https://www.immaterieelerfgoed.nl/nl/page/967/stichting-paasvuur-espelo
@ -75,15 +77,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/967/stichting-paasvuur-espelo
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/967/stichting-paasvuur-espelo
- identifier_scheme: GHCID
identifier_value: NL-OV-OKK-I-PE
identifier_value: NL-OV-ESP-I-PE
- identifier_scheme: GHCID_UUID
identifier_value: ac1db6ee-5b3c-5621-b155-94a5f556bc07
identifier_url: urn:uuid:ac1db6ee-5b3c-5621-b155-94a5f556bc07
identifier_value: 16b530b0-6d8b-5e6e-9cbe-444a447d01ee
identifier_url: urn:uuid:16b530b0-6d8b-5e6e-9cbe-444a447d01ee
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: c418039c-ad02-899e-9a42-111756559615
identifier_url: urn:uuid:c418039c-ad02-899e-9a42-111756559615
identifier_value: 9c42826a-f4bc-8635-8e9b-33273b598f5e
identifier_url: urn:uuid:9c42826a-f4bc-8635-8e9b-33273b598f5e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '14130047802327341470'
identifier_value: '11259705414263809589'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-7c73-8b45-c622f17300aa
identifier_url: urn:uuid:019aede0-6f2a-7c73-8b45-c622f17300aa
@ -105,33 +107,34 @@ location_resolution:
region_code: OV
extraction_timestamp: '2025-12-05T09:38:08.817336+00:00'
ghcid:
ghcid_current: NL-OV-OKK-I-PE
ghcid_current: NL-OV-ESP-I-PE
ghcid_original: NL-OV-OKK-I-PE
ghcid_uuid: ac1db6ee-5b3c-5621-b155-94a5f556bc07
ghcid_uuid_sha256: c418039c-ad02-899e-9a42-111756559615
ghcid_numeric: 14130047802327341470
ghcid_uuid: 16b530b0-6d8b-5e6e-9cbe-444a447d01ee
ghcid_uuid_sha256: 9c42826a-f4bc-8635-8e9b-33273b598f5e
ghcid_numeric: 11259705414263809589
record_id: 019aede0-6f2a-7c73-8b45-c622f17300aa
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-OV-OKK-I-PE
ghcid_numeric: 14130047802327341470
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-ESP-I-PE
ghcid_numeric: 11259705414263809589
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-OV-OKK-I-PE to NL-OV-ESP-I-PE'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2749675
geonames_name: Okkenbroek
method: GEONAMES_LOOKUP
geonames_id: 2756015
geonames_name: Espelo
feature_code: PPL
population: 290
population: 0
admin1_code: '15'
region_code: OV
country_code: NL
source_coordinates:
latitude: 52.30833
longitude: 6.35139
distance_km: 3.7161011292078183
geonames_id: 2749675
geonames_id: 2756015
digital_platforms:
- platform_name: Stichting Paasvuur Espelo Website
platform_url: http://www.paasvuurespelo.nl
@ -177,21 +180,21 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:40:13.829015+00:00'
search_query: paasvuur espelo
location:
latitude: 52.3011863
longitude: 6.3509953
latitude: 52.30833
longitude: 6.35139
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:33:00.707100+00:00'
entity_id: ChIJSTL_6Snux0cRqGPDlZosSwg
city: Okkenbroek
city: Espelo
region_code: OV
country: NL
formatted_address: Pasmansweg 6, 7451 KP Holten, Netherlands
geonames_id: 2749675
geonames_name: Okkenbroek
geonames_id: 2756015
geonames_name: Espelo
feature_code: PPL
normalization_timestamp: '2025-12-09T07:08:19.801440+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:15:06.115539+00:00'
retrieval_agent: crawl4ai

View file

@ -53,6 +53,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.247762+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-BM -> NL-OV-OOT-I-BM'
kien_enrichment:
kien_name: Ben Morshuis Stichting
kien_url: https://www.immaterieelerfgoed.nl/nl/page/806/ben-morshuis-stichting
@ -83,44 +85,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/806/ben-morshuis-stichting
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/806/ben-morshuis-stichting
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-BM
identifier_value: NL-OV-OOT-I-BM
- identifier_scheme: GHCID_UUID
identifier_value: 6665dd02-43c6-5150-b6e9-f613268bc8f4
identifier_url: urn:uuid:6665dd02-43c6-5150-b6e9-f613268bc8f4
identifier_value: 60cd5285-b48b-58ec-8370-7c489b6558fd
identifier_url: urn:uuid:60cd5285-b48b-58ec-8370-7c489b6558fd
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 87b20338-0c2d-86e7-ad2b-e83c3707ab7c
identifier_url: urn:uuid:87b20338-0c2d-86e7-ad2b-e83c3707ab7c
identifier_value: 9fefa6c3-b918-86d6-8858-815a087801a7
identifier_url: urn:uuid:9fefa6c3-b918-86d6-8858-815a087801a7
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9777881280232150759'
identifier_value: '11524613331018598102'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7b41-a0fb-d59e17fcee01
identifier_url: urn:uuid:019aedca-642e-7b41-a0fb-d59e17fcee01
safeguards:
- https://nde.nl/ontology/hc/heritage-form/rondgang-van-de-nachtwacht-in-ootmarsum
ghcid:
ghcid_current: NL-GE-ARN-I-BM
ghcid_current: NL-OV-OOT-I-BM
ghcid_original: NL-GE-ARN-I-BM
ghcid_uuid: 6665dd02-43c6-5150-b6e9-f613268bc8f4
ghcid_uuid_sha256: 87b20338-0c2d-86e7-ad2b-e83c3707ab7c
ghcid_numeric: 9777881280232150759
ghcid_uuid: 60cd5285-b48b-58ec-8370-7c489b6558fd
ghcid_uuid_sha256: 9fefa6c3-b918-86d6-8858-815a087801a7
ghcid_numeric: 11524613331018598102
record_id: 019aedca-642e-7b41-a0fb-d59e17fcee01
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-BM
ghcid_numeric: 9777881280232150759
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-OOT-I-BM
ghcid_numeric: 11524613331018598102
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-BM to NL-OV-OOT-I-BM'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2749317
geonames_name: Ootmarsum
feature_code: PPL
population: 4450
admin1_code: '15'
region_code: OV
country_code: NL
geonames_id: 2759661
geonames_id: 2749317
digital_platforms:
- platform_name: Ben Morshuis Stichting Website
platform_url: http://www.bmsootmarsum.nl
@ -231,21 +238,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 52.409386399999995
longitude: 6.9104034
latitude: 52.40833
longitude: 6.90139
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:41.653208+00:00'
entity_id: ChIJp-vArpobuEcR3mF1AOsqZMU
city: Arnhem
region_code: GE
city: Ootmarsum
region_code: OV
country: NL
formatted_address: Campstede 25, 7631 HS Ootmarsum, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.389648+00:00'
geonames_id: 2749317
geonames_name: Ootmarsum
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: exa_crawling

View file

@ -0,0 +1,163 @@
original_entry:
organisatie: Christelijke Oranjevereniging Sint Jansklooster
webadres_organisatie: http://www.corsoklooster.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1920
processing_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T12:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorsosintjansklooster
fetch_timestamp: '2026-01-09T12:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via systematic KIEN heritage form page extraction on 2026-01-09
- Organizes annual theater corso (bloemencorso) on third Friday of August
- Known as "theatercorso" since 2000 - wagons feature elaborate performances, choreographies and musicals
- Features 13-14 participating wagons
- Part of week-long festival including youth corso and church service
- Recognized as one of 15 defining events of Overijssel province (2020-2023)
- Registered in KIEN Inventory June 2014
kien_enrichment:
kien_name: Christelijke Oranjevereniging Sint Jansklooster
kien_url: https://www.immaterieelerfgoed.nl/nl/page/789/christelijke-oranjevereniging-sint-jansklooster
heritage_forms:
- Bloemencorso Sint Jansklooster
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/bloemencorsosintjansklooster
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
De Christelijke Oranjevereniging Sint Jansklooster organiseert het jaarlijkse
Bloemencorso Sint Jansklooster, een theatercorso dat plaatsvindt op de derde
vrijdag van augustus. Het corso staat sinds 2000 bekend als "theatercorso"
waarbij de 13-14 deelnemende wagens uitgebreide voorstellingen, choreografieen
en musicals uitvoeren. Het evenement maakt deel uit van een weekprogramma
met onder andere een jeugdcorso en kerkdienst. Het corso werd in de periode
2020-2023 erkend als een van de 15 bepalende evenementen van de provincie
Overijssel.
address:
street: Bonkenhaveweg 28/A
postal_code: 8326CC
city: Sint Jansklooster
country: NL
address_type: physical
registration_date: '2014-06-01'
registration_type: Inventory
legal_status:
legal_form: Vereniging
legal_form_prefix: Christelijke Oranjevereniging
original_name_with_legal_form: Christelijke Oranjevereniging Sint Jansklooster
notes: Dutch Christian Orange association (Christelijke Oranjevereniging) - vereniging organizational form
contact:
website: http://www.corsoklooster.nl
address:
street: Bonkenhaveweg 28/A
postal_code: 8326CC
city: Sint Jansklooster
country: NL
custodian_name:
claim_type: custodian_name
claim_value: Christelijke Oranjevereniging Sint Jansklooster
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/789/christelijke-oranjevereniging-sint-jansklooster
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/789/christelijke-oranjevereniging-sint-jansklooster
- identifier_scheme: GHCID
identifier_value: NL-OV-SJK-I-COSJ
- identifier_scheme: GHCID_UUID
identifier_value: 382e18c9-cc49-55cc-8fc6-25a365ee2355
identifier_url: urn:uuid:382e18c9-cc49-55cc-8fc6-25a365ee2355
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: bb10c69a-b449-8f05-9440-066540719d84
identifier_url: urn:uuid:bb10c69a-b449-8f05-9440-066540719d84
- identifier_scheme: GHCID_NUMERIC
identifier_value: '13479492052471852805'
- identifier_scheme: RECORD_ID
identifier_value: be67e9f8-8f1a-416e-845b-1fb0433d3d72
identifier_url: urn:uuid:be67e9f8-8f1a-416e-845b-1fb0433d3d72
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bloemencorso-sint-jansklooster
locations:
- city: Sint Jansklooster
country: NL
latitude: 52.6775
longitude: 6.00556
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/bloemencorsosintjansklooster
geonames_id: 2747262
geonames_name: Sint Jansklooster
feature_code: PPL
population: 1190
admin1_code: '15'
region_code: OV
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid:
ghcid_current: NL-OV-SJK-I-COSJ
ghcid_original: NL-OV-SJK-I-COSJ
ghcid_uuid: 382e18c9-cc49-55cc-8fc6-25a365ee2355
ghcid_uuid_sha256: bb10c69a-b449-8f05-9440-066540719d84
ghcid_numeric: 13479492052471852805
record_id: be67e9f8-8f1a-416e-845b-1fb0433d3d72
generation_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-OV-SJK-I-COSJ
ghcid_numeric: 13479492052471852805
valid_from: '2026-01-09T12:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN systematic extraction January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2747262
geonames_name: Sint Jansklooster
feature_code: PPL
population: 1190
admin1_code: '15'
region_code: OV
country_code: NL
source_coordinates:
latitude: 52.6775
longitude: 6.00556
distance_km: 0.0
geonames_id: 2747262
location:
city: Sint Jansklooster
region_code: OV
country: NL
latitude: 52.6775
longitude: 6.00556
geonames_id: 2747262
geonames_name: Sint Jansklooster
feature_code: PPL
normalization_timestamp: '2026-01-09T12:00:00.000000+00:00'
digital_platforms:
- platform_name: Corso Klooster Website
platform_url: http://www.corsoklooster.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,141 @@
original_entry:
organisatie: Stichting Corsokoepel
webadres_organisatie: https://www.corsokoepel.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1889
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/1697/stichting-corsokoepel
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Corsocultuur (flower and fruit parade culture) intangible heritage tradition
- UNESCO ICH Representative List (2021) - Corso culture, flower and fruit parades in the Netherlands
kien_enrichment:
kien_name: Stichting Corsokoepel
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1697/stichting-corsokoepel
heritage_forms:
- Corsocultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/corsocultuur
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Corsokoepel
contact:
website: https://www.corsokoepel.nl
address: Schuit 49, 8325 HH Vollenhove
custodian_name:
claim_type: custodian_name
claim_value: Corsokoepel
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1697/stichting-corsokoepel
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1697/stichting-corsokoepel
- identifier_scheme: GHCID
identifier_value: NL-OV-VOL-I-SC
- identifier_scheme: GHCID_UUID
identifier_value: 1820286b-eaa4-521b-a374-6ee1bac6f678
identifier_url: urn:uuid:1820286b-eaa4-521b-a374-6ee1bac6f678
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 84b1939c-d60e-86b6-bb5a-88c147cf7531
identifier_url: urn:uuid:84b1939c-d60e-86b6-bb5a-88c147cf7531
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9561585785699755702'
- identifier_scheme: RECORD_ID
identifier_value: f0bae632-5cd5-457b-9050-4bd952566da4
identifier_url: urn:uuid:f0bae632-5cd5-457b-9050-4bd952566da4
safeguards:
- https://nde.nl/ontology/hc/heritage-form/corsocultuur
unesco_ich_connection:
unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
list_type: RL
inscription_year: 2021
url: https://ich.unesco.org/en/RL/corso-culture-flower-and-fruit-parades-in-the-netherlands-01707
locations:
- city: Vollenhove
country: NL
latitude: 52.68083
longitude: 5.95417
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/1697/stichting-corsokoepel
geonames_id: 2745333
geonames_name: Vollenhove
feature_code: PPL
population: 3955
admin1_code: '15'
region_code: OV
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-OV-VOL-I-SC
ghcid_original: NL-OV-VOL-I-SC
ghcid_uuid: 1820286b-eaa4-521b-a374-6ee1bac6f678
ghcid_uuid_sha256: 84b1939c-d60e-86b6-bb5a-88c147cf7531
ghcid_numeric: 9561585785699755702
record_id: f0bae632-5cd5-457b-9050-4bd952566da4
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-OV-VOL-I-SC
ghcid_numeric: 9561585785699755702
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2745333
geonames_name: Vollenhove
feature_code: PPL
population: 3955
admin1_code: '15'
region_code: OV
country_code: NL
source_coordinates:
latitude: 52.68083
longitude: 5.95417
distance_km: 0.0
geonames_id: 2745333
location:
city: Vollenhove
region_code: OV
country: NL
latitude: 52.68083
longitude: 5.95417
geonames_id: 2745333
geonames_name: Vollenhove
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Corsokoepel Website
platform_url: https://www.corsokoepel.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -53,6 +53,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.331168+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-DT -> NL-OV-WIE-I-DT'
kien_enrichment:
kien_name: Dick Timmerman
kien_url: https://www.immaterieelerfgoed.nl/nl/page/867/dick-timmerman
@ -79,48 +81,54 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/867/dick-timmerman
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/867/dick-timmerman
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-DT
identifier_value: NL-OV-WIE-I-DT
- identifier_scheme: GHCID_UUID
identifier_value: 68d14fc2-8bca-5b5d-afa3-cf3a2a453152
identifier_url: urn:uuid:68d14fc2-8bca-5b5d-afa3-cf3a2a453152
identifier_value: 4a1b8f09-2e99-5f34-9890-4047848f3551
identifier_url: urn:uuid:4a1b8f09-2e99-5f34-9890-4047848f3551
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: a34235a7-6b8d-8159-bd38-dcc073a36b3a
identifier_url: urn:uuid:a34235a7-6b8d-8159-bd38-dcc073a36b3a
identifier_value: 5ec73580-716b-8df0-b539-ddebcf3a949b
identifier_url: urn:uuid:5ec73580-716b-8df0-b539-ddebcf3a949b
- identifier_scheme: GHCID_NUMERIC
identifier_value: '11764024169825411417'
identifier_value: '6829486185705577968'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-778a-a24e-693ae6673cb6
identifier_url: urn:uuid:019aedca-642e-778a-a24e-693ae6673cb6
safeguards:
- https://nde.nl/ontology/hc/heritage-form/perkament-maken-in-wierden
ghcid:
ghcid_current: NL-GE-ARN-I-DT
ghcid_current: NL-OV-WIE-I-DT
ghcid_original: NL-GE-ARN-I-DT
ghcid_uuid: 68d14fc2-8bca-5b5d-afa3-cf3a2a453152
ghcid_uuid_sha256: a34235a7-6b8d-8159-bd38-dcc073a36b3a
ghcid_numeric: 11764024169825411417
ghcid_uuid: 4a1b8f09-2e99-5f34-9890-4047848f3551
ghcid_uuid_sha256: 5ec73580-716b-8df0-b539-ddebcf3a949b
ghcid_numeric: 6829486185705577968
record_id: 019aedca-642e-778a-a24e-693ae6673cb6
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-DT
ghcid_numeric: 11764024169825411417
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-OV-WIE-I-DT
ghcid_numeric: 6829486185705577968
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-DT to NL-OV-WIE-I-DT'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2744549
geonames_name: Wierden
feature_code: PPL
population: 23244
admin1_code: '15'
region_code: OV
country_code: NL
geonames_id: 2759661
geonames_id: 2744549
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Timmer & Onderhoudsbedrijf Dik Lubbertsen" (carpentry business) instead of "Dick
Timmerman" (heritage practitioner (person)). Name mismatch detected during manual review. Per Rule 40: KIEN is authoritative
false_match_reason: 'Google Maps returned "Timmer & Onderhoudsbedrijf Dik Lubbertsen"
(carpentry business) instead of "Dick Timmerman" (heritage practitioner (person)).
Name mismatch detected during manual review. Per Rule 40: KIEN is authoritative
for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJ9w1N5c01xkcRt6VDu57TGfE
@ -165,11 +173,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: '739'
uuid: 46eedc7a-a087-55dc-b552-49d7cac966a2
name_en: Schokland and Surroundings
@ -186,10 +196,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
@ -202,9 +214,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
@ -212,8 +226,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
@ -222,9 +237,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
@ -232,8 +249,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
@ -242,25 +260,26 @@ 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...
location:
latitude: 52.2661407
longitude: 5.6104113
latitude: 52.35917
longitude: 6.59306
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:45.339848+00:00'
entity_id: ChIJ9w1N5c01xkcRt6VDu57TGfE
city: Arnhem
region_code: GE
city: Wierden
region_code: OV
country: NL
formatted_address: Parklaan 14, 3881 CT Putten, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.657380+00:00'
geonames_id: 2744549
geonames_name: Wierden
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:27:25.768603+00:00'
retrieval_agent: crawl4ai
@ -271,8 +290,9 @@ crawl4ai_enrichment:
links_count: 9
open_graph:
title: Timmer & Onderhoudsbedrijf Dick Lubbertsen
description: U bent op zoek naar een bedrijf voor uw timmer- of onderhoudsklus? Wij helpen u graag! Dankzij onze brede
ervaring kunnen we alle facetten van een klus voor onze rekening nemen. Hierdoor bespaart u...
description: U bent op zoek naar een bedrijf voor uw timmer- of onderhoudsklus?
Wij helpen u graag! Dankzij onze brede ervaring kunnen we alle facetten van
een klus voor onze rekening nemen. Hierdoor bespaart u...
image: http://www.lubbertsen.nl/uploads/4/9/5/7/49571465/1435164563.png
url: http://www.lubbertsen.nl/
site_name: Timmer & Onderhoudsbedrijf Dick Lubbertsen
@ -300,14 +320,16 @@ timespan:
events:
- date: '2007'
type: founding
description: is opgericht onder auspiciën van de gemeente Renkum en in samenwerking met lokale instanties
description: is opgericht onder auspiciën van de gemeente Renkum en in samenwerking
met lokale instanties
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
event_date: '2007'
date_precision: year
approximate: false
description: is opgericht onder auspiciën van de gemeente Renkum en in samenwerking met lokale instanties
description: is opgericht onder auspiciën van de gemeente Renkum en in samenwerking
met lokale instanties
source_urls:
- https://www.timmerman-nu.nl/arnhem/
- https://www.werkspot.nl/timmerwerken/timmerman-vakmannen/arnhem
@ -315,11 +337,13 @@ timeline_enrichment:
- https://sb-bouw.com/timmerman-arnhem/
- https://www.klusup.nl/timmerman/arnhem
linkup_query: '"Dick Timmerman" Arnhem opgericht OR gesticht OR sinds'
linkup_answer: Dick Timmerman uit Arnhem is betrokken bij een groep die is opgericht rond het zoeken naar vermiste militairen
van de Slag om Arnhem. Deze groep, bestaande uit Hans Timmerman, zijn broer Dick en David van Buggenum, is opgericht
onder auspiciën van de gemeente Renkum en in samenwerking met lokale instanties. De oprichting van deze groep vond plaats
vóór 2007, aangezien er in 2007 en 2008 al zoekacties werden uitgevoerd. Er is geen specifieke oprichtingsdatum van
een timmerbedrijf of ander bedrijf van Dick Timmerman in Arnhem vermeld.
linkup_answer: Dick Timmerman uit Arnhem is betrokken bij een groep die is opgericht
rond het zoeken naar vermiste militairen van de Slag om Arnhem. Deze groep,
bestaande uit Hans Timmerman, zijn broer Dick en David van Buggenum, is opgericht
onder auspiciën van de gemeente Renkum en in samenwerking met lokale instanties.
De oprichting van deze groep vond plaats vóór 2007, aangezien er in 2007 en
2008 al zoekacties werden uitgevoerd. Er is geen specifieke oprichtingsdatum
van een timmerbedrijf of ander bedrijf van Dick Timmerman in Arnhem vermeld.
fetch_timestamp: '2025-12-15T17:21:48.150538+00:00'
archive_path: web/1703/linkup/linkup_founding_20251215T172148Z.json
extraction_method: linkup_answer_regex

View file

@ -0,0 +1,135 @@
original_entry:
organisatie: Stichting Landelijk Fietsplatform
webadres_organisatie: https://www.fietsplatform.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1883
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/5633/stichting-landelijk-fietsplatform
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Nederlandse Fietscultuur (Dutch cycling culture) intangible heritage tradition
- Co-custodian with Fietsersbond
kien_enrichment:
kien_name: Stichting Landelijk Fietsplatform
kien_url: https://www.immaterieelerfgoed.nl/nl/page/5633/stichting-landelijk-fietsplatform
heritage_forms:
- Nederlandse Fietscultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting Landelijk Fietsplatform
contact:
website: https://www.fietsplatform.nl
address: Berkenweg 30, 3818 LB Amersfoort
custodian_name:
claim_type: custodian_name
claim_value: Landelijk Fietsplatform
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/5633/stichting-landelijk-fietsplatform
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/5633/stichting-landelijk-fietsplatform
- identifier_scheme: GHCID
identifier_value: NL-UT-AME-I-SLF
- identifier_scheme: GHCID_UUID
identifier_value: d2d2a721-5f39-5270-abba-909a5dadc79f
identifier_url: urn:uuid:d2d2a721-5f39-5270-abba-909a5dadc79f
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 44825df8-1b99-81ad-bc22-2dbfc5e511c0
identifier_url: urn:uuid:44825df8-1b99-81ad-bc22-2dbfc5e511c0
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4936611461747827117'
- identifier_scheme: RECORD_ID
identifier_value: e2f80828-d587-43f7-9518-ce3dfaa85d9e
identifier_url: urn:uuid:e2f80828-d587-43f7-9518-ce3dfaa85d9e
safeguards:
- https://nde.nl/ontology/hc/heritage-form/nederlandse-fietscultuur
locations:
- city: Amersfoort
country: NL
latitude: 52.155
longitude: 5.3875
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/5633/stichting-landelijk-fietsplatform
geonames_id: 2759821
geonames_name: Amersfoort
feature_code: PPL
population: 139914
admin1_code: '09'
region_code: UT
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-UT-AME-I-SLF
ghcid_original: NL-UT-AME-I-SLF
ghcid_uuid: d2d2a721-5f39-5270-abba-909a5dadc79f
ghcid_uuid_sha256: 44825df8-1b99-81ad-bc22-2dbfc5e511c0
ghcid_numeric: 4936611461747827117
record_id: e2f80828-d587-43f7-9518-ce3dfaa85d9e
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-UT-AME-I-SLF
ghcid_numeric: 4936611461747827117
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759821
geonames_name: Amersfoort
feature_code: PPL
population: 139914
admin1_code: '09'
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.155
longitude: 5.3875
distance_km: 0.0
geonames_id: 2759821
location:
city: Amersfoort
region_code: UT
country: NL
latitude: 52.155
longitude: 5.3875
geonames_id: 2759821
geonames_name: Amersfoort
feature_code: PPL
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Stichting Landelijk Fietsplatform Website
platform_url: https://www.fietsplatform.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -53,6 +53,8 @@ provenance:
- matched place 'Haarzuilens' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:36Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:10:20Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-UT-VLE-I-KOH -> NL-UT-HAA-I-KOH'
kien_enrichment:
kien_name: Kermis Oranjevereniging Haarzuilens
kien_url: https://www.immaterieelerfgoed.nl/nl/page/14713/kermis-oranjevereniging-haarzuilens
@ -72,15 +74,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/14713/kermis-oranjevereniging-haarzuilens
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/14713/kermis-oranjevereniging-haarzuilens
- identifier_scheme: GHCID
identifier_value: NL-UT-VLE-I-KOH
identifier_value: NL-UT-HAA-I-KOH
- identifier_scheme: GHCID_UUID
identifier_value: f74cc9cf-a780-5269-ad87-ac14a9073561
identifier_url: urn:uuid:f74cc9cf-a780-5269-ad87-ac14a9073561
identifier_value: cec9fc54-62ff-537b-bb6c-89b34444df76
identifier_url: urn:uuid:cec9fc54-62ff-537b-bb6c-89b34444df76
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 30f75b5a-a1e8-851b-aeb4-2b2353651e84
identifier_url: urn:uuid:30f75b5a-a1e8-851b-aeb4-2b2353651e84
identifier_value: 81f029a6-dd58-8425-97c8-99806b462f52
identifier_url: urn:uuid:81f029a6-dd58-8425-97c8-99806b462f52
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3528389277889611035'
identifier_value: '9363029421958116389'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f29-75a3-a5bf-56fb1d979d9a
identifier_url: urn:uuid:019aede0-6f29-75a3-a5bf-56fb1d979d9a
@ -102,33 +104,34 @@ location_resolution:
region_code: UT
extraction_timestamp: '2025-12-05T09:38:08.018139+00:00'
ghcid:
ghcid_current: NL-UT-VLE-I-KOH
ghcid_current: NL-UT-HAA-I-KOH
ghcid_original: NL-UT-VLE-I-KOH
ghcid_uuid: f74cc9cf-a780-5269-ad87-ac14a9073561
ghcid_uuid_sha256: 30f75b5a-a1e8-851b-aeb4-2b2353651e84
ghcid_numeric: 3528389277889611035
ghcid_uuid: cec9fc54-62ff-537b-bb6c-89b34444df76
ghcid_uuid_sha256: 81f029a6-dd58-8425-97c8-99806b462f52
ghcid_numeric: 9363029421958116389
record_id: 019aede0-6f29-75a3-a5bf-56fb1d979d9a
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-UT-VLE-I-KOH
ghcid_numeric: 3528389277889611035
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-UT-HAA-I-KOH
ghcid_numeric: 9363029421958116389
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-UT-VLE-I-KOH to NL-UT-HAA-I-KOH'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2745431
geonames_name: Vleuten
method: GEONAMES_LOOKUP
geonames_id: 2754981
geonames_name: Haarzuilens
feature_code: PPL
population: 6945
population: 0
admin1_code: 09
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.12167
longitude: 4.99722
distance_km: 2.6664713786578256
geonames_id: 2745431
geonames_id: 2754981
digital_platforms:
- platform_name: Kermis Oranjevereniging Haarzuilens Website
platform_url: https://www.kovh.nl/
@ -171,21 +174,21 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:41:27.457181+00:00'
search_query: kermis oranjevereniging haarzuilens
location:
latitude: 52.131066999999994
longitude: 4.977949199999999
latitude: 52.12167
longitude: 4.99722
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:33:13.676736+00:00'
entity_id: ChIJh2alCl1wxkcRgIRCybHvEHY
city: Vleuten
city: Haarzuilens
region_code: UT
country: NL
formatted_address: Laag-Nieuwkoop 22, 3628 GC Kockengen, Netherlands
geonames_id: 2745431
geonames_name: Vleuten
geonames_id: 2754981
geonames_name: Haarzuilens
feature_code: PPL
normalization_timestamp: '2025-12-09T07:10:20.187275+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:22:39.806343+00:00'
retrieval_agent: crawl4ai

View file

@ -0,0 +1,141 @@
original_entry:
organisatie: Stichting Museum de Heksenwaag
webadres_organisatie: http://www.heksenwaag.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1905
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/14748/stichting-museum-de-heksenwaag
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Historic Witches' Weigh House museum in Oudewater
- Preserves the tradition of witch weighing (heksenwaag) dating back to 1545
- Visitors can be officially weighed and receive a certificate
- Located in Oudewater, Utrecht province
kien_enrichment:
kien_name: Stichting Museum de Heksenwaag
kien_url: https://www.immaterieelerfgoed.nl/nl/page/14748/stichting-museum-de-heksenwaag
heritage_forms: []
heritage_form_urls: []
registration_date: null
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Isa van der Wee
role: Directeur/waagmeester
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Museum de Heksenwaag
contact:
email: info@heksenwaag.nl
website: http://www.heksenwaag.nl
phone: 0348-563400
address: Leeuweringerstraat 2, 3421 AC Oudewater, Utrecht
custodian_name:
claim_type: custodian_name
claim_value: Stichting Museum de Heksenwaag
short_name: SMDH
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/14748/stichting-museum-de-heksenwaag
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/14748/stichting-museum-de-heksenwaag
- identifier_scheme: GHCID
identifier_value: NL-UT-OUD-I-SMDH
- identifier_scheme: GHCID_UUID
identifier_value: a12077ef-87a5-5757-913b-6956a430ba26
identifier_url: urn:uuid:a12077ef-87a5-5757-913b-6956a430ba26
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 5551f659-a305-8495-9f7d-4429d9fc606d
identifier_url: urn:uuid:5551f659-a305-8495-9f7d-4429d9fc606d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6147965831185007765'
- identifier_scheme: RECORD_ID
identifier_value: cae00742-db02-49b1-9103-ffc40a457d71
identifier_url: urn:uuid:cae00742-db02-49b1-9103-ffc40a457d71
safeguards:
- https://nde.nl/ontology/hc/heritage-form/heksenwaag-traditie
locations:
- city: Oudewater
country: NL
latitude: 52.025
longitude: 4.86806
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/14748/stichting-museum-de-heksenwaag
geonames_id: 2748979
geonames_name: Oudewater
feature_code: PPL
population: 9836
admin1_code: '09'
region_code: UT
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-UT-OUD-I-SMDH
ghcid_original: NL-UT-OUD-I-SMDH
ghcid_uuid: a12077ef-87a5-5757-913b-6956a430ba26
ghcid_uuid_sha256: 5551f659-a305-8495-9f7d-4429d9fc606d
ghcid_numeric: 6147965831185007765
record_id: cae00742-db02-49b1-9103-ffc40a457d71
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-UT-OUD-I-SMDH
ghcid_numeric: 6147965831185007765
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2748979
geonames_name: Oudewater
feature_code: PPL
population: 9836
admin1_code: '09'
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.025
longitude: 4.86806
distance_km: 0.0
geonames_id: 2748979
location:
city: Oudewater
region_code: UT
country: NL
latitude: 52.025
longitude: 4.86806
geonames_id: 2748979
geonames_name: Oudewater
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Heksenwaag Museum Website
platform_url: http://www.heksenwaag.nl
platform_type: institutional_website

View file

@ -0,0 +1,136 @@
original_entry:
organisatie: Fietsersbond
webadres_organisatie: https://www.fietsersbond.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1882
processing_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T20:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
fetch_timestamp: '2026-01-08T20:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Nederlandse Fietscultuur (Dutch cycling culture) intangible heritage tradition
- Co-custodian with Stichting Landelijk Fietsplatform
- New address as of March 2025 - Niasstraat 6D, 3531 WP Utrecht
kien_enrichment:
kien_name: Fietsersbond
kien_url: https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
heritage_forms:
- Nederlandse Fietscultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Vereniging
original_name_with_legal_form: Fietsersbond
contact:
website: https://www.fietsersbond.nl
address: Niasstraat 6D, 3531 WP Utrecht
custodian_name:
claim_type: custodian_name
claim_value: Fietsersbond
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
identifier_url: https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
- identifier_scheme: GHCID
identifier_value: NL-UT-UTR-I-FB
- identifier_scheme: GHCID_UUID
identifier_value: 27dc2d17-77c8-5b03-943d-33b846e3d91f
identifier_url: urn:uuid:27dc2d17-77c8-5b03-943d-33b846e3d91f
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: f321252b-db66-842c-8c40-5b3f9cc2ad9d
identifier_url: urn:uuid:f321252b-db66-842c-8c40-5b3f9cc2ad9d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '17519324895742698540'
- identifier_scheme: RECORD_ID
identifier_value: ee63df22-6021-4157-becb-58e8c6bf171b
identifier_url: urn:uuid:ee63df22-6021-4157-becb-58e8c6bf171b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/nederlandse-fietscultuur
locations:
- city: Utrecht
country: NL
latitude: 52.09083
longitude: 5.12222
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/nederlandse-fietscultuur
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 376435
admin1_code: '09'
region_code: UT
extraction_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid:
ghcid_current: NL-UT-UTR-I-FB
ghcid_original: NL-UT-UTR-I-FB
ghcid_uuid: 27dc2d17-77c8-5b03-943d-33b846e3d91f
ghcid_uuid_sha256: f321252b-db66-842c-8c40-5b3f9cc2ad9d
ghcid_numeric: 17519324895742698540
record_id: ee63df22-6021-4157-becb-58e8c6bf171b
generation_timestamp: '2026-01-08T20:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-UT-UTR-I-FB
ghcid_numeric: 17519324895742698540
valid_from: '2026-01-08T20:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 376435
admin1_code: '09'
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.09083
longitude: 5.12222
distance_km: 0.0
geonames_id: 2745912
location:
city: Utrecht
region_code: UT
country: NL
latitude: 52.09083
longitude: 5.12222
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
normalization_timestamp: '2026-01-08T20:00:00.000000+00:00'
digital_platforms:
- platform_name: Fietsersbond Website
platform_url: https://www.fietsersbond.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T20:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,136 @@
original_entry:
organisatie: Landelijke Kamer van Verenigingen
webadres_organisatie: http://www.lkvv.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1895
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/931/landelijke-kamer-van-verenigingen
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Studentenverenigingscultuur (Student association culture) intangible heritage
- National umbrella organization for Dutch student associations
kien_enrichment:
kien_name: Landelijke Kamer van Verenigingen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/931/landelijke-kamer-van-verenigingen
heritage_forms:
- Studentenverenigingscultuur
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/page/929/studenten-verenigings-cultuur
registration_date: null
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: null
original_name_with_legal_form: Landelijke Kamer van Verenigingen
contact:
website: http://www.lkvv.nl
address: Jansveld 31, 3512BE Utrecht
custodian_name:
claim_type: custodian_name
claim_value: Landelijke Kamer van Verenigingen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/931/landelijke-kamer-van-verenigingen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/931/landelijke-kamer-van-verenigingen
- identifier_scheme: GHCID
identifier_value: NL-UT-UTR-I-LKV
- identifier_scheme: GHCID_UUID
identifier_value: 3f424d7c-bda9-5822-9aa9-da87f4e0465d
identifier_url: urn:uuid:3f424d7c-bda9-5822-9aa9-da87f4e0465d
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: a93bf2c5-82ea-8e25-b59b-f907c2dc8f83
identifier_url: urn:uuid:a93bf2c5-82ea-8e25-b59b-f907c2dc8f83
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12194607346154614309'
- identifier_scheme: RECORD_ID
identifier_value: 0eb8cdaa-8003-44ab-982c-22fa59efd4d1
identifier_url: urn:uuid:0eb8cdaa-8003-44ab-982c-22fa59efd4d1
safeguards:
- https://nde.nl/ontology/hc/heritage-form/studentenverenigingscultuur
locations:
- city: Utrecht
country: NL
latitude: 52.09083
longitude: 5.12222
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/931/landelijke-kamer-van-verenigingen
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 290529
admin1_code: '09'
region_code: UT
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-UT-UTR-I-LKV
ghcid_original: NL-UT-UTR-I-LKV
ghcid_uuid: 3f424d7c-bda9-5822-9aa9-da87f4e0465d
ghcid_uuid_sha256: a93bf2c5-82ea-8e25-b59b-f907c2dc8f83
ghcid_numeric: 12194607346154614309
record_id: 0eb8cdaa-8003-44ab-982c-22fa59efd4d1
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-UT-UTR-I-LKV
ghcid_numeric: 12194607346154614309
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 290529
admin1_code: '09'
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.09083
longitude: 5.12222
distance_km: 0.0
geonames_id: 2745912
location:
city: Utrecht
region_code: UT
country: NL
latitude: 52.09083
longitude: 5.12222
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms:
- platform_name: Landelijke Kamer van Verenigingen Website
platform_url: http://www.lkvv.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,129 @@
original_entry:
organisatie: Nederlandse Bridge Bond
webadres_organisatie: http://www.bridge.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1878
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/en/bridge
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN batch import January 2026
- Safeguards Bridge (card game) intangible heritage tradition
kien_enrichment:
kien_name: Nederlandse Bridge Bond
kien_url: https://www.immaterieelerfgoed.nl/en/bridge
heritage_forms:
- Bridge
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/en/bridge
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact:
website: http://www.bridge.nl
custodian_name:
claim_type: custodian_name
claim_value: Nederlandse Bridge Bond
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/en/bridge
identifier_url: https://www.immaterieelerfgoed.nl/en/bridge
- identifier_scheme: GHCID
identifier_value: NL-UT-UTR-I-NBB
- identifier_scheme: GHCID_UUID
identifier_value: 1a4e64da-e859-5d9f-953a-989eb6a46723
identifier_url: urn:uuid:1a4e64da-e859-5d9f-953a-989eb6a46723
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: dd66a722-0369-8fa0-b7a7-00d5543c4fad
identifier_url: urn:uuid:dd66a722-0369-8fa0-b7a7-00d5543c4fad
- identifier_scheme: GHCID_NUMERIC
identifier_value: '15953622494534508448'
- identifier_scheme: RECORD_ID
identifier_value: bc696260-af06-40dd-b475-75701d20ef33
identifier_url: urn:uuid:bc696260-af06-40dd-b475-75701d20ef33
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bridge
locations:
- city: Utrecht
country: NL
latitude: 52.09083
longitude: 5.12222
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/en/bridge
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 376435
admin1_code: '09'
region_code: UT
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid:
ghcid_current: NL-UT-UTR-I-NBB
ghcid_original: NL-UT-UTR-I-NBB
ghcid_uuid: 1a4e64da-e859-5d9f-953a-989eb6a46723
ghcid_uuid_sha256: dd66a722-0369-8fa0-b7a7-00d5543c4fad
ghcid_numeric: 15953622494534508448
record_id: bc696260-af06-40dd-b475-75701d20ef33
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-UT-UTR-I-NBB
ghcid_numeric: 15953622494534508448
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
population: 376435
admin1_code: '09'
region_code: UT
country_code: NL
source_coordinates:
latitude: 52.09083
longitude: 5.12222
distance_km: 0.0
geonames_id: 2745912
location:
city: Utrecht
region_code: UT
country: NL
latitude: 52.09083
longitude: 5.12222
geonames_id: 2745912
geonames_name: Utrecht
feature_code: PPLA
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Nederlandse Bridge Bond Website
platform_url: http://www.bridge.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,165 @@
original_entry:
organisatie: Nederlandse Krulbol Federatie
webadres_organisatie: http://www.bolclubmolenzicht.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1918
processing_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-09T12:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/krulbollen
fetch_timestamp: '2026-01-09T12:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- description
- heritage_forms
- address
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via KIEN sitemap discovery on 2026-01-09
- Safeguards Krulbollen in Zeeuws-Vlaanderen (traditional folk sport)
- Krulbollen is a traditional folk sport popular in Zeeuws-Vlaanderen
- Players roll a cheese-shaped disc (krulbol) toward a stake (staak) over 7 meters
- The disc curves due to its rounded edge - 'krul' means curve
- Teams of 1-4 players compete on an 11m x 3.5m sand court
- Techniques include 'bollen' (curve rolling) and 'schieten' (clearing space)
- Registered in KIEN Network since December 2012
- Contact person Theo Verstraete
kien_enrichment:
kien_name: Nederlandse Krulbol Federatie
kien_url: https://www.immaterieelerfgoed.nl/nl/page/728/nederlandse-krulbol-federatie
heritage_forms:
- Krulbollen in Zeeuws-Vlaanderen
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/krulbollen
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
domain: Sport en spel
network_registration_date: december 2012
description: >-
De Nederlandse Krulbol Federatie borgt de traditie van krulbollen in Zeeuws-Vlaanderen.
Krulbollen is een traditionele volkssport die enorm leeft in Zeeuws-Vlaanderen. Het
spel houdt in dat een platte schijf in de vorm van een kaas, de krulbol, over een
afstand van zeven meter gerold wordt en zo dicht mogelijk terechtkomt bij een stok
die in de grond is geplaatst: de staak. Door de afronding aan één zijde van de krulbol
maakt deze bij het werpen een ellipsvormige baan. Daar dankt de traditie haar naam
aan: krul betekent curve. Er wordt gestreden tussen twee teams van een tot maximaal
vier personen. Het spel wordt gespeeld op een baan met zand van elf meter lang en
drie en een halve meter breed, met daarop twee staken die zeven meter uit elkaar
geplaatst zijn. Er zijn verschillende werptechnieken, zoals bollen (de krulbol in
een curve zo dicht mogelijk naar de staak rollen) en schieten (ruimte maken voor je
teamgenoot als de tegenpartij te dicht bij de staak ligt). In Zeeuws-Vlaanderen worden
verschillende competities gespeeld. Door het vastleggen van de geschiedenis, het
organiseren van toernooien en het promoten van het krulbollen bij de jeugd trachten
de verenigingen het krulbollen levend te houden.
legal_status:
legal_form: Federatie
legal_form_prefix: Nederlandse
original_name_with_legal_form: Nederlandse Krulbol Federatie
notes: Federation organizational form
contact:
website: http://www.bolclubmolenzicht.nl
street_address: Kazernestraat 21
postal_code: 4515 AG
city: IJzendijke
contact_person: Theo Verstraete
custodian_name:
claim_type: custodian_name
claim_value: Nederlandse Krulbol Federatie
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/728/nederlandse-krulbol-federatie
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/728/nederlandse-krulbol-federatie
- identifier_scheme: GHCID
identifier_value: NL-ZE-IJZ-I-NKF
- identifier_scheme: GHCID_UUID
identifier_value: 5b78c261-fed7-5dd7-b416-9038b5638a3c
identifier_url: urn:uuid:5b78c261-fed7-5dd7-b416-9038b5638a3c
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 81af8198-0ada-8fa9-8b94-afa2d42c333e
identifier_url: urn:uuid:81af8198-0ada-8fa9-8b94-afa2d42c333e
- identifier_scheme: GHCID_NUMERIC
identifier_value: '9344830241834184617'
- identifier_scheme: RECORD_ID
identifier_value: 7f63e0a7-cfb0-419e-bcda-566949e9d033
identifier_url: urn:uuid:7f63e0a7-cfb0-419e-bcda-566949e9d033
safeguards:
- https://nde.nl/ontology/hc/heritage-form/krulbollen-in-zeeuws-vlaanderen
locations:
- city: IJzendijke
country: NL
latitude: 51.32167
longitude: 3.61667
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/728/nederlandse-krulbol-federatie
geonames_id: 2753348
geonames_name: IJzendijke
feature_code: PPL
population: 1785
admin1_code: '10'
region_code: ZE
extraction_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid:
ghcid_current: NL-ZE-IJZ-I-NKF
ghcid_original: NL-ZE-IJZ-I-NKF
ghcid_uuid: 5b78c261-fed7-5dd7-b416-9038b5638a3c
ghcid_uuid_sha256: 81af8198-0ada-8fa9-8b94-afa2d42c333e
ghcid_numeric: 9344830241834184617
record_id: 7f63e0a7-cfb0-419e-bcda-566949e9d033
generation_timestamp: '2026-01-09T12:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZE-IJZ-I-NKF
ghcid_numeric: 9344830241834184617
valid_from: '2026-01-09T12:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN sitemap discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2753348
geonames_name: IJzendijke
feature_code: PPL
population: 1785
admin1_code: '10'
region_code: ZE
country_code: NL
source_coordinates:
latitude: 51.32167
longitude: 3.61667
distance_km: 0.0
geonames_id: 2753348
location:
city: IJzendijke
region_code: ZE
country: NL
latitude: 51.32167
longitude: 3.61667
geonames_id: 2753348
geonames_name: IJzendijke
feature_code: PPL
normalization_timestamp: '2026-01-09T12:00:00.000000+00:00'
digital_platforms:
- platform_name: Bolclub Molenzicht Website
platform_url: http://www.bolclubmolenzicht.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-09T12:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -0,0 +1,151 @@
original_entry:
organisatie: Zeeuwse Ringrijders Vereniging
webadres_organisatie: http://www.ringrijden.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1914
processing_timestamp: '2026-01-08T23:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/ringensjeesrijden
fetch_timestamp: '2026-01-08T23:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Ring- en sjeesrijden (ring and carriage riding) tradition in Zeeland
- Umbrella organization for 16 local ring riding associations on Walcheren and Zuid-Beveland
- Traditional equestrian sport with medieval origins (possibly from knights' tournaments)
- Participants must wear traditional Zeeuwse klederdracht (Zeeland costume)
- Heritage form has connections to German Rolandreiten and Danish Kranssteken
kien_enrichment:
kien_name: Zeeuwse Ringrijders Vereniging
kien_url: https://www.immaterieelerfgoed.nl/nl/page/2950/zeeuwse-ringrijders-vereniging
heritage_forms:
- Ring- en sjeesrijden
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/ringensjeesrijden
enrichment_timestamp: '2026-01-08T23:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
De Zeeuwse Ringrijders Vereniging (ZRV) is het overkoepelend orgaan op Walcheren
en in Zuid-Beveland voor het ring- en sjezenrijden. Er zijn 16 lokale afdelingen
die zijn aangesloten bij de vereniging. Bij ringrijden zit een ringrijder op een
ongezadeld paard, dat hij in galop door de ringbaan stuurt. Met een lans probeert
hij de ring te steken die halverwege de baan in een ijzeren bus hangt. Het paard
moet versierd zijn en de deelnemer moet de voorgeschreven wedstrijdkleding dragen.
Bij demonstraties ringrijden van de ZRV is iedere deelnemer verplicht in de Zeeuwse
(mannen)klederdracht gekleed. Bij sjeesrijden zitten een man en vrouw in Zeeuwse
klederdracht in een tweewielige antieke wagen achter een paard. De vrouw probeert
de ring te steken met een lans terwijl de man het paard ment.
legal_status:
legal_form: Vereniging
legal_form_prefix: null
original_name_with_legal_form: Zeeuwse Ringrijders Vereniging
contact:
website: http://www.ringrijden.nl
address: Strandweg 11, 4371 PJ Koudekerke, Zeeland, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Zeeuwse Ringrijders Vereniging
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2950/zeeuwse-ringrijders-vereniging
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2950/zeeuwse-ringrijders-vereniging
- identifier_scheme: GHCID
identifier_value: NL-ZE-KOU-I-ZRV
- identifier_scheme: GHCID_UUID
identifier_value: 9c1ea4ee-523e-5eb6-b7fc-c5cbd8e20a17
identifier_url: urn:uuid:9c1ea4ee-523e-5eb6-b7fc-c5cbd8e20a17
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 962ba095-7b00-8c3e-b08f-02d63a1748f4
identifier_url: urn:uuid:962ba095-7b00-8c3e-b08f-02d63a1748f4
- identifier_scheme: GHCID_NUMERIC
identifier_value: '10820919093561924670'
- identifier_scheme: RECORD_ID
identifier_value: 08c35280-4065-4219-a5d6-7b6a17488d02
identifier_url: urn:uuid:08c35280-4065-4219-a5d6-7b6a17488d02
safeguards:
- https://nde.nl/ontology/hc/heritage-form/ring-en-sjeesrijden
locations:
- city: Koudekerke
country: NL
latitude: 51.48167
longitude: 3.55417
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/ringensjeesrijden
geonames_id: 2752374
geonames_name: Koudekerke
feature_code: PPL
population: 2880
admin1_code: '10'
region_code: ZE
extraction_timestamp: '2026-01-08T23:30:00.000000+00:00'
ghcid:
ghcid_current: NL-ZE-KOU-I-ZRV
ghcid_original: NL-ZE-KOU-I-ZRV
ghcid_uuid: 9c1ea4ee-523e-5eb6-b7fc-c5cbd8e20a17
ghcid_uuid_sha256: 962ba095-7b00-8c3e-b08f-02d63a1748f4
ghcid_numeric: 10820919093561924670
record_id: 08c35280-4065-4219-a5d6-7b6a17488d02
generation_timestamp: '2026-01-08T23:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZE-KOU-I-ZRV
ghcid_numeric: 10820919093561924670
valid_from: '2026-01-08T23:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2752374
geonames_name: Koudekerke
feature_code: PPL
population: 2880
admin1_code: '10'
region_code: ZE
country_code: NL
source_coordinates:
latitude: 51.48167
longitude: 3.55417
distance_km: 0.0
geonames_id: 2752374
location:
city: Koudekerke
region_code: ZE
country: NL
latitude: 51.48167
longitude: 3.55417
geonames_id: 2752374
geonames_name: Koudekerke
feature_code: PPL
normalization_timestamp: '2026-01-08T23:30:00.000000+00:00'
digital_platforms:
- platform_name: Zeeuwse Ringrijders Vereniging Website
platform_url: http://www.ringrijden.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T23:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -1,5 +1,6 @@
original_entry:
organisatie: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
organisatie: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en
Baarsdorp
webadres_organisatie: https://www.sinoutskerkebaarsdorp.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
@ -28,8 +29,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:01:29.336329+00:00'
search_query: '"Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp" Goes opgericht
OR gesticht OR sinds'
search_query: '"Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp"
Goes opgericht OR gesticht OR sinds'
source_urls:
- https://www.sinoutskerkebaarsdorp.nl/
- https://www.sinoutskerke-baarsdorp.nl/heerlijkheid/kennisbank/blog/geschiedenis-heerlijkheid-sinoutskerke
@ -49,15 +50,18 @@ provenance:
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from organization name 'Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke
en Baarsdorp' - matched place 'Sinoutskerke' (NAME_EXTRACTION_GEONAMES)
- Location extracted from organization name 'Stichting tot Behoud en Beheer van
de heerlijkheden Sinoutskerke en Baarsdorp' - matched place 'Sinoutskerke' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:38Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:10:28Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZE-GOE-I-BBHSB -> NL-ZE-SIN-I-BBHSB'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Vrouweputje" (vrouweputje.nl)
instead of "Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp" (sinoutskerkebaarsdorp.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Vrouweputje"
(vrouweputje.nl) instead of "Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke
en Baarsdorp" (sinoutskerkebaarsdorp.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
@ -70,7 +74,8 @@ contact:
website: https://www.sinoutskerkebaarsdorp.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
original_name_with_legal_form: Stichting tot Behoud en Beheer van de heerlijkheden
Sinoutskerke en Baarsdorp
custodian_name:
claim_type: custodian_name
claim_value: Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp
@ -82,15 +87,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
- identifier_scheme: GHCID
identifier_value: NL-ZE-GOE-I-BBHSB
identifier_value: NL-ZE-SIN-I-BBHSB
- identifier_scheme: GHCID_UUID
identifier_value: 4cc5f7e0-eda2-5268-ab18-fa06dbdd336b
identifier_url: urn:uuid:4cc5f7e0-eda2-5268-ab18-fa06dbdd336b
identifier_value: dfb88929-d5df-5d85-9d7f-9e070c4913f5
identifier_url: urn:uuid:dfb88929-d5df-5d85-9d7f-9e070c4913f5
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2e1a6aec-a375-8e7d-b120-5ce68f2b3479
identifier_url: urn:uuid:2e1a6aec-a375-8e7d-b120-5ce68f2b3479
identifier_value: 7f164e7f-6fdf-80e3-b95c-562c8161cc36
identifier_url: urn:uuid:7f164e7f-6fdf-80e3-b95c-562c8161cc36
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3322085239726354045'
identifier_value: '9157593201549213923'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-7128-bcf0-72cb5a3d90c0
identifier_url: urn:uuid:019aede0-6f2a-7128-bcf0-72cb5a3d90c0
@ -101,7 +106,8 @@ locations:
longitude: 3.86389
location_resolution:
method: NAME_EXTRACTION_GEONAMES
extracted_from: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
extracted_from: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke
en Baarsdorp
matched_place: Sinoutskerke
is_regional: false
geonames_id: 2747305
@ -112,35 +118,37 @@ location_resolution:
region_code: ZE
extraction_timestamp: '2025-12-05T09:38:08.912066+00:00'
ghcid:
ghcid_current: NL-ZE-GOE-I-BBHSB
ghcid_current: NL-ZE-SIN-I-BBHSB
ghcid_original: NL-ZE-GOE-I-BBHSB
ghcid_uuid: 4cc5f7e0-eda2-5268-ab18-fa06dbdd336b
ghcid_uuid_sha256: 2e1a6aec-a375-8e7d-b120-5ce68f2b3479
ghcid_numeric: 3322085239726354045
ghcid_uuid: dfb88929-d5df-5d85-9d7f-9e070c4913f5
ghcid_uuid_sha256: 7f164e7f-6fdf-80e3-b95c-562c8161cc36
ghcid_numeric: 9157593201549213923
record_id: 019aede0-6f2a-7128-bcf0-72cb5a3d90c0
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZE-GOE-I-BBHSB
ghcid_numeric: 3322085239726354045
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZE-SIN-I-BBHSB
ghcid_numeric: 9157593201549213923
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZE-GOE-I-BBHSB to NL-ZE-SIN-I-BBHSB'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2755476
geonames_name: Goes
method: GEONAMES_LOOKUP
geonames_id: 2747305
geonames_name: Sinoutskerke
feature_code: PPL
population: 36931
population: 0
admin1_code: '10'
region_code: ZE
country_code: NL
source_coordinates:
latitude: 51.4725
longitude: 3.86389
distance_km: 4.478666234148752
geonames_id: 2755476
geonames_id: 2747305
digital_platforms:
- platform_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp Website
- platform_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke
en Baarsdorp Website
platform_url: https://www.sinoutskerkebaarsdorp.nl
platform_type: WEBSITE
platform_category:
@ -162,10 +170,11 @@ web_enrichment:
platform_archive_timestamp: '2025-12-05T15:00:16.379366+00:00'
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Vrouweputje" (website: http://www.vrouweputje.nl/) instead
of "Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp" (official website: https://www.sinoutskerkebaarsdorp.nl).
Domain mismatch: vrouweputje.nl vs sinoutskerkebaarsdorp.nl. Per Rule 40: KIEN is authoritative for
Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Vrouweputje" (website: http://www.vrouweputje.nl/)
instead of "Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp"
(official website: https://www.sinoutskerkebaarsdorp.nl). Domain mismatch: vrouweputje.nl
vs sinoutskerkebaarsdorp.nl. Per Rule 40: KIEN is authoritative for Type I intangible
heritage custodians.'
original_false_match:
place_id: ChIJq3oPUpiJxEcRTEojBRG5dzg
name: Vrouweputje
@ -194,18 +203,15 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:41:39.437643+00:00'
search_query: tot behoud en beheer van de heerlijkheden sinoutskerke en baarsdorp
location:
city: Goes
city: Sinoutskerke
region_code: ZE
country: NL
geonames_id: 2755476
geonames_name: Goes
geonames_id: 2747305
geonames_name: Sinoutskerke
feature_code: PPL
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Vrouweputje".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 51.487603400000005
original_longitude: 3.8514029999999995
normalization_timestamp: '2025-01-08T00:00:00Z'
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 51.4725
longitude: 3.86389
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:23:36.729982+00:00'
retrieval_agent: crawl4ai
@ -220,7 +226,8 @@ digital_platform_v2:
source_status_code: 200
primary_platform:
platform_id: primary_website_vrouweputje_nl
platform_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp Website
platform_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke
en Baarsdorp Website
platform_url: http://www.vrouweputje.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: ''
@ -252,10 +259,10 @@ linkup_enrichment:
- https://www.sinoutskerke-baarsdorp.nl/
- https://nl.wikipedia.org/wiki/Heerlijkheid_Sinoutskerke_en_Baarsdorp
- https://www.sinoutskerke-baarsdorp.nl/heerlijkheid/kennisbank/blog/geschiedenis-heerlijkheid-sinoutskerke
linkup_query: '"Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp" Goes opgericht
OR gesticht OR sinds'
linkup_answer: De Stichting tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp is
opgericht in 2021.
linkup_query: '"Tot Behoud en Beheer van de Heerlijkheden Sinoutskerke en Baarsdorp"
Goes opgericht OR gesticht OR sinds'
linkup_answer: De Stichting tot Behoud en Beheer van de Heerlijkheden Sinoutskerke
en Baarsdorp is opgericht in 2021.
fetch_timestamp: '2025-12-15T22:01:29.296340+00:00'
archive_path: web/1840/linkup/linkup_founding_20251215T220129Z.json
extraction_method: linkup_answer_regex
@ -283,8 +290,9 @@ logo_enrichment:
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ze-goe-i-bbhsb/goal-2026
statement_type: goal
statement_text: Het hoofddoel van de Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke
en Baarsdorp is het in stand houden, bewaken en beheren van cultureel en maatschappelijke erfgoed.
statement_text: Het hoofddoel van de Stichting tot Behoud en Beheer van de heerlijkheden
Sinoutskerke en Baarsdorp is het in stand houden, bewaken en beheren van cultureel
en maatschappelijke erfgoed.
statement_language: nl
extracted_verbatim: true
source_url: https://www.sinoutskerkebaarsdorp.nl

View file

@ -0,0 +1,138 @@
original_entry:
organisatie: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
webadres_organisatie: https://www.sinoutskerkebaarsdorp.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1874
processing_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T19:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
fetch_timestamp: '2026-01-08T19:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Heerlijkheid Sinoutskerke en Baarsdorp intangible heritage tradition
- Preserves medieval lordship traditions including grasetting (sheep grazing) and schapendrift (sheep driving)
kien_enrichment:
kien_name: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
kien_url: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
heritage_forms:
- Heerlijkheid Sinoutskerke en Baarsdorp
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/heerlijkheid-sinoutskerke-en-baarsdorp
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
legal_status:
legal_form: Stichting
original_name_with_legal_form: Stichting tot Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
contact:
website: https://www.sinoutskerkebaarsdorp.nl
email: secretaris@sinoutskerkebaarsdorp.nl
address: Keizersgracht 241, 1016 EA Amsterdam, Noord-Holland
custodian_name:
claim_type: custodian_name
claim_value: Behoud en Beheer van de heerlijkheden Sinoutskerke en Baarsdorp
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
- identifier_scheme: GHCID
identifier_value: NL-ZE-SIN-I-SBBHSB
- identifier_scheme: GHCID_UUID
identifier_value: 301a1c5f-3496-5c53-8f3e-7bda8dfecc5b
identifier_url: urn:uuid:301a1c5f-3496-5c53-8f3e-7bda8dfecc5b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 716adb49-fcfe-8713-b60c-42f32ee5501d
identifier_url: urn:uuid:716adb49-fcfe-8713-b60c-42f32ee5501d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '8172585584640849683'
- identifier_scheme: RECORD_ID
identifier_value: f9324e7e-99fb-45a0-9169-b621bee0cfec
identifier_url: urn:uuid:f9324e7e-99fb-45a0-9169-b621bee0cfec
safeguards:
- https://nde.nl/ontology/hc/heritage-form/heerlijkheid-sinoutskerke-en-baarsdorp
locations:
- city: Sinoutskerke
country: NL
latitude: 51.4725
longitude: 3.86389
location_resolution:
method: GEONAMES_LOOKUP
source_url: https://www.immaterieelerfgoed.nl/nl/page/4118/stichting-tot-behoud-en-beheer-van-de-heerlijkheden-sinoutskerke-en
geonames_id: 2747305
geonames_name: Sinoutskerke
feature_code: PPL
population: 0
admin1_code: '10'
region_code: ZE
extraction_timestamp: '2026-01-08T19:30:00.000000+00:00'
notes: Heritage location is Sinoutskerke in Zeeland; administrative address is Amsterdam
ghcid:
ghcid_current: NL-ZE-SIN-I-SBBHSB
ghcid_original: NL-ZE-SIN-I-SBBHSB
ghcid_uuid: 301a1c5f-3496-5c53-8f3e-7bda8dfecc5b
ghcid_uuid_sha256: 716adb49-fcfe-8713-b60c-42f32ee5501d
ghcid_numeric: 8172585584640849683
record_id: f9324e7e-99fb-45a0-9169-b621bee0cfec
generation_timestamp: '2026-01-08T19:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZE-SIN-I-SBBHSB
ghcid_numeric: 8172585584640849683
valid_from: '2026-01-08T19:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2747305
geonames_name: Sinoutskerke
feature_code: PPL
population: 0
admin1_code: '10'
region_code: ZE
country_code: NL
source_coordinates:
latitude: 51.4725
longitude: 3.86389
distance_km: 0.0
geonames_id: 2747305
location:
city: Sinoutskerke
region_code: ZE
country: NL
latitude: 51.4725
longitude: 3.86389
geonames_id: 2747305
geonames_name: Sinoutskerke
feature_code: PPL
normalization_timestamp: '2026-01-08T19:30:00.000000+00:00'
digital_platforms:
- platform_name: Sinoutskerke en Baarsdorp Website
platform_url: https://www.sinoutskerkebaarsdorp.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T19:30:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T17:21:56.717853+00:00'
search_query: '"Erfgoed Platform Schouwen-Duiveland" Arnhem opgericht OR gesticht OR sinds'
search_query: '"Erfgoed Platform Schouwen-Duiveland" Arnhem opgericht OR gesticht
OR sinds'
source_urls:
- https://erfgoedschouwenduiveland.nl/over-erfgoedplatform-schouwen-duiveland
- https://erfgoedschouwenduiveland.nl/over-erfgoedplatform-schouwen-duiveland/algemeen
@ -53,11 +54,14 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.348544+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-EPS -> NL-ZE-ZIE-I-EPS'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Erfgoed Zeeland" (erfgoedzeeland.nl)
instead of "Erfgoed Platform Schouwen-Duiveland" (erfgoedschouwenduiveland.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Erfgoed
Zeeland" (erfgoedzeeland.nl) instead of "Erfgoed Platform Schouwen-Duiveland"
(erfgoedschouwenduiveland.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Erfgoed Platform Schouwen-Duiveland
@ -86,44 +90,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2479/erfgoed-platform-schouwen-duiveland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2479/erfgoed-platform-schouwen-duiveland
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-EPS
identifier_value: NL-ZE-ZIE-I-EPS
- identifier_scheme: GHCID_UUID
identifier_value: a955bd9b-5f1f-5da2-9df7-c0fb59eba5f9
identifier_url: urn:uuid:a955bd9b-5f1f-5da2-9df7-c0fb59eba5f9
identifier_value: 61ea68fa-0398-57c1-9868-18ba23154572
identifier_url: urn:uuid:61ea68fa-0398-57c1-9868-18ba23154572
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 32bf569d-8b89-8c25-bfd1-57515ac95069
identifier_url: urn:uuid:32bf569d-8b89-8c25-bfd1-57515ac95069
identifier_value: 51c2ac20-0f2a-8acb-b58b-07ac77c11f46
identifier_url: urn:uuid:51c2ac20-0f2a-8acb-b58b-07ac77c11f46
- identifier_scheme: GHCID_NUMERIC
identifier_value: '3656736657099037733'
identifier_value: '5891460516247399115'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7859-84b5-70e6bd17b741
identifier_url: urn:uuid:019aedca-642e-7859-84b5-70e6bd17b741
safeguards:
- https://nde.nl/ontology/hc/heritage-form/strao-rijden
ghcid:
ghcid_current: NL-GE-ARN-I-EPS
ghcid_current: NL-ZE-ZIE-I-EPS
ghcid_original: NL-GE-ARN-I-EPS
ghcid_uuid: a955bd9b-5f1f-5da2-9df7-c0fb59eba5f9
ghcid_uuid_sha256: 32bf569d-8b89-8c25-bfd1-57515ac95069
ghcid_numeric: 3656736657099037733
ghcid_uuid: 61ea68fa-0398-57c1-9868-18ba23154572
ghcid_uuid_sha256: 51c2ac20-0f2a-8acb-b58b-07ac77c11f46
ghcid_numeric: 5891460516247399115
record_id: 019aedca-642e-7859-84b5-70e6bd17b741
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-EPS
ghcid_numeric: 3656736657099037733
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZE-ZIE-I-EPS
ghcid_numeric: 5891460516247399115
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-EPS to NL-ZE-ZIE-I-EPS'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2743913
geonames_name: Zierikzee
feature_code: PPL
population: 10483
admin1_code: '10'
region_code: ZE
country_code: NL
geonames_id: 2759661
geonames_id: 2743913
digital_platforms:
- platform_name: Erfgoed Platform Schouwen-Duiveland Website
platform_url: https://erfgoedschouwenduiveland.nl/
@ -149,8 +158,8 @@ google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Erfgoed Zeeland" (website: https://www.erfgoedzeeland.nl/)
instead of "Erfgoed Platform Schouwen-Duiveland" (official website: https://erfgoedschouwenduiveland.nl/).
Domain mismatch: erfgoedzeeland.nl vs erfgoedschouwenduiveland.nl. Per Rule 40: KIEN is authoritative
for Type I intangible heritage custodians.'
Domain mismatch: erfgoedzeeland.nl vs erfgoedschouwenduiveland.nl. Per Rule 40:
KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJn2OXW9iQxEcRz63UFPKe7pA
name: Erfgoed Zeeland
@ -196,10 +205,11 @@ unesco_enrichment:
lon: 3.22527
lat: 51.20891
url: https://whc.unesco.org/en/list/996
short_description: Brugge is an outstanding example of a medieval historic settlement, which has maintained
its historic fabric as this has evolved over the centuries, and where original Gothic constructions
form part of the town's identity. As one of the commercial and cultural capitals of Europe, Brugge
developed cultural links to different parts of the world. It is closely associated with the school
short_description: Brugge is an outstanding example of a medieval historic settlement,
which has maintained its historic fabric as this has evolved over the centuries,
and where original Gothic constructions form part of the town's identity. As
one of the commercial and cultural capitals of Europe, Brugge developed cultural
links to different parts of the world. It is closely associated with the school
of Flemish Primitive painting.
unesco_ich_enrichment:
country_code: NL
@ -213,10 +223,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
@ -224,10 +235,10 @@ 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 choose specific days and periods to manually divert the
water, and the...
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
@ -235,10 +246,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
@ -246,10 +258,10 @@ 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 medieval periods of history is documented in many parts of the
world. Original...
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
@ -257,23 +269,20 @@ 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 from the craft, millers today also play a key role in transmitting
the cultur...
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...
location:
city: Arnhem
region_code: GE
city: Zierikzee
region_code: ZE
country: NL
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Erfgoed Zeeland".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 51.4988137
original_longitude: 3.6052053999999996
normalization_timestamp: '2025-01-08T00:00:00Z'
geonames_id: 2743913
geonames_name: Zierikzee
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 51.65
longitude: 3.91944
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:27:58.085502+00:00'
retrieval_agent: crawl4ai
@ -290,12 +299,14 @@ digital_platform_v2:
source_status_code: 200
primary_platform:
platform_id: primary_website_erfgoedzeeland_nl
platform_name: Samen beschermen, benutten en beleven we het erfgoed in Zeeland Website
platform_name: Samen beschermen, benutten en beleven we het erfgoed in Zeeland
Website
platform_url: https://www.erfgoedzeeland.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: Als aanspreekpunt en kenniscentrum voor het Zeeuwse erfgoed informeren, adviseren en
ondersteunen wij erfgoedbeheerders, erfgoedprofessionals, erfgoedvrijwilligers, monumenteigenaren,
onderwijsgevenden, overheidsmedewerkers en iedereen die zich inzet voor het...
description: Als aanspreekpunt en kenniscentrum voor het Zeeuwse erfgoed informeren,
adviseren en ondersteunen wij erfgoedbeheerders, erfgoedprofessionals, erfgoedvrijwilligers,
monumenteigenaren, onderwijsgevenden, overheidsmedewerkers en iedereen die zich
inzet voor het...
language: nl
og_image: null
favicon: https://www.erfgoedzeeland.nl/img/favicons/favicon-32x32.png
@ -345,7 +356,8 @@ timeline_enrichment:
- https://stichtingmonumenten.nl/
- https://www.stad-en-lande.nl/
- https://erfgoedschouwenduiveland.nl/node/115
linkup_query: '"Erfgoed Platform Schouwen-Duiveland" Arnhem opgericht OR gesticht OR sinds'
linkup_query: '"Erfgoed Platform Schouwen-Duiveland" Arnhem opgericht OR gesticht
OR sinds'
linkup_answer: Het Erfgoedplatform Schouwen-Duiveland is opgericht in 2015.
fetch_timestamp: '2025-12-15T17:21:56.714714+00:00'
archive_path: web/1707/linkup/linkup_founding_20251215T172156Z.json

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:09:47.438623+00:00'
search_query: '"Dodenherdenking Alphen" Alphen aan den Rijn opgericht OR gesticht OR sinds'
search_query: '"Dodenherdenking Alphen" Alphen aan den Rijn opgericht OR gesticht
OR sinds'
source_urls:
- https://www.alphens.nl/nieuws/dodenherdenking-2025-in-alphen-aan-den-rijn.html
- https://www.alphens.nl/nieuws/dodenherdenking-2024-in-alphen-aan-den-rijn.html
@ -49,9 +50,12 @@ provenance:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- 'safeguards slot added 2025-12-05T09:07:10.732807+00:00: linked to 1 IntangibleHeritageForm(s)'
- Location extracted from organization name 'Stichting dodenherdenking Alphen' - matched place 'Alphen aan den Rijn' (NAME_EXTRACTION_GEONAMES)
- Location extracted from organization name 'Stichting dodenherdenking Alphen' -
matched place 'Alphen aan den Rijn' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:43Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:10:52Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-AAD-I-DA -> NL-ZH-AAR-I-DA'
kien_enrichment:
kien_name: Stichting dodenherdenking Alphen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/2325/stichting-dodenherdenking-alphen
@ -75,15 +79,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2325/stichting-dodenherdenking-alphen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2325/stichting-dodenherdenking-alphen
- identifier_scheme: GHCID
identifier_value: NL-ZH-AAD-I-DA
identifier_value: NL-ZH-AAR-I-DA
- identifier_scheme: GHCID_UUID
identifier_value: ee0b86cb-5bbc-552c-a4ad-fd006743c0cb
identifier_url: urn:uuid:ee0b86cb-5bbc-552c-a4ad-fd006743c0cb
identifier_value: 7dcadae2-773b-5acc-829c-27d79b31dbfb
identifier_url: urn:uuid:7dcadae2-773b-5acc-829c-27d79b31dbfb
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 2266f1ce-644f-8cc2-8595-e90e3bd20393
identifier_url: urn:uuid:2266f1ce-644f-8cc2-8595-e90e3bd20393
identifier_value: ef108a6f-598f-85ec-a475-1141082c5200
identifier_url: urn:uuid:ef108a6f-598f-85ec-a475-1141082c5200
- identifier_scheme: GHCID_NUMERIC
identifier_value: '2478934513662536898'
identifier_value: '17226420785540695532'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-7110-bec4-6b2c14236f1a
identifier_url: urn:uuid:019aede0-6f2a-7110-bec4-6b2c14236f1a
@ -107,21 +111,26 @@ location_resolution:
region_code: ZH
extraction_timestamp: '2025-12-05T09:38:08.894065+00:00'
ghcid:
ghcid_current: NL-ZH-AAD-I-DA
ghcid_current: NL-ZH-AAR-I-DA
ghcid_original: NL-ZH-AAD-I-DA
ghcid_uuid: ee0b86cb-5bbc-552c-a4ad-fd006743c0cb
ghcid_uuid_sha256: 2266f1ce-644f-8cc2-8595-e90e3bd20393
ghcid_numeric: 2478934513662536898
ghcid_uuid: 7dcadae2-773b-5acc-829c-27d79b31dbfb
ghcid_uuid_sha256: ef108a6f-598f-85ec-a475-1141082c5200
ghcid_numeric: 17226420785540695532
record_id: 019aede0-6f2a-7110-bec4-6b2c14236f1a
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-AAD-I-DA
ghcid_numeric: 2478934513662536898
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-AAR-I-DA
ghcid_numeric: 17226420785540695532
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-AAD-I-DA to NL-ZH-AAR-I-DA'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2759875
geonames_name: Alphen aan den Rijn
feature_code: PPL
@ -129,15 +138,12 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.12917
longitude: 4.65546
distance_km: 0.0
geonames_id: 2759875
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Waalsdorpervlakte Bourdon Bell" (different memorial in different location) instead
of "Stichting dodenherdenking Alphen" (memorial foundation Alphen aan den Rijn). Name mismatch detected during manual
false_match_reason: 'Google Maps returned "Waalsdorpervlakte Bourdon Bell" (different
memorial in different location) instead of "Stichting dodenherdenking Alphen"
(memorial foundation Alphen aan den Rijn). Name mismatch detected during manual
review. Per Rule 40: KIEN is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJrZf_p9m5xUcRgJU1bZQIuQw
@ -165,8 +171,8 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:41:47.754154+00:00'
search_query: dodenherdenking alphen
location:
latitude: 52.115082099999995
longitude: 4.3364664
latitude: 52.12917
longitude: 4.65546
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -179,7 +185,7 @@ location:
geonames_id: 2759875
geonames_name: Alphen aan den Rijn
feature_code: PPL
normalization_timestamp: '2025-12-09T07:10:52.960543+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:25:25.736252+00:00'
retrieval_agent: crawl4ai
@ -197,9 +203,10 @@ digital_platform_v2:
platform_name: Home - Erepeloton Waalsdorp Website
platform_url: https://erepeloton.nl/
platform_type: DISCOVERY_PORTAL
description: 'Helpt u mee?Het Erepeloton Waalsdorp heeft tot doel jaarlijks een herdenking te verzorgen die de nagedachtenis
aan de slachtoffers waardig is. Als u deze doelstelling een warm hart toedraagt en u wilt bijdragen aan het voortbestaan
van deze herdenking, kunt u een donatie doen. Doneren
description: 'Helpt u mee?Het Erepeloton Waalsdorp heeft tot doel jaarlijks een
herdenking te verzorgen die de nagedachtenis aan de slachtoffers waardig is.
Als u deze doelstelling een warm hart toedraagt en u wilt bijdragen aan het
voortbestaan van deze herdenking, kunt u een donatie doen. Doneren
Updates over Erepeloton Waalsdorp? Volg onze'
language: nl
@ -223,7 +230,8 @@ logo_enrichment:
- claim_type: favicon_url
claim_value: https://erepeloton.nl/wp-content/uploads/2021/04/cropped-Logo-180x180.jpg
source_url: https://www.erepeloton.nl
css_selector: '[document] > html.avada-html-layout-wide.avada-html-header-position-top > head > link:nth-of-type(13)'
css_selector: '[document] > html.avada-html-layout-wide.avada-html-header-position-top
> head > link:nth-of-type(13)'
retrieved_on: '2025-12-22T12:01:13.310940+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
@ -231,7 +239,8 @@ logo_enrichment:
- claim_type: og_image_url
claim_value: https://erepeloton.nl/wp-content/uploads/2021/04/Logo.jpg
source_url: https://www.erepeloton.nl
css_selector: '[document] > html.avada-html-layout-wide.avada-html-header-position-top > head > meta:nth-of-type(13)'
css_selector: '[document] > html.avada-html-layout-wide.avada-html-header-position-top
> head > meta:nth-of-type(13)'
retrieved_on: '2025-12-22T12:01:13.310940+00:00'
extraction_method: crawl4ai_meta_og
summary:

View file

@ -0,0 +1,140 @@
original_entry:
organisatie: Stichting De Zeeuwse Beurtvaart
webadres_organisatie: null
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1915
processing_timestamp: '2026-01-08T23:30:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T23:30:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/5006/bietentocht
fetch_timestamp: '2026-01-08T23:30:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- address
- description
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards the Bietentocht tradition in Zeeland
- Annual four-day sailing event with traditional flatboats (platbodems)
- Symbolic transport of sugar beets to preserve the history of cargo sailing
- Event started in 1999 to keep traditional sailing craftsmanship alive
- Heritage registered in KIEN Network since June 2019
kien_enrichment:
kien_name: Stichting De Zeeuwse Beurtvaart
kien_url: https://www.immaterieelerfgoed.nl/nl/page/4995/stichting-de-zeeuwse-beurtvaart
heritage_forms:
- Bietentocht
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/page/5006/bietentocht
registration_date: '2019-06-01'
enrichment_timestamp: '2026-01-08T23:30:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
description: >-
De Bietentocht is een vierdaagse tocht die elk najaar gevaren wordt door platbodems
met een symbolische hoeveelheid suikerbieten aan boord. Dit evenement is in het leven
geroepen om de geschiedenis van het vervoer van vracht onder zeil over de Zeeuwse
wateren weer een gezicht te geven. Ook het instandhouden van het vakmanschap
(traditioneel zeilen en varen) is van groot belang. Scheepseigenaren en opvarenden
van allerlei leeftijden van het varend erfgoed zijn beoefenaren en betrokkenen.
Sinds 1999 wordt in Zeeland de Bietentocht gevaren. De tocht wordt gevaren zoals
dat in vroegere tijden, rond 1900, ook werd gedaan.
legal_status:
legal_form: Stichting
legal_form_prefix: Stichting
original_name_with_legal_form: Stichting De Zeeuwse Beurtvaart
custodian_name:
claim_type: custodian_name
claim_value: De Zeeuwse Beurtvaart
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T23:30:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/4995/stichting-de-zeeuwse-beurtvaart
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/4995/stichting-de-zeeuwse-beurtvaart
- identifier_scheme: GHCID
identifier_value: NL-ZH-ACH-I-SDZB
- identifier_scheme: GHCID_UUID
identifier_value: ad6a8764-9094-5d20-acec-99ae8a935a70
identifier_url: urn:uuid:ad6a8764-9094-5d20-acec-99ae8a935a70
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 40fa185f-9a69-87e3-8f30-16755683f41d
identifier_url: urn:uuid:40fa185f-9a69-87e3-8f30-16755683f41d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4682081561496635363'
- identifier_scheme: RECORD_ID
identifier_value: 32eaede9-d586-4731-aa12-79d04ef48c4e
identifier_url: urn:uuid:32eaede9-d586-4731-aa12-79d04ef48c4e
safeguards:
- https://nde.nl/ontology/hc/heritage-form/bietentocht
locations:
- city: Achthuizen
country: NL
latitude: 51.68833
longitude: 4.27917
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/5006/bietentocht
geonames_id: 2759983
geonames_name: Achthuizen
feature_code: PPL
population: 0
admin1_code: '11'
region_code: ZH
extraction_timestamp: '2026-01-08T23:30:00.000000+00:00'
ghcid:
ghcid_current: NL-ZH-ACH-I-SDZB
ghcid_original: NL-ZH-ACH-I-SDZB
ghcid_uuid: ad6a8764-9094-5d20-acec-99ae8a935a70
ghcid_uuid_sha256: 40fa185f-9a69-87e3-8f30-16755683f41d
ghcid_numeric: 4682081561496635363
record_id: 32eaede9-d586-4731-aa12-79d04ef48c4e
generation_timestamp: '2026-01-08T23:30:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZH-ACH-I-SDZB
ghcid_numeric: 4682081561496635363
valid_from: '2026-01-08T23:30:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2759983
geonames_name: Achthuizen
feature_code: PPL
population: 0
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 51.68833
longitude: 4.27917
distance_km: 0.0
geonames_id: 2759983
location:
city: Achthuizen
region_code: ZH
country: NL
latitude: 51.68833
longitude: 4.27917
geonames_id: 2759983
geonames_name: Achthuizen
feature_code: PPL
normalization_timestamp: '2026-01-08T23:30:00.000000+00:00'

View file

@ -54,6 +54,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.223572+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:15:56Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:00:21Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-AGR -> NL-ZH-BLE-I-AGR'
kien_enrichment:
kien_name: Arresleeclub Glijen en Rijen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1000/arresleeclub-glijen-en-rijen
@ -81,44 +83,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1000/arresleeclub-glijen-en-rijen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1000/arresleeclub-glijen-en-rijen
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-AGR
identifier_value: NL-ZH-BLE-I-AGR
- identifier_scheme: GHCID_UUID
identifier_value: f2fef255-1770-5bb1-941c-6b27a5a95552
identifier_url: urn:uuid:f2fef255-1770-5bb1-941c-6b27a5a95552
identifier_value: a61632ca-f4a3-520e-9c5a-977f1a00a041
identifier_url: urn:uuid:a61632ca-f4a3-520e-9c5a-977f1a00a041
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 569d24fd-c53d-83eb-a95f-c16a4d7aa7ab
identifier_url: urn:uuid:569d24fd-c53d-83eb-a95f-c16a4d7aa7ab
identifier_value: 190d83b2-a545-8124-b561-0bd6fd26b1bc
identifier_url: urn:uuid:190d83b2-a545-8124-b561-0bd6fd26b1bc
- identifier_scheme: GHCID_NUMERIC
identifier_value: '6241185330959823851'
identifier_value: '1805243828945641764'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642d-7be9-a6c8-c629e1a9a21f
identifier_url: urn:uuid:019aedca-642d-7be9-a6c8-c629e1a9a21f
safeguards:
- https://nde.nl/ontology/hc/heritage-form/menrit-op-hemelvaartsdag-in-de-alblasserwaard
ghcid:
ghcid_current: NL-GE-ARN-I-AGR
ghcid_current: NL-ZH-BLE-I-AGR
ghcid_original: NL-GE-ARN-I-AGR
ghcid_uuid: f2fef255-1770-5bb1-941c-6b27a5a95552
ghcid_uuid_sha256: 569d24fd-c53d-83eb-a95f-c16a4d7aa7ab
ghcid_numeric: 6241185330959823851
ghcid_uuid: a61632ca-f4a3-520e-9c5a-977f1a00a041
ghcid_uuid_sha256: 190d83b2-a545-8124-b561-0bd6fd26b1bc
ghcid_numeric: 1805243828945641764
record_id: 019aedca-642d-7be9-a6c8-c629e1a9a21f
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-AGR
ghcid_numeric: 6241185330959823851
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-BLE-I-AGR
ghcid_numeric: 1805243828945641764
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-AGR to NL-ZH-BLE-I-AGR'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2758825
geonames_name: Bleskensgraaf
feature_code: PPL
population: 2800
admin1_code: '11'
region_code: ZH
country_code: NL
geonames_id: 2759661
geonames_id: 2758825
digital_platforms:
- platform_name: Arresleeclub Glijen en Rijen Website
platform_url: http://www.glijenenrijen.nl
@ -321,21 +328,21 @@ unesco_ich_enrichment:
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...
location:
latitude: 51.873266
longitude: 4.6413261
latitude: 51.8725
longitude: 4.78333
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:31:39.707920+00:00'
entity_id: ChIJ__8zJUYsxEcRHLtt9VAzVqw
city: Arnhem
region_code: GE
city: Bleskensgraaf
region_code: ZH
country: NL
formatted_address: Kievitstraat 6, 2953 EE Alblasserdam, Netherlands
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T07:00:21.205957+00:00'
geonames_id: 2758825
geonames_name: Bleskensgraaf
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:26:42.851336+00:00'
retrieval_agent: crawl4ai

View file

@ -38,6 +38,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.440087+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.209544+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location normalized on 2025-12-09T12:27:20Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-GE-ARN-I-A -> NL-ZH-BRI-I-A'
kien_enrichment:
kien_name: 1 April Vereniging
kien_url: https://www.immaterieelerfgoed.nl/nl/page/2927/1-april-vereniging
@ -65,44 +67,49 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/2927/1-april-vereniging
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/2927/1-april-vereniging
- identifier_scheme: GHCID
identifier_value: NL-GE-ARN-I-A
identifier_value: NL-ZH-BRI-I-A
- identifier_scheme: GHCID_UUID
identifier_value: 236992f4-a941-580a-9843-9ee0f797b972
identifier_url: urn:uuid:236992f4-a941-580a-9843-9ee0f797b972
identifier_value: 686e8288-b1b4-557c-8745-9a8f9cfdea8d
identifier_url: urn:uuid:686e8288-b1b4-557c-8745-9a8f9cfdea8d
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: ad739cdb-8a8b-8e73-9351-36c9d90b119d
identifier_url: urn:uuid:ad739cdb-8a8b-8e73-9351-36c9d90b119d
identifier_value: ae8262d9-12c3-891a-89d0-0d410360e89f
identifier_url: urn:uuid:ae8262d9-12c3-891a-89d0-0d410360e89f
- identifier_scheme: GHCID_NUMERIC
identifier_value: '12498505857619455603'
identifier_value: '12574721794034059546'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642d-79e6-bcdf-8edebb6e7b8e
identifier_url: urn:uuid:019aedca-642d-79e6-bcdf-8edebb6e7b8e
safeguards:
- https://nde.nl/ontology/hc/heritage-form/1-aprilviering-brielle
ghcid:
ghcid_current: NL-GE-ARN-I-A
ghcid_current: NL-ZH-BRI-I-A
ghcid_original: NL-GE-ARN-I-A
ghcid_uuid: 236992f4-a941-580a-9843-9ee0f797b972
ghcid_uuid_sha256: ad739cdb-8a8b-8e73-9351-36c9d90b119d
ghcid_numeric: 12498505857619455603
ghcid_uuid: 686e8288-b1b4-557c-8745-9a8f9cfdea8d
ghcid_uuid_sha256: ae8262d9-12c3-891a-89d0-0d410360e89f
ghcid_numeric: 12574721794034059546
record_id: 019aedca-642d-79e6-bcdf-8edebb6e7b8e
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-GE-ARN-I-A
ghcid_numeric: 12498505857619455603
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-BRI-I-A
ghcid_numeric: 12574721794034059546
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-GE-ARN-I-A to NL-ZH-BRI-I-A'
location_resolution:
method: NAME_LOOKUP
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
population: 162424
admin1_code: '03'
region_code: GE
method: GEONAMES_LOOKUP
geonames_id: 2758326
geonames_name: Brielle
feature_code: PPL
population: 2765
admin1_code: '11'
region_code: ZH
country_code: NL
geonames_id: 2759661
geonames_id: 2758326
digital_platforms:
- platform_name: 1 April Vereniging Website
platform_url: http://www.1aprilvereniging.nl
@ -264,13 +271,13 @@ location:
coordinate_provenance:
source_type: ROOT_LOCATIONS
source_path: locations[0]
city: Arnhem
region_code: GE
city: Brielle
region_code: ZH
country: NL
geonames_id: 2759661
geonames_name: Arnhem
feature_code: PPLA
normalization_timestamp: '2025-12-09T12:27:20.008811+00:00'
geonames_id: 2758326
geonames_name: Brielle
feature_code: PPL
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -0,0 +1,151 @@
original_entry:
organisatie: Stichting Kunst en Cultuur Brielle
webadres_organisatie: http://www.kunstencultuurbrielle.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1907
processing_timestamp: '2026-01-08T22:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T22:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: http://www.immaterieelerfgoed.nl/nl/page/847/stichting-kunst-en-cultuur-brielle
fetch_timestamp: '2026-01-08T22:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- address
- contact_persons
- description
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Foundation for art and culture in Brielle/Voorne aan Zee
- Organizes the annual Brielse Maskerade tradition
- Responsible for programming BREStheater
- Supports cultural organizations in the region
- Located in Brielle, Zuid-Holland
kien_enrichment:
kien_name: Stichting Kunst en Cultuur Brielle
kien_url: http://www.immaterieelerfgoed.nl/nl/page/847/stichting-kunst-en-cultuur-brielle
heritage_forms:
- Brielse Maskerade
heritage_form_urls:
- http://www.immaterieelerfgoed.nl/nl/brielsemaskerade
registration_date: null
enrichment_timestamp: '2026-01-08T22:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_persons:
- name: Cynthia Dekker
role: null
- name: Bram Poldervaart
role: Trekker vrijwilligers Maskerade
description: >-
Stichting Kunst en Cultuur Brielle/Voorne aan Zee organiseert diverse evenementen,
ondersteunt organisaties in Brielle/Voorne aan Zee die zich bezig houden met kunst
en cultuur en is verantwoordelijk voor de programmering van het BREStheater.
legal_status:
legal_form: Stichting
legal_form_prefix: null
original_name_with_legal_form: Stichting Kunst en Cultuur Brielle
contact:
email: webmaster@kunstencultuurbrielle.nl
website: http://www.kunstencultuurbrielle.nl
phone: 0181-413397
address: Reede 2A, 3232CV Brielle
custodian_name:
claim_type: custodian_name
claim_value: Stichting Kunst en Cultuur Brielle
short_name: SKCB
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: http://www.immaterieelerfgoed.nl/nl/page/847/stichting-kunst-en-cultuur-brielle
identifier_url: http://www.immaterieelerfgoed.nl/nl/page/847/stichting-kunst-en-cultuur-brielle
- identifier_scheme: GHCID
identifier_value: NL-ZH-BRI-I-SKCB
- identifier_scheme: GHCID_UUID
identifier_value: dbf813d8-9cf6-5dda-9bf9-9fdf6b658b3f
identifier_url: urn:uuid:dbf813d8-9cf6-5dda-9bf9-9fdf6b658b3f
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 05861d30-90e1-8d60-a9ff-0e1256009fb1
identifier_url: urn:uuid:05861d30-90e1-8d60-a9ff-0e1256009fb1
- identifier_scheme: GHCID_NUMERIC
identifier_value: '398037711495179616'
- identifier_scheme: RECORD_ID
identifier_value: f9bcacbe-4580-4714-8e5d-4112af746199
identifier_url: urn:uuid:f9bcacbe-4580-4714-8e5d-4112af746199
safeguards:
- https://nde.nl/ontology/hc/heritage-form/brielse-maskerade
locations:
- city: Brielle
country: NL
latitude: 51.90167
longitude: 4.1625
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: http://www.immaterieelerfgoed.nl/nl/page/847/stichting-kunst-en-cultuur-brielle
geonames_id: 2758326
geonames_name: Brielle
feature_code: PPL
population: 2765
admin1_code: '11'
region_code: ZH
extraction_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid:
ghcid_current: NL-ZH-BRI-I-SKCB
ghcid_original: NL-ZH-BRI-I-SKCB
ghcid_uuid: dbf813d8-9cf6-5dda-9bf9-9fdf6b658b3f
ghcid_uuid_sha256: 05861d30-90e1-8d60-a9ff-0e1256009fb1
ghcid_numeric: 398037711495179616
record_id: f9bcacbe-4580-4714-8e5d-4112af746199
generation_timestamp: '2026-01-08T22:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZH-BRI-I-SKCB
ghcid_numeric: 398037711495179616
valid_from: '2026-01-08T22:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2758326
geonames_name: Brielle
feature_code: PPL
population: 2765
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 51.90167
longitude: 4.1625
distance_km: 0.0
geonames_id: 2758326
location:
city: Brielle
region_code: ZH
country: NL
latitude: 51.90167
longitude: 4.1625
geonames_id: 2758326
geonames_name: Brielle
feature_code: PPL
normalization_timestamp: '2026-01-08T22:00:00.000000+00:00'
digital_platforms:
- platform_name: Kunst en Cultuur Brielle Website
platform_url: http://www.kunstencultuurbrielle.nl
platform_type: institutional_website

View file

@ -38,6 +38,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.492238+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.253130+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:28Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-THX-I-BRJH -> NL-ZH-DHA-I-BRJH'
kien_enrichment:
kien_name: Berry Rutjes Jr. hoedenontwerper
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1287/berry-rutjes-jr.-hoedenontwerper
@ -67,36 +69,41 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1287/berry-rutjes-jr.-hoedenontwerper
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1287/berry-rutjes-jr.-hoedenontwerper
- identifier_scheme: GHCID
identifier_value: NL-ZH-THX-I-BRJH
identifier_value: NL-ZH-DHA-I-BRJH
- identifier_scheme: GHCID_UUID
identifier_value: 99c6838e-ac9a-5751-95af-9010063e6be1
identifier_url: urn:uuid:99c6838e-ac9a-5751-95af-9010063e6be1
identifier_value: 3f37c3d5-c61e-56b9-83da-fd759f866cdc
identifier_url: urn:uuid:3f37c3d5-c61e-56b9-83da-fd759f866cdc
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: a3bbabf3-34d2-8e04-ace3-92af4d79cdfa
identifier_url: urn:uuid:a3bbabf3-34d2-8e04-ace3-92af4d79cdfa
identifier_value: d4a7b5bc-aa86-8d3a-a688-31942702cd76
identifier_url: urn:uuid:d4a7b5bc-aa86-8d3a-a688-31942702cd76
- identifier_scheme: GHCID_NUMERIC
identifier_value: '11798212709878791684'
identifier_value: '15323416079070817594'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7d35-8eaa-4c435046e189
identifier_url: urn:uuid:019aedca-642e-7d35-8eaa-4c435046e189
safeguards:
- https://nde.nl/ontology/hc/heritage-form/hoeden-maken
ghcid:
ghcid_current: NL-ZH-THX-I-BRJH
ghcid_current: NL-ZH-DHA-I-BRJH
ghcid_original: NL-ZH-THX-I-BRJH
ghcid_uuid: 99c6838e-ac9a-5751-95af-9010063e6be1
ghcid_uuid_sha256: a3bbabf3-34d2-8e04-ace3-92af4d79cdfa
ghcid_numeric: 11798212709878791684
ghcid_uuid: 3f37c3d5-c61e-56b9-83da-fd759f866cdc
ghcid_uuid_sha256: d4a7b5bc-aa86-8d3a-a688-31942702cd76
ghcid_numeric: 15323416079070817594
record_id: 019aedca-642e-7d35-8eaa-4c435046e189
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-THX-I-BRJH
ghcid_numeric: 11798212709878791684
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-BRJH
ghcid_numeric: 15323416079070817594
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-THX-I-BRJH to NL-ZH-DHA-I-BRJH'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
@ -104,10 +111,6 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.0799838
longitude: 4.3113461
distance_km: 1.4607765050416235
geonames_id: 2747373
digital_platforms:
- platform_name: Berry Rutjes Jr. hoedenontwerper Website
@ -156,8 +159,8 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:42:37.978346+00:00'
search_query: berry rutjes jr. hoedenontwerper
location:
latitude: 52.08313520000001
longitude: 4.3047254
latitude: 52.07667
longitude: 4.29861
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -170,7 +173,7 @@ location:
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
normalization_timestamp: '2025-12-09T07:13:28.647831+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:52:09.220561+00:00'
retrieval_agent: crawl4ai

View file

@ -52,6 +52,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.594560+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.340317+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location normalized on 2025-12-09T13:16:12Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-THX-I-DV -> NL-ZH-DHA-I-DV'
kien_enrichment:
kien_name: Duindorp Vreugdevuur
kien_url: https://www.immaterieelerfgoed.nl/nl/page/18097/duindorp-vreugdevuur
@ -75,15 +77,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/18097/duindorp-vreugdevuur
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/18097/duindorp-vreugdevuur
- identifier_scheme: GHCID
identifier_value: NL-ZH-THX-I-DV
identifier_value: NL-ZH-DHA-I-DV
- identifier_scheme: GHCID_UUID
identifier_value: 7749f940-01d6-5d74-8052-6a8f254a2ce0
identifier_url: urn:uuid:7749f940-01d6-5d74-8052-6a8f254a2ce0
identifier_value: c2d0e8b8-9564-528b-8320-ec07538390f2
identifier_url: urn:uuid:c2d0e8b8-9564-528b-8320-ec07538390f2
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 66a90e38-e05e-8f28-be62-f4f41c0ae5c0
identifier_url: urn:uuid:66a90e38-e05e-8f28-be62-f4f41c0ae5c0
identifier_value: 65b73f17-b3f6-8346-bcb6-2d9e28686251
identifier_url: urn:uuid:65b73f17-b3f6-8346-bcb6-2d9e28686251
- identifier_scheme: GHCID_NUMERIC
identifier_value: '7397459500378009384'
identifier_value: '7329396289604850502'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7cb2-82e5-b5300fcd37ac
identifier_url: urn:uuid:019aedca-642e-7cb2-82e5-b5300fcd37ac
@ -132,27 +134,33 @@ wikidata_enrichment:
part_of:
id: Q61943269
label: Bonfires in Scheveningen
description: bouwen en ontsteken van vreugdevuur op oudejaarsavond in stadsdeel Scheveningen van gemeente Den Haag
description: bouwen en ontsteken van vreugdevuur op oudejaarsavond in stadsdeel
Scheveningen van gemeente Den Haag
wikidata_media:
commons_category: Vreugdevuur Duindorp
safeguards:
- https://nde.nl/ontology/hc/heritage-form/duindorp-vreugdevuur
ghcid:
ghcid_current: NL-ZH-THX-I-DV
ghcid_current: NL-ZH-DHA-I-DV
ghcid_original: NL-ZH-THX-I-DV
ghcid_uuid: 7749f940-01d6-5d74-8052-6a8f254a2ce0
ghcid_uuid_sha256: 66a90e38-e05e-8f28-be62-f4f41c0ae5c0
ghcid_numeric: 7397459500378009384
ghcid_uuid: c2d0e8b8-9564-528b-8320-ec07538390f2
ghcid_uuid_sha256: 65b73f17-b3f6-8346-bcb6-2d9e28686251
ghcid_numeric: 7329396289604850502
record_id: 019aedca-642e-7cb2-82e5-b5300fcd37ac
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-THX-I-DV
ghcid_numeric: 7397459500378009384
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-DV
ghcid_numeric: 7329396289604850502
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-THX-I-DV to NL-ZH-DHA-I-DV'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
@ -160,15 +168,12 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.0799838
longitude: 4.3113461
distance_km: 1.4607765050416235
geonames_id: 2747373
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Vreugdevuur Scheveningen Noorderstrand" (different neighborhood''s bonfire (Scheveningen,
not Duindorp)) instead of "Duindorp Vreugdevuur" (Duindorp neighborhood bonfire tradition). Per Rule 40: KIEN is authoritative
false_match_reason: 'Google Maps returned "Vreugdevuur Scheveningen Noorderstrand"
(different neighborhood''s bonfire (Scheveningen, not Duindorp)) instead of "Duindorp
Vreugdevuur" (Duindorp neighborhood bonfire tradition). Per Rule 40: KIEN is authoritative
for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJDUVEIpmwxUcROZSu16HeBvg
@ -192,8 +197,8 @@ google_maps_enrichment:
correction_agent: opencode-claude-sonnet-4
correction_method: manual_review_name_location_mismatch
location:
latitude: 52.1079118
longitude: 4.2702706
latitude: 52.07667
longitude: 4.29861
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -206,7 +211,7 @@ location:
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
normalization_timestamp: '2025-12-09T13:16:12.277824+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:52:11.258091+00:00'
retrieval_agent: crawl4ai
@ -228,50 +233,62 @@ digital_platform_v2:
wikidata_status: current
wikidata_id: Q77270297
google_maps_status: CONFLATED
google_maps_conflation_details: 'CRITICAL CONFLATION ERROR: Google Maps enrichment (lines 155-172) matched the WRONG bonfire.
Place_id ChIJDUVEIpmwxUcROZSu16HeBvg is for "Vreugdevuur Scheveningen Noorderstrand" (the COMPETING bonfire on the northern
beach), NOT Duindorp Vreugdevuur (on the southern beach in Duindorp neighborhood). The coordinates 52.1079118, 4.2702706
are ~3km north of the actual Duindorp bonfire location. The website and Facebook page in the Google Maps data belong
to Noorderstrand, not Duindorp. Duindorp has NO official website - only KIEN registry entry.'
location_conflation_details: The location block (lines 173-188) inherited the wrong coordinates from the conflated Google
Maps data. Actual Duindorp bonfire location is in the Duindorp neighborhood (Wikidata Q2958603), southern part of Scheveningen
beach, approximately 52.08, 4.26. The original locations block (lines 48-52) has better coordinates (52.0799838, 4.3113461)
though still approximate.
notes: Duindorp Vreugdevuur is one of TWO competing New Year's Eve bonfires in Scheveningen, Den Haag. The other is Vreugdevuur
Scheveningen Noorderstrand (NL-ZH-SCH-I-VSN.yaml). These are SEPARATE community organizations that annually compete
for the title of tallest bonfire in the Netherlands. Both are part of the broader tradition "Bonfires in Scheveningen"
(Wikidata Q61943269). Building typically starts December 27, with ignition on New Year's Eve. Duindorp held the Guinness
World Record in 2014, lost to Noorderstrand in 2015. Both bonfires were affected by the 2018-2019 fire tornado incident
that sent burning debris into Scheveningen, resulting in stricter safety regulations. In 2024, both bonfires were lit
early (December 30 at 11 PM) due to dangerous 80km/h winds forecast for New Year's Eve. Unlike Noorderstrand which has
an official website (vreugdevuur-scheveningen.nl), Duindorp operates informally with no official web presence.
google_maps_conflation_details: 'CRITICAL CONFLATION ERROR: Google Maps enrichment
(lines 155-172) matched the WRONG bonfire. Place_id ChIJDUVEIpmwxUcROZSu16HeBvg
is for "Vreugdevuur Scheveningen Noorderstrand" (the COMPETING bonfire on the
northern beach), NOT Duindorp Vreugdevuur (on the southern beach in Duindorp
neighborhood). The coordinates 52.1079118, 4.2702706 are ~3km north of the actual
Duindorp bonfire location. The website and Facebook page in the Google Maps
data belong to Noorderstrand, not Duindorp. Duindorp has NO official website
- only KIEN registry entry.'
location_conflation_details: The location block (lines 173-188) inherited the
wrong coordinates from the conflated Google Maps data. Actual Duindorp bonfire
location is in the Duindorp neighborhood (Wikidata Q2958603), southern part
of Scheveningen beach, approximately 52.08, 4.26. The original locations block
(lines 48-52) has better coordinates (52.0799838, 4.3113461) though still approximate.
notes: Duindorp Vreugdevuur is one of TWO competing New Year's Eve bonfires in
Scheveningen, Den Haag. The other is Vreugdevuur Scheveningen Noorderstrand
(NL-ZH-SCH-I-VSN.yaml). These are SEPARATE community organizations that annually
compete for the title of tallest bonfire in the Netherlands. Both are part of
the broader tradition "Bonfires in Scheveningen" (Wikidata Q61943269). Building
typically starts December 27, with ignition on New Year's Eve. Duindorp held
the Guinness World Record in 2014, lost to Noorderstrand in 2015. Both bonfires
were affected by the 2018-2019 fire tornado incident that sent burning debris
into Scheveningen, resulting in stricter safety regulations. In 2024, both bonfires
were lit early (December 30 at 11 PM) due to dangerous 80km/h winds forecast
for New Year's Eve. Unlike Noorderstrand which has an official website (vreugdevuur-scheveningen.nl),
Duindorp operates informally with no official web presence.
organization_profile:
organization_type: Intangible heritage custodian - community bonfire organization
scope: local
parent_tradition: Bonfires in Scheveningen (Q61943269)
description: Community organization responsible for building and igniting the Duindorp New Year's Eve bonfire (vreugdevuur)
on the southern part of Scheveningen beach. The Duindorp bonfire is built by residents of the Duindorp neighborhood
and competes annually with the Noorderstrand bonfire for the title of tallest bonfire in the Netherlands. The tradition
involves collecting and stacking wooden pallets and other materials starting December 27, culminating in the ignition
description: Community organization responsible for building and igniting the
Duindorp New Year's Eve bonfire (vreugdevuur) on the southern part of Scheveningen
beach. The Duindorp bonfire is built by residents of the Duindorp neighborhood
and competes annually with the Noorderstrand bonfire for the title of tallest
bonfire in the Netherlands. The tradition involves collecting and stacking wooden
pallets and other materials starting December 27, culminating in the ignition
on New Year's Eve at midnight.
heritage_forms:
- form_name: Duindorp Vreugdevuur
form_type: Seasonal celebration / bonfire tradition
kien_url: https://www.immaterieelerfgoed.nl/nl/page/18097/duindorp-vreugdevuur
parent_tradition: Bonfires in Scheveningen
description: Annual New Year's Eve bonfire built and ignited by the Duindorp community on the southern part of Scheveningen
beach. Part of the broader Scheveningen bonfire tradition dating back decades.
description: Annual New Year's Eve bonfire built and ignited by the Duindorp community
on the southern part of Scheveningen beach. Part of the broader Scheveningen
bonfire tradition dating back decades.
primary_platform:
platform_id: kien_duindorp_vreugdevuur
platform_url: https://www.immaterieelerfgoed.nl/nl/page/18097/duindorp-vreugdevuur
platform_type: heritage_registry_entry
platform_status: ACTIVE
notes: KIEN registry is the only official online presence for Duindorp Vreugdevuur. Unlike competitor Noorderstrand, Duindorp
has no official website.
notes: KIEN registry is the only official online presence for Duindorp Vreugdevuur.
Unlike competitor Noorderstrand, Duindorp has no official website.
social_media:
- platform: None documented
notes: No official social media presence found for Duindorp Vreugdevuur. The Facebook page facebook.com/vreugdevuurscheveningen
belongs to the COMPETING Noorderstrand bonfire, not Duindorp.
notes: No official social media presence found for Duindorp Vreugdevuur. The Facebook
page facebook.com/vreugdevuurscheveningen belongs to the COMPETING Noorderstrand
bonfire, not Duindorp.
key_contacts:
- name: Michel Kulk
role: Contact person

View file

@ -28,8 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:56:05.843097+00:00'
search_query: '"Federatie Surinaamse aflegverenigingen Nederland" The Hague opgericht OR gesticht
OR sinds'
search_query: '"Federatie Surinaamse aflegverenigingen Nederland" The Hague
opgericht OR gesticht OR sinds'
source_urls:
- https://www.immaterieelerfgoed.nl/nl/page/685/afro-surinaamse-aflegrituelen
- https://onsamsterdam.nl/artikelen/vereniging-ons-suriname-een-club-voor-alle-surinamers
@ -53,11 +53,14 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.614955+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.357771+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:28Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-THX-I-FSAN -> NL-ZH-DHA-I-FSAN'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Federation of Somali Associations
in the Netherlands" (fsan.nl) instead of "Federatie Surinaamse aflegverenigingen Nederland" (federatieafleggers.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Federation
of Somali Associations in the Netherlands" (fsan.nl) instead of "Federatie Surinaamse
aflegverenigingen Nederland" (federatieafleggers.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Federatie Surinaamse aflegverenigingen Nederland
@ -86,36 +89,41 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1167/federatie-surinaamse-aflegverenigingen-nederland
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1167/federatie-surinaamse-aflegverenigingen-nederland
- identifier_scheme: GHCID
identifier_value: NL-ZH-THX-I-FSAN
identifier_value: NL-ZH-DHA-I-FSAN
- identifier_scheme: GHCID_UUID
identifier_value: df64c2e0-2b10-570c-934b-3fad25e4141a
identifier_url: urn:uuid:df64c2e0-2b10-570c-934b-3fad25e4141a
identifier_value: f4035a0b-6c3a-51d8-94e4-1f00ef3438bc
identifier_url: urn:uuid:f4035a0b-6c3a-51d8-94e4-1f00ef3438bc
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 90cb0243-5f4b-8f11-bf73-67b662c74c56
identifier_url: urn:uuid:90cb0243-5f4b-8f11-bf73-67b662c74c56
identifier_value: 45bea547-9b8a-87b7-8a48-9dd6ce0545ad
identifier_url: urn:uuid:45bea547-9b8a-87b7-8a48-9dd6ce0545ad
- identifier_scheme: GHCID_NUMERIC
identifier_value: '10433435450118725393'
identifier_value: '5025635961162844087'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-74d7-9d50-85e2a4ae7f0b
identifier_url: urn:uuid:019aedca-642e-74d7-9d50-85e2a4ae7f0b
safeguards:
- https://nde.nl/ontology/hc/heritage-form/afro-surinaamse-aflegrituelen
ghcid:
ghcid_current: NL-ZH-THX-I-FSAN
ghcid_current: NL-ZH-DHA-I-FSAN
ghcid_original: NL-ZH-THX-I-FSAN
ghcid_uuid: df64c2e0-2b10-570c-934b-3fad25e4141a
ghcid_uuid_sha256: 90cb0243-5f4b-8f11-bf73-67b662c74c56
ghcid_numeric: 10433435450118725393
ghcid_uuid: f4035a0b-6c3a-51d8-94e4-1f00ef3438bc
ghcid_uuid_sha256: 45bea547-9b8a-87b7-8a48-9dd6ce0545ad
ghcid_numeric: 5025635961162844087
record_id: 019aedca-642e-74d7-9d50-85e2a4ae7f0b
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-THX-I-FSAN
ghcid_numeric: 10433435450118725393
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-FSAN
ghcid_numeric: 5025635961162844087
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-THX-I-FSAN to NL-ZH-DHA-I-FSAN'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
@ -123,10 +131,6 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.0799838
longitude: 4.3113461
distance_km: 1.4607765050416235
geonames_id: 2747373
digital_platforms:
- platform_name: Federatie Surinaamse aflegverenigingen Nederland Website
@ -151,10 +155,11 @@ web_enrichment:
retry_timestamp: '2025-12-05T15:16:23.960838+00:00'
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Federation of Somali Associations in the Netherlands" (website:
http://www.fsan.nl/) instead of "Federatie Surinaamse aflegverenigingen Nederland" (official website:
http://www.federatieafleggers.nl). Domain mismatch: fsan.nl vs federatieafleggers.nl. Per Rule 40:
KIEN is authoritative for Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Federation of Somali Associations in
the Netherlands" (website: http://www.fsan.nl/) instead of "Federatie Surinaamse
aflegverenigingen Nederland" (official website: http://www.federatieafleggers.nl).
Domain mismatch: fsan.nl vs federatieafleggers.nl. Per Rule 40: KIEN is authoritative
for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJzdFV7dcJxkcRiCNuoM_oWXo
name: Federation of Somali Associations in the Netherlands
@ -187,13 +192,9 @@ location:
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Federation
of Somali Associations in the Netherlands".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 52.2903149
original_longitude: 4.8679625
normalization_timestamp: '2025-01-08T00:00:00Z'
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 52.07667
longitude: 4.29861
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:52:13.295958+00:00'
retrieval_agent: crawl4ai
@ -261,10 +262,11 @@ timeline_enrichment:
- https://www.immaterieelerfgoed.nl/nl/page/685/afro-surinaamse-aflegrituelen
- https://nl.wikipedia.org/wiki/Landelijke_Organisatie_van_Surinamers_in_Nederland
- https://nl.wikipedia.org/wiki/Surinaamse_Voetbal_Bond
linkup_query: '"Federatie Surinaamse aflegverenigingen Nederland" The Hague opgericht OR gesticht
OR sinds'
linkup_answer: De Federatie Surinaamse Aflegverenigingen Nederland is opgericht op 24 september 2015
te Amsterdam. Het contactadres is in Den Haag (Hoefkade 165, 2516 DC Den Haag).
linkup_query: '"Federatie Surinaamse aflegverenigingen Nederland" The Hague opgericht
OR gesticht OR sinds'
linkup_answer: De Federatie Surinaamse Aflegverenigingen Nederland is opgericht
op 24 september 2015 te Amsterdam. Het contactadres is in Den Haag (Hoefkade
165, 2516 DC Den Haag).
fetch_timestamp: '2025-12-15T22:56:05.837886+00:00'
archive_path: web/1709/linkup/linkup_founding_20251215T225605Z.json
extraction_method: linkup_answer_regex

View file

@ -53,6 +53,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:06:12.662979+00:00: linked to 1 IntangibleHeritageForm(s)'
- 'safeguards slot added 2025-12-05T09:07:10.398574+00:00: linked to 1 IntangibleHeritageForm(s)'
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:28Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-THX-I-HTOB -> NL-ZH-DHA-I-HTOB'
kien_enrichment:
kien_name: Haagse Tilduivenbond Ons Belang
kien_url: https://www.immaterieelerfgoed.nl/nl/page/834/haagse-tilduivenbond-ons-belang
@ -78,36 +80,41 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/834/haagse-tilduivenbond-ons-belang
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/834/haagse-tilduivenbond-ons-belang
- identifier_scheme: GHCID
identifier_value: NL-ZH-THX-I-HTOB
identifier_value: NL-ZH-DHA-I-HTOB
- identifier_scheme: GHCID_UUID
identifier_value: 57260d48-ef07-5ca2-b4a9-40e28b55b786
identifier_url: urn:uuid:57260d48-ef07-5ca2-b4a9-40e28b55b786
identifier_value: 42d24604-0c33-5965-a15f-765549fbda8b
identifier_url: urn:uuid:42d24604-0c33-5965-a15f-765549fbda8b
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 4cb17f2a-3294-889a-9b54-07708c82bcb5
identifier_url: urn:uuid:4cb17f2a-3294-889a-9b54-07708c82bcb5
identifier_value: 765df9d8-9ed7-84bd-80c7-ddfa47375030
identifier_url: urn:uuid:765df9d8-9ed7-84bd-80c7-ddfa47375030
- identifier_scheme: GHCID_NUMERIC
identifier_value: '5526338036974246042'
identifier_value: '8529247978082759869'
- identifier_scheme: RECORD_ID
identifier_value: 019aedca-642e-7c95-8dce-661f07360c19
identifier_url: urn:uuid:019aedca-642e-7c95-8dce-661f07360c19
safeguards:
- https://nde.nl/ontology/hc/heritage-form/haagse-tilduiven-sport
ghcid:
ghcid_current: NL-ZH-THX-I-HTOB
ghcid_current: NL-ZH-DHA-I-HTOB
ghcid_original: NL-ZH-THX-I-HTOB
ghcid_uuid: 57260d48-ef07-5ca2-b4a9-40e28b55b786
ghcid_uuid_sha256: 4cb17f2a-3294-889a-9b54-07708c82bcb5
ghcid_numeric: 5526338036974246042
ghcid_uuid: 42d24604-0c33-5965-a15f-765549fbda8b
ghcid_uuid_sha256: 765df9d8-9ed7-84bd-80c7-ddfa47375030
ghcid_numeric: 8529247978082759869
record_id: 019aedca-642e-7c95-8dce-661f07360c19
generation_timestamp: '2025-12-05T09:14:14.797181+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-THX-I-HTOB
ghcid_numeric: 5526338036974246042
valid_from: '2025-12-05T09:14:14.797181+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-HTOB
ghcid_numeric: 8529247978082759869
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-THX-I-HTOB to NL-ZH-DHA-I-HTOB'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
@ -115,10 +122,6 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.0799838
longitude: 4.3113461
distance_km: 1.4607765050416235
geonames_id: 2747373
digital_platforms:
- platform_name: Haagse Tilduivenbond Ons Belang Website
@ -167,8 +170,8 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:42:39.902487+00:00'
search_query: haagse tilduivenbond ons belang
location:
latitude: 52.0533984
longitude: 4.2784379
latitude: 52.07667
longitude: 4.29861
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
@ -181,7 +184,7 @@ location:
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
normalization_timestamp: '2025-12-09T07:13:28.790229+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: httpx_beautifulsoup

View file

@ -51,6 +51,8 @@ provenance:
- 'safeguards slot added 2025-12-05T09:07:10.442620+00:00: linked to 1 IntangibleHeritageForm(s)'
- Location extracted from KIEN_PROFILE_CONTACT - https://www.immaterieelerfgoed.nl/nl/page/1184/jacky-schild
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:28Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-THX-I-JS -> NL-ZH-DHA-I-JS'
kien_enrichment:
kien_name: Jacky schild
kien_url: https://www.immaterieelerfgoed.nl/nl/page/1184/jacky-schild
@ -71,15 +73,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/1184/jacky-schild
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/1184/jacky-schild
- identifier_scheme: GHCID
identifier_value: NL-ZH-THX-I-JS
identifier_value: NL-ZH-DHA-I-JS
- identifier_scheme: GHCID_UUID
identifier_value: 48089361-8947-555f-b7bb-89ad0eab05b6
identifier_url: urn:uuid:48089361-8947-555f-b7bb-89ad0eab05b6
identifier_value: b01cc5f3-628d-554a-9117-a25b49cff1d0
identifier_url: urn:uuid:b01cc5f3-628d-554a-9117-a25b49cff1d0
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 3cee4af4-be75-8897-9311-ee3666890210
identifier_url: urn:uuid:3cee4af4-be75-8897-9311-ee3666890210
identifier_value: 4278c20c-b151-88e1-ba70-7395ec94da9d
identifier_url: urn:uuid:4278c20c-b151-88e1-ba70-7395ec94da9d
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4390529101760678039'
identifier_value: '4789791563478816993'
- identifier_scheme: RECORD_ID
identifier_value: 019aee2b-2bfc-766d-beb2-8cb9f41852b8
identifier_url: urn:uuid:019aee2b-2bfc-766d-beb2-8cb9f41852b8
@ -98,21 +100,26 @@ location_resolution:
region_code: ZH
extraction_timestamp: '2025-12-05T10:58:18.511409+00:00'
ghcid:
ghcid_current: NL-ZH-THX-I-JS
ghcid_current: NL-ZH-DHA-I-JS
ghcid_original: NL-ZH-THX-I-JS
ghcid_uuid: 48089361-8947-555f-b7bb-89ad0eab05b6
ghcid_uuid_sha256: 3cee4af4-be75-8897-9311-ee3666890210
ghcid_numeric: 4390529101760678039
ghcid_uuid: b01cc5f3-628d-554a-9117-a25b49cff1d0
ghcid_uuid_sha256: 4278c20c-b151-88e1-ba70-7395ec94da9d
ghcid_numeric: 4789791563478816993
record_id: 019aee2b-2bfc-766d-beb2-8cb9f41852b8
generation_timestamp: '2025-12-05T10:59:56.993747+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-THX-I-JS
ghcid_numeric: 4390529101760678039
valid_from: '2025-12-05T10:59:56.993747+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-JS
ghcid_numeric: 4789791563478816993
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-THX-I-JS to NL-ZH-DHA-I-JS'
location_resolution:
method: REVERSE_GEOCODE
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
@ -120,10 +127,6 @@ ghcid:
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.07667
longitude: 4.29861
distance_km: 0.0
geonames_id: 2747373
google_maps_enrichment:
api_status: NOT_FOUND
@ -147,7 +150,7 @@ location:
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
normalization_timestamp: '2025-12-09T07:13:28.819791+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
digital_platform_v2:
transformation_metadata:
transformed_from: existing_enrichment

View file

@ -28,7 +28,8 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:53:29.619285+00:00'
search_query: '"Vreugdevuur Scheveningen Noorderstrand" Scheveningen opgericht OR gesticht OR sinds'
search_query: '"Vreugdevuur Scheveningen Noorderstrand" Scheveningen opgericht
OR gesticht OR sinds'
source_urls:
- https://nl.wikipedia.org/wiki/Vreugdevuren_van_Scheveningen-Dorp_en_Duindorp
- https://www.travelaroundwithme.com/vreugdevuur-scheveningen/
@ -48,14 +49,17 @@ provenance:
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Location extracted from organization name 'Vreugdevuur Scheveningen Noorderstrand' - matched place
'Den Haag' (NAME_EXTRACTION_HARDCODED)
- Location extracted from organization name 'Vreugdevuur Scheveningen Noorderstrand'
- matched place 'Den Haag' (NAME_EXTRACTION_HARDCODED)
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:26Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-SCH-I-VSN -> NL-ZH-DHA-I-VSN'
corrections:
- correction_date: '2025-01-08T00:00:00Z'
correction_type: google_maps_false_match
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Vreugdevuur Scheveningen
Noorderstrand🔥" (facebook.com) instead of "Vreugdevuur Scheveningen Noorderstrand" (vreugdevuur-scheveningen.nl).
description: Marked Google Maps enrichment as FALSE_MATCH. GMaps returned "Vreugdevuur
Scheveningen Noorderstrand🔥" (facebook.com) instead of "Vreugdevuur Scheveningen
Noorderstrand" (vreugdevuur-scheveningen.nl).
corrected_by: opencode-claude-sonnet-4
kien_enrichment:
kien_name: Vreugdevuur Scheveningen Noorderstrand
@ -77,15 +81,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/808/vreugdevuur-scheveningen-noorderstrand
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/808/vreugdevuur-scheveningen-noorderstrand
- identifier_scheme: GHCID
identifier_value: NL-ZH-SCH-I-VSN
identifier_value: NL-ZH-DHA-I-VSN
- identifier_scheme: GHCID_UUID
identifier_value: 99494854-67be-5df4-b325-cc583b427c8a
identifier_url: urn:uuid:99494854-67be-5df4-b325-cc583b427c8a
identifier_value: e0c3024c-b62b-545e-8ebd-0a8766ef7f41
identifier_url: urn:uuid:e0c3024c-b62b-545e-8ebd-0a8766ef7f41
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 11d67b6f-44a9-819b-9197-1f9948e82589
identifier_url: urn:uuid:11d67b6f-44a9-819b-9197-1f9948e82589
identifier_value: 2703947e-9315-8c6d-b89c-37671727c510
identifier_url: urn:uuid:2703947e-9315-8c6d-b89c-37671727c510
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1285350461484384667'
identifier_value: '2811253863763770477'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-7c30-9134-6a4411aee579
identifier_url: urn:uuid:019aede0-6f2a-7c30-9134-6a4411aee579
@ -102,33 +106,34 @@ location_resolution:
region_code: ZH
extraction_timestamp: '2025-12-05T09:38:09.014633+00:00'
ghcid:
ghcid_current: NL-ZH-SCH-I-VSN
ghcid_current: NL-ZH-DHA-I-VSN
ghcid_original: NL-ZH-SCH-I-VSN
ghcid_uuid: 99494854-67be-5df4-b325-cc583b427c8a
ghcid_uuid_sha256: 11d67b6f-44a9-819b-9197-1f9948e82589
ghcid_numeric: 1285350461484384667
ghcid_uuid: e0c3024c-b62b-545e-8ebd-0a8766ef7f41
ghcid_uuid_sha256: 2703947e-9315-8c6d-b89c-37671727c510
ghcid_numeric: 2811253863763770477
record_id: 019aede0-6f2a-7c30-9134-6a4411aee579
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-SCH-I-VSN
ghcid_numeric: 1285350461484384667
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-DHA-I-VSN
ghcid_numeric: 2811253863763770477
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-SCH-I-VSN to NL-ZH-DHA-I-VSN'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 2747599
geonames_name: Scheveningen
feature_code: PPL
population: 23000
method: GEONAMES_LOOKUP
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
population: 474292
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.1
longitude: 4.2667
distance_km: 1.109605880031255
geonames_id: 2747599
geonames_id: 2747373
digital_platforms:
- platform_name: Vreugdevuur Scheveningen Noorderstrand Website
platform_url: http://www.vreugdevuur-scheveningen.nl
@ -155,10 +160,11 @@ web_enrichment:
retry_timestamp: '2025-12-05T15:17:52.072499+00:00'
google_maps_enrichment:
status: FALSE_MATCH
false_match_reason: 'Google Maps returned "Vreugdevuur Scheveningen Noorderstrand🔥" (website: http://www.facebook.com/vreugdevuurscheveningen)
instead of "Vreugdevuur Scheveningen Noorderstrand" (official website: http://www.vreugdevuur-scheveningen.nl).
Domain mismatch: facebook.com vs vreugdevuur-scheveningen.nl. Per Rule 40: KIEN is authoritative for
Type I intangible heritage custodians.'
false_match_reason: 'Google Maps returned "Vreugdevuur Scheveningen Noorderstrand🔥"
(website: http://www.facebook.com/vreugdevuurscheveningen) instead of "Vreugdevuur
Scheveningen Noorderstrand" (official website: http://www.vreugdevuur-scheveningen.nl).
Domain mismatch: facebook.com vs vreugdevuur-scheveningen.nl. Per Rule 40: KIEN
is authoritative for Type I intangible heritage custodians.'
original_false_match:
place_id: ChIJDUVEIpmwxUcROZSu16HeBvg
name: Vreugdevuur Scheveningen Noorderstrand🔥
@ -184,19 +190,15 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:42:33.820206+00:00'
search_query: vreugdevuur scheveningen noorderstrand
location:
city: Scheveningen
city: The Hague
region_code: ZH
country: NL
geonames_id: 2747599
geonames_name: Scheveningen
feature_code: PPL
note: Coordinates removed due to Google Maps false match. Original coordinates were from "Vreugdevuur
Scheveningen Noorderstrand🔥".
coordinate_provenance_removed:
reason: FALSE_MATCH
original_latitude: 52.1079118
original_longitude: 4.2702706
normalization_timestamp: '2025-01-08T00:00:00Z'
geonames_id: 2747373
geonames_name: The Hague
feature_code: PPLG
normalization_timestamp: '2026-01-09T09:13:27Z'
latitude: 52.07667
longitude: 4.29861
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:51:33.963518+00:00'
retrieval_agent: crawl4ai
@ -218,39 +220,45 @@ digital_platform_v2:
wikidata_status: NOT_FOUND
google_maps_status: current
google_maps_place_id: ChIJDUVEIpmwxUcROZSu16HeBvg
notes: 'Stichting Vreugdevuur Scheveningen organizes the annual New Year''s Eve bonfire competition
on Noorderstrand beach in Scheveningen. The tradition originated from illegal Christmas tree burnings
in Scheveningen neighborhoods during the 1940s-50s ("rausen" = gathering Christmas trees). Now an
official, permitted event with two competing bonfires - Noorderstrand and Duindorp - competing for
the tallest bonfire in the Netherlands. IMPORTANT HISTORICAL NOTE: The 2018-2019 New Year''s Eve
bonfire caused a major incident when sparks created a "fire tornado" that spread burning debris
across Scheveningen, damaging buildings and cars. This led to investigations and stricter safety
regulations. The event continues with enhanced safety measures. Google Maps correctly identifies
the beach location at Strandweg. Website is active despite HTTP 427 errors during automated crawling
- shows countdown timers for 2025-2026 event.'
notes: 'Stichting Vreugdevuur Scheveningen organizes the annual New Year''s Eve
bonfire competition on Noorderstrand beach in Scheveningen. The tradition originated
from illegal Christmas tree burnings in Scheveningen neighborhoods during the
1940s-50s ("rausen" = gathering Christmas trees). Now an official, permitted
event with two competing bonfires - Noorderstrand and Duindorp - competing for
the tallest bonfire in the Netherlands. IMPORTANT HISTORICAL NOTE: The 2018-2019
New Year''s Eve bonfire caused a major incident when sparks created a "fire
tornado" that spread burning debris across Scheveningen, damaging buildings
and cars. This led to investigations and stricter safety regulations. The event
continues with enhanced safety measures. Google Maps correctly identifies the
beach location at Strandweg. Website is active despite HTTP 427 errors during
automated crawling - shows countdown timers for 2025-2026 event.'
organization_profile:
organization_type: Intangible heritage custodian - Traditional celebration organizer
scope: local
description: Foundation organizing the annual New Year's Eve bonfire on Scheveningen Noorderstrand
beach. The bonfire tradition is a deeply rooted community practice in Scheveningen, fostering neighborhood
identity and social cohesion. The event involves months of preparation with teams collecting Christmas
trees ("rausen") to build the tallest possible bonfire structure. The competition between Noorderstrand
and Duindorp neighborhoods for the tallest bonfire is a source of local pride. The bonfire building
typically starts December 27 with ignition on New Year's Eve (December 31).
description: Foundation organizing the annual New Year's Eve bonfire on Scheveningen
Noorderstrand beach. The bonfire tradition is a deeply rooted community practice
in Scheveningen, fostering neighborhood identity and social cohesion. The event
involves months of preparation with teams collecting Christmas trees ("rausen")
to build the tallest possible bonfire structure. The competition between Noorderstrand
and Duindorp neighborhoods for the tallest bonfire is a source of local pride.
The bonfire building typically starts December 27 with ignition on New Year's
Eve (December 31).
heritage_forms:
- form_name: Vreugdevuur Scheveningen Noorderstrand
form_type: Traditional celebration / New Year's bonfire
kien_url: https://www.immaterieelerfgoed.nl/nl/page/808/vreugdevuur-scheveningen-noorderstrand
description: Annual New Year's Eve bonfire competition on Scheveningen beach. Originated from neighborhood
Christmas tree burning traditions in the 1940s-50s. Strong community bonding element with teams
competing to build the tallest bonfire in the Netherlands.
description: Annual New Year's Eve bonfire competition on Scheveningen beach.
Originated from neighborhood Christmas tree burning traditions in the 1940s-50s.
Strong community bonding element with teams competing to build the tallest bonfire
in the Netherlands.
primary_platform:
platform_id: vreugdevuur-scheveningen-website
platform_url: https://vreugdevuur-scheveningen.nl/
platform_type: organizational_website
platform_status: ACTIVE
description: Official website with countdown timers for bonfire building start and ignition dates.
Provides information about the tradition, contact details, and event updates.
description: Official website with countdown timers for bonfire building start
and ignition dates. Provides information about the tradition, contact details,
and event updates.
digital_services:
- service_name: Event Countdown
service_url: https://vreugdevuur-scheveningen.nl/

View file

@ -0,0 +1,140 @@
original_entry:
organisatie: Koninklijke Bond van Oranjeverenigingen
webadres_organisatie: http://www.oranjebond.nl
type_organisatie: intangible_heritage_custodian
systeem: KIEN
type:
- I
entry_index: 1896
processing_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_status: enriched
provenance:
schema_version: 1.0.0
generated_at: '2026-01-08T21:00:00.000000+00:00'
sources:
kien:
- source_type: kien_intangible_heritage_registry
source_url: https://www.immaterieelerfgoed.nl/nl/page/770/koninklijke-bond-van-oranjeverenigingen
fetch_timestamp: '2026-01-08T21:00:00.000000+00:00'
data_tier: TIER_1_AUTHORITATIVE
claims_extracted:
- name
- website
- email
- address
- heritage_forms
data_tier_summary:
TIER_1_AUTHORITATIVE:
- kien_intangible_heritage_registry
TIER_2_VERIFIED: []
TIER_3_CROWD_SOURCED: []
TIER_4_INFERRED: []
notes:
- Entry created from KIEN (Kenniscentrum Immaterieel Erfgoed Nederland) registry
- Intangible heritage custodian organization
- Created via manual KIEN search discovery on 2026-01-08
- Safeguards Koningsdag (King's Day) intangible heritage tradition
- Royal Bond of Orange Associations - umbrella organization for local Orange associations
kien_enrichment:
kien_name: Koninklijke Bond van Oranjeverenigingen
kien_url: https://www.immaterieelerfgoed.nl/nl/page/770/koninklijke-bond-van-oranjeverenigingen
heritage_forms:
- Koningsdag
heritage_form_urls:
- https://www.immaterieelerfgoed.nl/nl/koningsdag
registration_date: null
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
source: https://www.immaterieelerfgoed.nl
contact_person: Dick Steenks
legal_status:
legal_form: Bond
legal_form_prefix: Koninklijke
original_name_with_legal_form: Koninklijke Bond van Oranjeverenigingen
contact:
email: secretariaat@oranjebond.nl
website: http://www.oranjebond.nl
address: Johanna Naber-Erf 273, 3315 HH Dordrecht, Nederland
custodian_name:
claim_type: custodian_name
claim_value: Koninklijke Bond van Oranjeverenigingen
source: kien_registry
confidence: 0.95
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
identifiers:
- identifier_scheme: KIEN_URL
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/770/koninklijke-bond-van-oranjeverenigingen
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/770/koninklijke-bond-van-oranjeverenigingen
- identifier_scheme: GHCID
identifier_value: NL-ZH-DOR-I-KBO
- identifier_scheme: GHCID_UUID
identifier_value: 433361c2-5467-5cb7-b990-3b0c9d0212d0
identifier_url: urn:uuid:433361c2-5467-5cb7-b990-3b0c9d0212d0
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 4370b354-a253-8e67-9a38-8e22ded39312
identifier_url: urn:uuid:4370b354-a253-8e67-9a38-8e22ded39312
- identifier_scheme: GHCID_NUMERIC
identifier_value: '4859581174014750311'
- identifier_scheme: RECORD_ID
identifier_value: 327faec1-2b91-47d6-8b3a-7697f96009d7
identifier_url: urn:uuid:327faec1-2b91-47d6-8b3a-7697f96009d7
safeguards:
- https://nde.nl/ontology/hc/heritage-form/koningsdag
locations:
- city: Dordrecht
country: NL
latitude: 51.81
longitude: 4.67361
location_resolution:
method: KIEN_PROFILE_SCRAPE
source_url: https://www.immaterieelerfgoed.nl/nl/page/770/koninklijke-bond-van-oranjeverenigingen
geonames_id: 2756669
geonames_name: Dordrecht
feature_code: PPL
population: 119260
admin1_code: '11'
region_code: ZH
extraction_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid:
ghcid_current: NL-ZH-DOR-I-KBO
ghcid_original: NL-ZH-DOR-I-KBO
ghcid_uuid: 433361c2-5467-5cb7-b990-3b0c9d0212d0
ghcid_uuid_sha256: 4370b354-a253-8e67-9a38-8e22ded39312
ghcid_numeric: 4859581174014750311
record_id: 327faec1-2b91-47d6-8b3a-7697f96009d7
generation_timestamp: '2026-01-08T21:00:00.000000+00:00'
ghcid_history:
- ghcid: NL-ZH-DOR-I-KBO
ghcid_numeric: 4859581174014750311
valid_from: '2026-01-08T21:00:00.000000+00:00'
valid_to: null
reason: Initial GHCID assignment (KIEN manual discovery January 2026)
location_resolution:
method: GEONAMES_LOOKUP
geonames_id: 2756669
geonames_name: Dordrecht
feature_code: PPL
population: 119260
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 51.81
longitude: 4.67361
distance_km: 0.0
geonames_id: 2756669
location:
city: Dordrecht
region_code: ZH
country: NL
latitude: 51.81
longitude: 4.67361
geonames_id: 2756669
geonames_name: Dordrecht
feature_code: PPL
normalization_timestamp: '2026-01-08T21:00:00.000000+00:00'
digital_platforms:
- platform_name: Koninklijke Bond van Oranjeverenigingen Website
platform_url: http://www.oranjebond.nl
platform_type: OFFICIAL_WEBSITE
enrichment_timestamp: '2026-01-08T21:00:00.000000+00:00'
enrichment_source: kien_registry

View file

@ -52,6 +52,8 @@ provenance:
- Location extracted from organization name 'Stichting Kortebaan Nootdorp' - matched
place 'Nootdorp' (NAME_EXTRACTION_GEONAMES)
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:13:34Z
- 'GHCID location corrected via fix_ghcid_location_mismatches.py on 2026-01-09T09:13:27Z:
NL-ZH-YPE-I-KN -> NL-ZH-NOO-I-KN'
kien_enrichment:
kien_name: Stichting Kortebaan Nootdorp
kien_url: https://www.immaterieelerfgoed.nl/nl/page/6987/stichting-kortebaan-nootdorp
@ -78,15 +80,15 @@ identifiers:
identifier_value: https://www.immaterieelerfgoed.nl/nl/page/6987/stichting-kortebaan-nootdorp
identifier_url: https://www.immaterieelerfgoed.nl/nl/page/6987/stichting-kortebaan-nootdorp
- identifier_scheme: GHCID
identifier_value: NL-ZH-YPE-I-KN
identifier_value: NL-ZH-NOO-I-KN
- identifier_scheme: GHCID_UUID
identifier_value: 9e645205-c487-5ac7-adaa-bdcc72dfa7ad
identifier_url: urn:uuid:9e645205-c487-5ac7-adaa-bdcc72dfa7ad
identifier_value: c5fb7833-f978-5559-8aa7-9b44361b11b2
identifier_url: urn:uuid:c5fb7833-f978-5559-8aa7-9b44361b11b2
- identifier_scheme: GHCID_UUID_SHA256
identifier_value: 1866c084-6fbd-8fcf-ac6f-38d1f9393b77
identifier_url: urn:uuid:1866c084-6fbd-8fcf-ac6f-38d1f9393b77
identifier_value: 47e2d110-bb57-8dd7-ba83-4f94deb718b6
identifier_url: urn:uuid:47e2d110-bb57-8dd7-ba83-4f94deb718b6
- identifier_scheme: GHCID_NUMERIC
identifier_value: '1758304379577683919'
identifier_value: '5179932391222275543'
- identifier_scheme: RECORD_ID
identifier_value: 019aede0-6f2a-776d-91ee-0667a25e98f9
identifier_url: urn:uuid:019aede0-6f2a-776d-91ee-0667a25e98f9
@ -110,33 +112,34 @@ location_resolution:
region_code: ZH
extraction_timestamp: '2025-12-05T09:38:08.708050+00:00'
ghcid:
ghcid_current: NL-ZH-YPE-I-KN
ghcid_current: NL-ZH-NOO-I-KN
ghcid_original: NL-ZH-YPE-I-KN
ghcid_uuid: 9e645205-c487-5ac7-adaa-bdcc72dfa7ad
ghcid_uuid_sha256: 1866c084-6fbd-8fcf-ac6f-38d1f9393b77
ghcid_numeric: 1758304379577683919
ghcid_uuid: c5fb7833-f978-5559-8aa7-9b44361b11b2
ghcid_uuid_sha256: 47e2d110-bb57-8dd7-ba83-4f94deb718b6
ghcid_numeric: 5179932391222275543
record_id: 019aede0-6f2a-776d-91ee-0667a25e98f9
generation_timestamp: '2025-12-05T09:38:19.123799+00:00'
generation_timestamp: '2026-01-09T09:13:27Z'
ghcid_history:
- ghcid: NL-ZH-YPE-I-KN
ghcid_numeric: 1758304379577683919
valid_from: '2025-12-05T09:38:19.123799+00:00'
valid_to: null
valid_to: '2026-01-09T09:13:27Z'
reason: Initial GHCID assignment (KIEN batch import December 2025)
- ghcid: NL-ZH-NOO-I-KN
ghcid_numeric: 5179932391222275543
valid_from: '2026-01-09T09:13:27Z'
valid_to: null
reason: 'GHCID corrected: location mismatch fix from NL-ZH-YPE-I-KN to NL-ZH-NOO-I-KN'
location_resolution:
method: REVERSE_GEOCODE
geonames_id: 6941548
geonames_name: Ypenburg
method: GEONAMES_LOOKUP
geonames_id: 2749800
geonames_name: Nootdorp
feature_code: PPL
population: 30000
population: 0
admin1_code: '11'
region_code: ZH
country_code: NL
source_coordinates:
latitude: 52.045
longitude: 4.39583
distance_km: 2.922486451089272
geonames_id: 6941548
geonames_id: 2749800
digital_platforms:
- platform_name: Stichting Kortebaan Nootdorp Website
platform_url: http://www.kortebaannootdorp.nl
@ -179,21 +182,21 @@ wikidata_enrichment:
fetch_timestamp: '2025-12-06T19:42:47.400314+00:00'
search_query: kortebaan nootdorp
location:
latitude: 52.0444205
longitude: 4.4097899
latitude: 52.045
longitude: 4.39583
coordinate_provenance:
source_type: GOOGLE_MAPS
source_path: google_maps_enrichment.coordinates
original_timestamp: '2025-12-06T19:33:32.381819+00:00'
entity_id: ChIJgxWr1OnJxUcRejuz7GA-Ptk
city: Ypenburg
city: Nootdorp
region_code: ZH
country: NL
formatted_address: '''s-Gravenweg 20a, 2631 PM Nootdorp, Netherlands'
geonames_id: 6941548
geonames_name: Ypenburg
geonames_id: 2749800
geonames_name: Nootdorp
feature_code: PPL
normalization_timestamp: '2025-12-09T07:13:34.842588+00:00'
normalization_timestamp: '2026-01-09T09:13:27Z'
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T18:52:59.958711+00:00'
retrieval_agent: crawl4ai

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